diff --git a/apkg_builder.py b/apkg_builder.py
index af00216..937855e 100644
--- a/apkg_builder.py
+++ b/apkg_builder.py
@@ -39,7 +39,7 @@ COMPLETE_PLURAL_DECK_ID = 1_234_567_903
# Release version tag added to all notes so users can identify which release
# their cards come from (visible in Anki's Browse view and card info).
-RELEASE_TAG = "v0.13"
+RELEASE_TAG = "v0.14"
# Regex for extracting emoji and Hebrew prepositions from meaning strings
EMOJI_RE = re.compile(r"[\U0001F000-\U0001FFFF\u2600-\u27FF\u2300-\u23FF\uFE00-\uFE0F]+")
@@ -362,7 +362,7 @@ VOCAB_MODEL = genanki.Model(
CONJ_FRONT = """
{{Pronoun}}
-{{ReferenceForm}}{{#Voice}} ({{Voice}}){{/Voice}}
+{{ReferenceForm}}{{#Voice}} ({{Voice}}){{/Voice}}
{{Tense}}
"""
@@ -370,10 +370,10 @@ CONJ_BACK = """
{{FrontSide}}
{{ConjugatedForm}}
{{#Audio}}{{Audio}}
{{/Audio}}
-{{#Meaning}}{{Meaning}}
{{/Meaning}}
-שורש: {{Root}}
-בניין: {{Binyan}}
-{{#RelatedVocab}}{{RelatedVocab}}
{{/RelatedVocab}}
+{{#Meaning}}{{Meaning}}
{{/Meaning}}
+שֹׁרֶשׁ: {{Root}}
+בִּנְיָן: {{Binyan}}
+{{#RelatedVocab}}{{RelatedVocab}}
{{/RelatedVocab}}
"""
CONJ_CSS = CARD_CSS
@@ -1245,7 +1245,7 @@ def build_conj_deck(
CONF_FRONT = """
{{Words}}
-מה ההבדל?
+מה ההבדל?
"""
CONF_BACK = """
@@ -1326,6 +1326,7 @@ def build_confusables_deck(
words_display = " / ".join(w for w, _, _ in unique_entries)
defs_parts = []
audio_parts = []
+ all_have_audio = True
for w, m, p in unique_entries:
pos_label = f" ({p})" if p else ""
defs_parts.append(
@@ -1340,6 +1341,12 @@ def build_confusables_deck(
mp3_path = AUDIO_DIR / mp3_name
if mp3_path not in media_files:
media_files.append(mp3_path)
+ else:
+ all_have_audio = False
+
+ # Only include audio if every word in the group has it
+ if not all_have_audio:
+ audio_parts = []
defs_html = "\n".join(defs_parts)
audio_html = " ".join(audio_parts)
@@ -1378,7 +1385,7 @@ PLURAL_FRONT_SG = """
{{Singular}}
{{#SingularAudio}}{{SingularAudio}}
{{/SingularAudio}}
{{Meaning}}
-יחיד → רבים
+יָחִיד ← רַבִּים
"""
PLURAL_BACK_SG = """
@@ -1391,7 +1398,7 @@ PLURAL_BACK_SG = """
PLURAL_FRONT_PL = """
{{Plural}}
{{#PluralAudio}}{{PluralAudio}}
{{/PluralAudio}}
-רבים → יחיד
+רַבִּים ← יָחִיד
"""
PLURAL_BACK_PL = """
@@ -1506,12 +1513,17 @@ def build_plural_deck(
elif mishkal:
by_mishkal.setdefault(mishkal, []).append((word_key, data))
- # Select 2-3 exemplars per mishkal, preferring high-frequency words
+ # Select exemplars per mishkal, preferring high-frequency words.
+ # Target 2:1 regular:irregular ratio to avoid over-representing irregulars.
+ # Target ≥2:1 regular:irregular ratio — 6 per mishkal compensates for
+ # small groups (<6 entries) that can't fill their quota.
+ per_mishkal = 6
+
selected: list[tuple[str, dict]] = list(irregulars)
for _mishkal, entries in sorted(by_mishkal.items()):
# Sort by frequency (lower index = more common)
entries.sort(key=lambda e: freq_order.get(e[0], 999999))
- selected.extend(entries[:3])
+ selected.extend(entries[:per_mishkal])
note_count = 0
for _word_key, data in selected:
diff --git a/data/hebrew_dict.csv b/data/hebrew_dict.csv
index 654b5fb..93e644d 100644
--- a/data/hebrew_dict.csv
+++ b/data/hebrew_dict.csv
@@ -9104,3 +9104,18 @@
9102,לִתְמֹהַּ,ת - מ - הּ,Verb –pa'al,"to be astonished, to be amazed",https://audio.pealim.com/v0/24/24qdaqkg4hhb.mp3,לתמוה
9103,תִּמָּהוֹן,ת - מ - הּ,"Noun –kittalonpattern, masculine","amazement, wonder, surprise",https://audio.pealim.com/v0/ru/ru6re1zgrgwe.mp3,תימהון
9104,לְהַתְמִיהַּ,ת - מ - הּ,Verb –hif'il,"to amaze, to suprise, to puzzle",https://audio.pealim.com/v0/1t/1t431ihbh20u9.mp3,להתמיה
+9105,לְתַמְחֵר,ת - מ - ח - ר,Verb –pi'el,"to price, to put a price",https://audio.pealim.com/v0/c1/c1sh9yebge3.mp3,לתמחר
+9106,תִּמְחוּר,ת - מ - ח - ר,"Noun –kittulpattern, masculine","pricing, price setting",https://audio.pealim.com/v0/xi/xinm4kewoob1.mp3,תמחור
+9107,תָּמִיד,-,Adverb,always,https://audio.pealim.com/v0/1p/1pxp0npmvipsg.mp3,תמיד
+9108,תְּמִידִי,-,Adjective,"constant, continuous",https://audio.pealim.com/v0/13/13fs1yrbhmwdb.mp3,תמידי
+9109,תְּמִיכָה,ת - מ - ך,"Noun –ktilapattern, feminine","support, backing, assistance",https://audio.pealim.com/v0/13/13fpxttpeczdf.mp3,תמיכה
+9110,לְהִתָּמֵךְ,ת - מ - ך,Verb –nif'al,"to rest (on something), to be supported by",https://audio.pealim.com/v0/yz/yznequo62okg.mp3,להיתמך
+9111,לִתְמֹךְ,ת - מ - ך,Verb –pa'al,"to support, to sustain",https://audio.pealim.com/v0/1r/1r041bgw6gihc.mp3,לתמוך
+9112,לְתַמְלֵל,ת - מ - ל - ל,Verb –pi'el,to transcribe,https://audio.pealim.com/v0/ti/tifkvr5m5yb7.mp3,לתמלל
+9113,תִּמְלוּל,ת - מ - ל - ל,"Noun –kittulpattern, masculine","transcription, transcript (of a call, meeting, audio)",https://audio.pealim.com/v0/yh/yhef9kdl90r5.mp3,תימלול
+9114,לָתֹם,ת - מ - ם,Verb –pa'al,"to be finished, to end",https://audio.pealim.com/v0/bi/bicuzr2g3wh0.mp3,לתום
+9115,תָּמִים,ת - מ - ם,Adjective –katilpattern,"sincere, innocent, honest; full, complete",https://audio.pealim.com/v0/1p/1pxp0k78sionl.mp3,תמים
+9116,תֹּם,ת - מ - ם,"Noun –kotelpattern, masculine","end, completion (lit.)",https://audio.pealim.com/v0/wk/wksplskl3zi7.mp3,תום
+9117,תֹּם,ת - מ - ם,"Noun –kotelpattern, masculine","simplicity, innocence, naivete (lit.)",https://audio.pealim.com/v0/wk/wksplskl3zi7.mp3,תום
+9118,לְהִתַּמֵּם,ת - מ - ם,Verb –hitpa'el,to play dumb,https://audio.pealim.com/v0/7z/7z00lrx45wxe.mp3,להיתמם
+9119,תָּם,ת - מ - ם,Adjective –kalpattern,"honest, unsophisticated",https://audio.pealim.com/v0/wk/wksplsz9ik3y.mp3,תם
diff --git a/data/hebrew_dict_for_anki.csv b/data/hebrew_dict_for_anki.csv
index a3b001d..d43bf01 100644
--- a/data/hebrew_dict_for_anki.csv
+++ b/data/hebrew_dict_for_anki.csv
@@ -9104,3 +9104,18 @@
9102;לִתְמֹהַּ;ת - מ - הּ;Verb –pa'al;to be astonished, to be amazed;https://audio.pealim.com/v0/24/24qdaqkg4hhb.mp3;לתמוה;תִּמָּהוֹן לְהַתְמִיהַּ;שורש::תמהּ פעלים
9103;תִּמָּהוֹן;ת - מ - הּ;Noun –kittalonpattern, masculine;amazement, wonder, surprise;https://audio.pealim.com/v0/ru/ru6re1zgrgwe.mp3;תימהון;לִתְמֹהַּ לְהַתְמִיהַּ;שורש::תמהּ שם_עצם
9104;לְהַתְמִיהַּ;ת - מ - הּ;Verb –hif'il;to amaze, to suprise, to puzzle;https://audio.pealim.com/v0/1t/1t431ihbh20u9.mp3;להתמיה;לִתְמֹהַּ תִּמָּהוֹן;שורש::תמהּ פעלים
+9105;לְתַמְחֵר;ת - מ - ח - ר;Verb –pi'el;to price, to put a price;https://audio.pealim.com/v0/c1/c1sh9yebge3.mp3;לתמחר;תִּמְחוּר;שורש::תמחר פעלים
+9106;תִּמְחוּר;ת - מ - ח - ר;Noun –kittulpattern, masculine;pricing, price setting;https://audio.pealim.com/v0/xi/xinm4kewoob1.mp3;תמחור;לְתַמְחֵר;שורש::תמחר שם_עצם
+9107;תָּמִיד;-;Adverb;always;https://audio.pealim.com/v0/1p/1pxp0npmvipsg.mp3;תמיד;;תוארי_הפועל
+9108;תְּמִידִי;-;Adjective;constant, continuous;https://audio.pealim.com/v0/13/13fs1yrbhmwdb.mp3;תמידי;;שם_תואר
+9109;תְּמִיכָה;ת - מ - ך;Noun –ktilapattern, feminine;support, backing, assistance;https://audio.pealim.com/v0/13/13fpxttpeczdf.mp3;תמיכה;לְהִתָּמֵךְ לִתְמֹךְ;שורש::תמך שם_עצם
+9110;לְהִתָּמֵךְ;ת - מ - ך;Verb –nif'al;to rest (on something), to be supported by;https://audio.pealim.com/v0/yz/yznequo62okg.mp3;להיתמך;תְּמִיכָה לִתְמֹךְ;שורש::תמך פעלים
+9111;לִתְמֹךְ;ת - מ - ך;Verb –pa'al;to support, to sustain;https://audio.pealim.com/v0/1r/1r041bgw6gihc.mp3;לתמוך;תְּמִיכָה לְהִתָּמֵךְ;שורש::תמך פעלים
+9112;לְתַמְלֵל;ת - מ - ל - ל;Verb –pi'el;to transcribe;https://audio.pealim.com/v0/ti/tifkvr5m5yb7.mp3;לתמלל;תִּמְלוּל;שורש::תמלל פעלים
+9113;תִּמְלוּל;ת - מ - ל - ל;Noun –kittulpattern, masculine;transcription, transcript (of a call, meeting, audio);https://audio.pealim.com/v0/yh/yhef9kdl90r5.mp3;תימלול;לְתַמְלֵל;שורש::תמלל שם_עצם
+9114;לָתֹם;ת - מ - ם;Verb –pa'al;to be finished, to end;https://audio.pealim.com/v0/bi/bicuzr2g3wh0.mp3;לתום;תָּמִים תֹּם תֹּם לְהִתַּמֵּם תָּם;שורש::תמם פעלים
+9115;תָּמִים;ת - מ - ם;Adjective –katilpattern;"sincere, innocent, honest; full, complete";https://audio.pealim.com/v0/1p/1pxp0k78sionl.mp3;תמים;לָתֹם תֹּם תֹּם לְהִתַּמֵּם תָּם;שורש::תמם שם_תואר
+9116;תֹּם;ת - מ - ם;Noun –kotelpattern, masculine;end, completion (lit.);https://audio.pealim.com/v0/wk/wksplskl3zi7.mp3;תום;לָתֹם תָּמִים לְהִתַּמֵּם תָּם;שורש::תמם שם_עצם
+9117;תֹּם;ת - מ - ם;Noun –kotelpattern, masculine;simplicity, innocence, naivete (lit.);https://audio.pealim.com/v0/wk/wksplskl3zi7.mp3;תום;לָתֹם תָּמִים לְהִתַּמֵּם תָּם;שורש::תמם שם_עצם
+9118;לְהִתַּמֵּם;ת - מ - ם;Verb –hitpa'el;to play dumb;https://audio.pealim.com/v0/7z/7z00lrx45wxe.mp3;להיתמם;לָתֹם תָּמִים תֹּם תֹּם תָּם;שורש::תמם פעלים
+9119;תָּם;ת - מ - ם;Adjective –kalpattern;honest, unsophisticated;https://audio.pealim.com/v0/wk/wksplsz9ik3y.mp3;תם;לָתֹם תָּמִים תֹּם תֹּם לְהִתַּמֵּם;שורש::תמם שם_תואר
diff --git a/data/ktiv_male_forms.json b/data/ktiv_male_forms.json
index f954f65..1ddd525 100644
--- a/data/ktiv_male_forms.json
+++ b/data/ktiv_male_forms.json
@@ -1,14621 +1,47 @@
{
- "שומר": [
+ "אב": [
{
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שומרת": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שומרים": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שומרות": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרתי": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרנו": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרת": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרתם": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרתן": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמר": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרה": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרו": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "אשמור": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "נשמור": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "תשמור": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "תשמרי": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "תשמרו": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "תשמורנה": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "ישמור": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "ישמרו": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמור!": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרי!": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרו!": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמורנה!": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "לשמור": [
- {
- "word_nikkud": "לשמור",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "לומד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדת": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדים": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "לומדות": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדתי": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדנו": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדת": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדתם": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדתן": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדה": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "למדו": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- }
- ],
- "אלמד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "נלמד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלמד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלמדי": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלמדו": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלמדנה": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "ילמד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "ילמדו": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למד!": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למדי!": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למדו!": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למדנה!": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "ללמוד": [
- {
- "word_nikkud": "ללמוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "אוסף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- },
- {
- "word_nikkud": "אֹסֶף",
+ "word_nikkud": "אָב",
"form_type": "absolute_singular",
"pos": "Noun",
- "slug": "5660-osef",
+ "slug": "6009-av",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
}
],
- "אוספת": [
+ "אבות": [
{
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אוספים": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- },
- {
- "word_nikkud": "אֹסֶף",
+ "word_nikkud": "אָב",
"form_type": "absolute_plural",
"pos": "Noun",
- "slug": "5660-osef",
+ "slug": "6009-av",
"gender": "masculine"
}
],
- "אוספות": [
+ "אבי־": [
{
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספתי": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספנו": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספת": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספתם": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספתן": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אסף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספה": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספו": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אאסוף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "נאסוף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "תאסוף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "תאספי": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "תאספו": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "תאסופנה": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "יאסוף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "יאספו": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אסוף!": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספי!": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אספו!": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "אסופנה!": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "לאסוף": [
- {
- "word_nikkud": "לאסוף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "עובד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עובדת": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עובדים": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עובדות": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדתי": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדנו": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדת": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדתם": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדתן": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדה": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדו": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "אעבוד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "נעבוד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "תעבוד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "תעבדי": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "תעבדו": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "תעבודנה": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "יעבוד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "יעבדו": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבוד!": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדי!": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבדו!": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבודנה!": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "לעבוד": [
- {
- "word_nikkud": "לעבוד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "חובש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חובשת": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חובשים": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חובשות": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשתי": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשנו": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשת": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשתם": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשתן": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשה": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשו": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "אחבוש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "נחבוש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "תחבוש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "תחבשי": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "תחבשו": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "תחבושנה": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "יחבוש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "יחבשו": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבוש!": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשי!": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבשו!": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "חבושנה!": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "לחבוש": [
- {
- "word_nikkud": "לחבוש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "553-lachbosh"
- }
- ],
- "אוכל": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "אֹכֶל",
- "form_type": "absolute_singular",
+ "word_nikkud": "אָב",
+ "form_type": "construct_singular",
"pos": "Noun",
- "slug": "3416-ochel",
- "gender": "masculine"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "אוכלת": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אוכלים": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "אֹכֶל",
- "form_type": "absolute_plural",
- "pos": "Noun",
- "slug": "3416-ochel",
+ "slug": "6009-av",
"gender": "masculine"
}
],
- "אוכלות": [
+ "אב־": [
{
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלתי": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלנו": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלת": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלתם": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלתן": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכל": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלה": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלו": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "נאכל": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "תאכל": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "תאכלי": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "תאכלו": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "תאכלנה": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "יאכל": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "יאכלו": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכול!": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלי!": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכלו!": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "אכולנה!": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- }
- ],
- "לאכול": [
- {
- "word_nikkud": "לאכול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "שואל": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שואלת": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שואלים": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שואלות": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלתי": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלנו": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלת": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלתם": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלתן": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאל": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלה": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלו": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "אשאל": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "נשאל": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "תשאל": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "תשאלי": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "תשאלו": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "תשאלנה": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "ישאל": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "ישאלו": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאל!": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלי!": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלו!": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאלנה!": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "לשאול": [
- {
- "word_nikkud": "לשאול",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שולח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שולחת": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שולחים": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שולחות": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחתי": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחנו": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחת": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחתם": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחתן": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחה": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחו": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "אשלח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "נשלח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "תשלח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "תשלחי": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "תשלחו": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "תשלחנה": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "ישלח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "ישלחו": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלח!": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחי!": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחו!": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלחנה!": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "לשלוח": [
- {
- "word_nikkud": "לשלוח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "גובה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "גַּבָּה",
- "form_type": "absolute_singular",
+ "word_nikkud": "אָב",
+ "form_type": "construct_plural",
"pos": "Noun",
- "slug": "6116-gaba",
- "gender": "feminine"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גובהת": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גובהים": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהים": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גובהות": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהות": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהתי": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהנו": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהת": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהתם": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהתן": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהו": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "אגבה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "נגבה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "תגבה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "תגבהי": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "תגבהו": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "תגבהנה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "יגבה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "יגבהו": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבה!": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבהי!": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהו!": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "גבהנה!": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "לגבוה": [
- {
- "word_nikkud": "לגבוה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "286-ligboah"
- }
- ],
- "יושב": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "יושבת": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "יושבים": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "יושבות": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבתי": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבנו": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבת": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבתם": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבתן": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישב": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבה": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישבו": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "אשב": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "נשב": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "תשב": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "תשבי": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "תשבו": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "תשבנה": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "שב!": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "שבי!": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "שבו!": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "שבנה!": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "לשבת": [
- {
- "word_nikkud": "לשבת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "יורש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "יורשת": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "יורשים": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "יורשות": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשתי": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשנו": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשת": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשתם": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשתן": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשה": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- },
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "ירשו": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- },
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "אירש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "נירש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "תירש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "תירשי": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "תירשו": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "תירשנה": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "יירש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "יירשו": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "רש!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירש!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "רשי!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשי!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "רשו!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשו!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "רשנה!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירשנה!": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "לרשת": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "לירוש": [
- {
- "word_nikkud": "לרשת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "נופל": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- },
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "נופלת": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נופלים": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נופלות": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלתי": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלנו": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלת": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלתם": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלתן": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפל": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלה": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלו": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "אפול": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "ניפול": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "תיפול": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "תיפלי": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "תיפלו": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "תיפולנה": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "ייפול": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "ייפלו": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "פול!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפול!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "פלי!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלי!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "פלו!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפלו!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "פולנה!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "נפולנה!": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "ליפול": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- },
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "לנפול": [
- {
- "word_nikkud": "לִיפּוֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "קם": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמה": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמים": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמות": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמתי": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמנו": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמת": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמתם": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמתן": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קמו": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "אקום": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקום": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "תקום": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "תקומי": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "תקומו": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "תקומנה": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "תקומינה": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "יקום": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "יקומו": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קום!": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קומי!": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קומו!": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קומנה!": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "קומינה!": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "לקום": [
- {
- "word_nikkud": "לקום",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "חונן": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חוננת": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חוננים": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חוננות": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנותי": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חננתי": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנונו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חננו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנות": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- },
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חננת": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנותם": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חננתם": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנותן": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חננתן": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנן": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חן": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חננה": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חנה": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- },
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- },
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "אחון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "אחנון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "נחון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "נחנון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחנון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחוני": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחנני": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחונו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחננו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחונינה": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחונה": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "תחנונה": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "יחון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "יחנון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "יחונו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "יחננו": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חון!": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חוני!": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חונו!": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חונינה!": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "חונה!": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "לחון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "לחנון": [
- {
- "word_nikkud": "לחון",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "634-lachon"
- }
- ],
- "קורא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קוראת": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קוראים": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קוראות": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראתי": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראנו": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראת": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראתם": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראתן": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קרא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראה": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראו": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "אקרא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "נקרא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "תקרא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "תקראי": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "תקראו": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "תקראנה": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "יקרא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "יקראו": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קרא!": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראי!": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראו!": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קראנה!": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "לקרוא": [
- {
- "word_nikkud": "לקרוא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קונה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קונים": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קונות": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קניתי": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנינו": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנית": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קניתם": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קניתן": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנתה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנו": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "אקנה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "נקנה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "תקנה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "תקני": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "תקנו": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "תקנינה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "יקנה": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "יקנו": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנה!": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קני!": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנו!": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנינה!": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "לקנות": [
- {
- "word_nikkud": "לקנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "נבדק": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקת": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקים": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקות": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקתי": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקנו": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקתם": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקתן": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקה": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "נבדקו": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "אבדק": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "ניבדק": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "תיבדק": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "תיבדקי": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "תיבדקו": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "תיבדקנה": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "ייבדק": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "ייבדקו": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "היבדק!": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "היבדקי!": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "היבדקו!": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "היבדקנה!": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- }
- ],
- "להיבדק": [
- {
- "word_nikkud": "להיבדק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "178-lehibadek"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "נרדם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמת": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמים": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמות": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמתי": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמנו": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמתם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמתן": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמה": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נרדמו": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "אירדם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נירדם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "תירדם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "תירדמי": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "תירדמו": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "תירדמנה": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "יירדם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "יירדמו": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "הירדם!": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "הירדמי!": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "הירדמו!": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "הירדמנה!": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "להירדם": [
- {
- "word_nikkud": "להרדם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "נהרג": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגת": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגים": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגות": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגתי": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגנו": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגתם": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגתן": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגה": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "נהרגו": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "איהרג": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "ניהרג": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "תיהרג": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "תיהרגי": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "תיהרגו": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "תיהרגנה": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "ייהרג": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "ייהרגו": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "היהרג!": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "היהרגי!": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "היהרגו!": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "היהרגנה!": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "להיהרג": [
- {
- "word_nikkud": "להיהרג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- },
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "נחקר": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרת": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרים": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרות": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרתי": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרנו": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרתם": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרתן": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרה": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "נחקרו": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "איחקר": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "ניחקר": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "תיחקר": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "תיחקרי": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "תיחקרו": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "תיחקרנה": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "ייחקר": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "ייחקרו": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "היחקר!": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "היחקרי!": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "היחקרו!": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "היחקרנה!": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- }
- ],
- "להיחקר": [
- {
- "word_nikkud": "להחקר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "673-lehechaker"
- },
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "נשאר": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארת": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארים": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארות": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארתי": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארנו": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארתם": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארתן": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארה": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נשארו": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "אשאר": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "נישאר": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "תישאר": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "תישארי": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "תישארו": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "תישארנה": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "יישאר": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "יישארו": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "הישאר!": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "הישארי!": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "הישארו!": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "הישארנה!": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- }
- ],
- "להישאר": [
- {
- "word_nikkud": "להישאר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "נפגע": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- },
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "נפגעת": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעים": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעות": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעתי": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגענו": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעתם": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעתן": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעה": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "נפגעו": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "אפגע": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- },
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "ניפגע": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "תיפגע": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "תיפגעי": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "תיפגעו": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "תיפגענה": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "ייפגע": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "ייפגעו": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "היפגע!": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "היפגעי!": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "היפגעו!": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "היפגענה!": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "להיפגע": [
- {
- "word_nikkud": "להיפגע",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- },
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "נולד": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדת": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדים": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדות": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדתי": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדנו": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדתם": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדתן": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדה": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "נולדו": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "אוולד": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "ניוולד": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "תיוולד": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "תיוולדי": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "תיוולדו": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "תיוולדנה": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "ייוולד": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "ייוולדו": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "היוולד!": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "היוולדי!": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "היוולדו!": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "היוולדנה!": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- }
- ],
- "להיוולד": [
- {
- "word_nikkud": "להיוולד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "800-lehivaled"
- },
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ניצל": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלת": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלים": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "ניצלות": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "ניצלתי": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלנו": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלתם": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלתן": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלה": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ניצלו": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "אנצל": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נינצל": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "תינצל": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "תינצלי": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "תינצלו": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "תינצלנה": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "יינצל": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "יינצלו": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "הינצל!": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "הינצלי!": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "הינצלו!": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "הינצלנה!": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- }
- ],
- "להינצל": [
- {
- "word_nikkud": "להנצל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1242-lehinatzel"
- },
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגה": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגים": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגות": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגותי": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגתי": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגונו": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגנו": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגת": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגותם": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגתם": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגותן": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגתן": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסוגו": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "איסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "אסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "ניסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "תיסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "תיסוגי": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "תיסוגו": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "תיסוגינה": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "תיסוגנה": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "ייסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "ייסוגו": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "היסוג!": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "היסוגי!": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "היסוגו!": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "היסוגינה!": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "היסוגנה!": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "לסגת": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "להיסוג": [
- {
- "word_nikkud": "להיסוג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נמצא": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "נמצאת": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאים": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאות": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאתי": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאנו": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאתם": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאתן": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאה": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "נמצאו": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "אמצא": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "נימצא": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "תימצא": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "תימצאי": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "תימצאו": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "תימצאנה": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "יימצא": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "יימצאו": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "הימצא!": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "הימצאי!": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "הימצאו!": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "הימצאנה!": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- }
- ],
- "להימצא": [
- {
- "word_nikkud": "להימצא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1084-lehimatze"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "נבנה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "נבנית": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבנים": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבנות": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבניתי": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבנינו": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבניתם": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבניתן": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבנתה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "נבנו": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "אבנה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "ניבנה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "תיבנה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "תיבני": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "תיבנו": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "תיבנינה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "ייבנה": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "ייבנו": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "היבנה!": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "היבני!": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "היבנו!": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "היבנינה!": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- }
- ],
- "להיבנות": [
- {
- "word_nikkud": "להיבנות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "235-lehibanot"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "מדבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדברת": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדברים": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדברות": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברתי": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברנו": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברת": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברתם": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברתן": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברה": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיברו": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "אדבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "נדבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדברי": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדברו": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדברנה": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "ידבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "ידברו": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דבר!": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דברי!": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דברו!": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דברנה!": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "לדבר": [
- {
- "word_nikkud": "לדבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מברך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מברכת": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מברכים": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מברכות": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכתי": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכנו": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכת": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכתם": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכתן": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכה": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בירכו": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "אברך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "נברך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תברך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תברכי": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תברכו": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תברכנה": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "יברך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "יברכו": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ברך!": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ברכי!": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ברכו!": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ברכנה!": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "לברך": [
- {
- "word_nikkud": "לברך",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מנהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנהלת": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנהלים": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנהלות": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלתי": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלנו": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלת": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלתם": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלתן": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלה": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהלו": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "אנהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ננהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנהלי": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנהלו": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנהלנה": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ינהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ינהלו": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נהל!": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נהלי!": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נהלו!": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נהלנה!": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "לנהל": [
- {
- "word_nikkud": "לנהל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנצחת": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנצחים": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנצחות": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחתי": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחנו": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחת": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחתם": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחתן": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחה": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחו": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "אנצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ננצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנצחי": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנצחו": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנצחנה": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ינצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ינצחו": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נצח!": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נצחי!": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נצחו!": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נצחנה!": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "לנצח": [
- {
- "word_nikkud": "לנצח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מקומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "מקוממת": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "מקוממים": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "מקוממות": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממתי": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממנו": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממת": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממתם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממתן": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממה": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממו": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "אקומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "נקומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "תקומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "תקוממי": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "תקוממו": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "תקוממנה": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "יקומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "יקוממו": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קומם!": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממי!": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממו!": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "קוממנה!": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- }
- ],
- "לקומם": [
- {
- "word_nikkud": "לקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1878-lekomem"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "ממלא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממלאה": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממלאת": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממלאים": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממלאות": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאתי": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאנו": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאת": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאתם": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאתן": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאה": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילאו": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "אמלא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "נמלא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמלא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמלאי": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמלאו": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמלאנה": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ימלא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ימלאו": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלא!": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלאי!": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלאו!": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלאנה!": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "למלא": [
- {
- "word_nikkud": "למלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מחכה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "מחכים": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "מחכות": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכיתי": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכינו": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכית": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכיתם": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכיתן": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכתה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חיכו": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "אחכה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "נחכה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחכה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחכי": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחכו": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחכינה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "יחכה": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "יחכו": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חכה!": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חכי!": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חכו!": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חכינה!": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "לחכות": [
- {
- "word_nikkud": "לחכות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "מגלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "מגלגלת": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "מגלגלים": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "מגלגלות": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלתי": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלנו": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלת": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלתם": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלתן": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- },
- {
- "word_nikkud": "גַּלְגַּל",
- "form_type": "absolute_singular",
- "pos": "Noun",
- "slug": "3784-galgal",
- "gender": ""
- }
- ],
- "גלגלה": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלו": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "אגלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "נגלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "תגלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "תגלגלי": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "תגלגלו": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "תגלגלנה": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "יגלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "יגלגלו": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגל!": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלי!": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלו!": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "גלגלנה!": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "לגלגל": [
- {
- "word_nikkud": "לגלגל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "329-legalgel"
- }
- ],
- "מתלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "מתלבשת": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "מתלבשים": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "מתלבשות": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשתי": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשנו": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשת": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשתם": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשתן": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשה": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשו": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "אתלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "נתלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "תתלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "תתלבשי": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "תתלבשו": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "תתלבשנה": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "יתלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "יתלבשו": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבש!": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשי!": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשו!": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "התלבשנה!": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "להתלבש": [
- {
- "word_nikkud": "להתלבש",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- },
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "מסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "מסתלקת": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "מסתלקים": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "מסתלקות": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקתי": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקנו": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקת": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקתם": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקתן": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקה": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקו": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "אסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "נסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "תסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "תסתלקי": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "תסתלקו": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "תסתלקנה": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "יסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "יסתלקו": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלק!": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקי!": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקו!": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "הסתלקנה!": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "להסתלק": [
- {
- "word_nikkud": "להסתלק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "מצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "מצטלמת": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "מצטלמים": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "מצטלמות": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמתי": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמנו": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמת": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמתם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמתן": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמה": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמו": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "אצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "נצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "תצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "תצטלמי": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "תצטלמו": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "תצטלמנה": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "יצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "יצטלמו": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלם!": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמי!": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמו!": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "הצטלמנה!": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- }
- ],
- "להצטלם": [
- {
- "word_nikkud": "להצטלם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1803-lehitztalem"
- },
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "מזדקקת": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "מזדקקים": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "מזדקקות": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקתי": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקנו": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקת": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקתם": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקתן": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקה": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקו": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "אזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "נזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "תזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "תזדקקי": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "תזדקקו": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "תזדקקנה": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "יזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "יזדקקו": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקק!": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקי!": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקו!": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "הזדקקנה!": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "להזדקק": [
- {
- "word_nikkud": "להזדקק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "527-lehizdakek"
- }
- ],
- "מתנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "מתנהגת": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "מתנהגים": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "מתנהגות": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגתי": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגנו": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגת": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגתם": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגתן": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגה": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגו": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "אתנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נתנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "תתנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "תתנהגי": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "תתנהגו": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "תתנהגנה": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "יתנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "יתנהגו": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהג!": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגי!": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגו!": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "התנהגנה!": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "להתנהג": [
- {
- "word_nikkud": "להתנהג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- },
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "מתקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "מתקוממת": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "מתקוממים": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "מתקוממות": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממתי": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממנו": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממת": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממתם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממתן": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממה": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממו": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "אתקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "נתקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "תתקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "תתקוממי": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "תתקוממו": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "תתקוממנה": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "יתקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "יתקוממו": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקומם!": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממי!": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממו!": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "התקוממנה!": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- }
- ],
- "להתקומם": [
- {
- "word_nikkud": "להתקומם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1879-lehitkomem"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מתפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "מתפלאה": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "מתפלאת": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "מתפלאים": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "מתפלאות": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאתי": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאנו": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאת": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאתם": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאתן": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאה": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאו": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "אתפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "נתפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "תתפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "תתפלאי": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "תתפלאו": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "תתפלאנה": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "יתפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "יתפלאו": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלא!": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאי!": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאו!": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "התפלאנה!": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "להתפלא": [
- {
- "word_nikkud": "להתפלא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1634-lehitpale"
- }
- ],
- "מתקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "מתקלקלת": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "מתקלקלים": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "מתקלקלות": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלתי": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלנו": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלת": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלתם": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלתן": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלה": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלו": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "אתקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "נתקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "תתקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "תתקלקלי": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "תתקלקלו": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "תתקלקלנה": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "יתקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "יתקלקלו": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקל!": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלי!": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלו!": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "התקלקלנה!": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "להתקלקל": [
- {
- "word_nikkud": "להתקלקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1906-lehitkalkel"
- }
- ],
- "מכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מכניסה": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מכניסים": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מכניסות": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנסתי": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנסנו": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנסת": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנסתם": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנסתן": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכניסה": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכניסו": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "אכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "נכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תכניסי": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תכניסו": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תכנסנה": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "יכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "יכניסו": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנס!": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכניסי!": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכניסו!": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הכנסנה!": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "להכניס": [
- {
- "word_nikkud": "להכניס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- },
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "מעסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "מעסיקה": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "מעסיקים": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "מעסיקות": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסקתי": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסקנו": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסקת": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסקתם": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסקתן": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסיקה": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסיקו": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "אעסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "נעסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "תעסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "תעסיקי": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "תעסיקו": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "תעסקנה": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "יעסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "יעסיקו": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסק!": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסיקי!": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסיקו!": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "העסקנה!": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- }
- ],
- "להעסיק": [
- {
- "word_nikkud": "להעסיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1529-lehaasik"
- },
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "מחליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מחליטה": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מחליטים": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מחליטות": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלטתי": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלטנו": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלטת": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלטתם": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלטתן": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החליטה": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החליטו": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "אחליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "נחליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תחליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תחליטי": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תחליטו": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תחלטנה": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "יחליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "יחליטו": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלט!": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החליטי!": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החליטו!": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלטנה!": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "להחליט": [
- {
- "word_nikkud": "להחליט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מבטיח": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "מבטיחה": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "מבטיחים": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "מבטיחות": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטחתי": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטחנו": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטחת": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטחתם": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטחתן": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטיח": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטיחה": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטיחו": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "אבטיח": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "אֲבַטִּיחַ",
- "form_type": "absolute_singular",
- "pos": "Noun",
- "slug": "5597-avatiach",
+ "slug": "6009-av",
"gender": "masculine"
}
],
- "נבטיח": [
+ "אבות־": [
{
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תבטיח": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תבטיחי": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תבטיחו": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תבטחנה": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "יבטיח": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "יבטיחו": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטח!": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטיחי!": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטיחו!": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הבטחנה!": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "להבטיח": [
- {
- "word_nikkud": "להבטיח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורידה": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורידים": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורידות": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדתי": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדנו": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדת": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדתם": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדתן": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורידה": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורידו": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "אוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "נוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תורידי": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תורידו": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תורדנה": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "יוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "יורידו": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורד!": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורידי!": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורידו!": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדנה!": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "להוריד": [
- {
- "word_nikkud": "להוריד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- },
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "מפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מפילה": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מפילים": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מפילות": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלתי": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלנו": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלת": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלתם": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלתן": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפילה": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפילו": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "אפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "נפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תפילי": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תפילו": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תפלנה": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "יפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "יפילו": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפל!": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפילי!": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפילו!": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלנה!": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "להפיל": [
- {
- "word_nikkud": "להפיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "מקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "מקימה": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מקימים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מקימות": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמתי": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימותי": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמנו": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימונו": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמת": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימות": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמתם": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימותם": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמתן": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימותן": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימה": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימו": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "אקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "נקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תקימי": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תקימו": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תקמנה": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תקימינה": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "יקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "יקימו": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקם!": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימי!": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקימו!": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמנה!": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "להקים": [
- {
- "word_nikkud": "להקים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- }
- ],
- "ממציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "ממציאה": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "ממציאים": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "ממציאות": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצאתי": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצאנו": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצאת": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצאתם": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצאתן": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המציאה": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המציאו": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "אמציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "נמציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תמציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תמציאי": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תמציאו": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תמצאנה": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "ימציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "ימציאו": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצא!": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המציאי!": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המציאו!": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "המצאנה!": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "להמציא": [
- {
- "word_nikkud": "להמציא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מרשה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "מרשים": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- },
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מרשות": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשיתי": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשינו": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשית": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשיתם": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשיתן": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשתה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשו": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "ארשה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "נרשה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תרשה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תרשי": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תרשו": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תרשינה": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשה!": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשי!": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשו!": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הרשינה!": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "להרשות": [
- {
- "word_nikkud": "להרשות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "מקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "מקילה": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "מקילים": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "מקילות": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלתי": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקילותי": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלנו": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקילונו": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלת": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקילות": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלתם": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקילותם": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלתן": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקילותן": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלה": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלו": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "אקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "נקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תקלי": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תקלו": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תקלנה": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תקילינה": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "יקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "יקלו": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקל!": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלי!": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלו!": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הקלנה!": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "להקל": [
- {
- "word_nikkud": "להקל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "שם": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמה": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמים": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמות": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמתי": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמנו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמת": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמתם": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמתן": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "אשים": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- },
- {
- "word_nikkud": "אֵשׁ",
- "form_type": "absolute_plural",
+ "word_nikkud": "אָב",
+ "form_type": "other",
"pos": "Noun",
- "slug": "5019-esh",
- "gender": "feminine"
- }
- ],
- "נשים": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- },
- {
- "word_nikkud": "אִשָּׁה",
- "form_type": "absolute_plural",
- "pos": "Noun",
- "slug": "4220-isha",
- "gender": "feminine"
- }
- ],
- "תשים": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "תשימי": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "תשימו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "תשמנה": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- },
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תשימינה": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "ישים": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "ישימו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שים!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שימי!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שימו!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שמנה!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "שימינה!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- }
- ],
- "לשים": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "45-lasim"
- },
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "מבטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבטלת": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבטלים": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבטלות": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלתי": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלנו": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלת": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלתם": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלתן": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלה": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ביטלו": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "אבטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "נבטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבטלי": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבטלו": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבטלנה": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "יבטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "יבטלו": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בטל!": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בטלי!": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בטלו!": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בטלנה!": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "לבטל": [
- {
- "word_nikkud": "בוטל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מתאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "מתאמת": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "מתאמים": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "מתאמות": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמתי": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמנו": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמת": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמתם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמתן": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמה": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תיאמו": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "אתאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "נתאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תתאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תתאמי": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תתאמו": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תתאמנה": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "יתאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "יתאמו": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תאם!": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תאמי!": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תאמו!": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "תאמנה!": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- }
- ],
- "לתאם": [
- {
- "word_nikkud": "תואם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2344-letaem"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מדכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "מדכאת": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "מדכאים": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "מדכאות": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאתי": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאנו": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאת": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאתם": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאתן": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאה": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דיכאו": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "אדכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "נדכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "תדכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "תדכאי": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "תדכאו": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "תדכאנה": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "ידכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "ידכאו": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דכא!": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דכאי!": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דכאו!": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "דכאנה!": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "לדכא": [
- {
- "word_nikkud": "דוכא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2561-ledake"
- }
- ],
- "מזכה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "מזכים": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "מזכות": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכיתי": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכינו": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכית": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכיתם": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכיתן": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכתה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "זיכו": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- }
- ],
- "אזכה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "נזכה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "תזכה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "תזכי": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "תזכו": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "תזכינה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "יזכה": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "יזכו": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכה!": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכי!": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכו!": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכינה!": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "לזכות": [
- {
- "word_nikkud": "זוכה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "503-lezakot"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "מפרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפרסמת": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפרסמים": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפרסמות": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמתי": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמנו": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמת": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמתם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמתן": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמה": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמו": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "אפרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "נפרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפרסמי": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפרסמו": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפרסמנה": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "יפרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "יפרסמו": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסם!": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמי!": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמו!": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פרסמנה!": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "לפרסם": [
- {
- "word_nikkud": "פורסם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "מגבילה": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "מגבילים": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "מגבילות": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבלתי": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבלנו": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבלת": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבלתם": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבלתן": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבילה": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבילו": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "אגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "נגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "תגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "תגבילי": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "תגבילו": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "תגבלנה": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "יגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "יגבילו": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבל!": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבילי!": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבילו!": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "הגבלנה!": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "להגביל": [
- {
- "word_nikkud": "הוגבל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "291-lehagbil"
- }
- ],
- "מעביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מעבירה": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מעבירים": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מעבירות": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העברתי": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העברנו": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העברת": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העברתם": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העברתן": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העבירה": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העבירו": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "אעביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "נעביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תעביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תעבירי": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תעבירו": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תעברנה": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "יעביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "יעבירו": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העבר!": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העבירי!": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העבירו!": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "העברנה!": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "להעביר": [
- {
- "word_nikkud": "העבר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מזהירה": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מזהירים": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מזהירות": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרתי": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרנו": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרת": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרתם": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרתן": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהירה": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהירו": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "אזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "נזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "תזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "תזהירי": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "תזהירו": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "תזהרנה": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "יזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "יזהירו": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהר!": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהירי!": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהירו!": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרנה!": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "להזהיר": [
- {
- "word_nikkud": "הוזהר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "מחיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "מחילה": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "מחילים": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "מחילות": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החלתי": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילותי": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החלנו": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילונו": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החלת": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילות": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החלתם": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילותם": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החלתן": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילותן": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילה": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילו": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "אחיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "נחיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "תחיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "תחילי": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "תחילו": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "תחלנה": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "תחילינה": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "יחיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "יחילו": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החל!": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילי!": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החילו!": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "החלנה!": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "להחיל": [
- {
- "word_nikkud": "הוחל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "569-lehachil"
- }
- ],
- "מקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "מקפיאה": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "מקפיאים": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "מקפיאות": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפאתי": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפאנו": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפאת": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפאתם": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפאתן": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפיאה": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפיאו": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "אקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "נקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "תקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "תקפיאי": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "תקפיאו": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "תקפאנה": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "יקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "יקפיאו": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפא!": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפיאי!": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפיאו!": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "הקפאנה!": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "להקפיא": [
- {
- "word_nikkud": "הוקפא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1926-lehakpi"
- }
- ],
- "מפנה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "מפנים": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "מפנות": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפניתי": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנינו": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנית": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפניתם": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפניתן": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנתה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנו": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "אפנה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "נפנה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "תפנה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "תפני": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "תפנו": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "תפנינה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "יפנה": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "יפנו": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "הפנה!": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפני!": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנו!": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "הפנינה!": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- }
- ],
- "להפנות": [
- {
- "word_nikkud": "הופנה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1643-lehafnot"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "מתקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "מתקלחת": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "מתקלחים": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "מתקלחות": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחתי": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחנו": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחת": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחתם": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחתן": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחה": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחו": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "אתקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "נתקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "תתקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "תתקלחי": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "תתקלחו": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "תתקלחנה": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "יתקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "יתקלחו": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלח!": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחי!": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחו!": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "התקלחנה!": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "להתקלח": [
- {
- "word_nikkud": "להתקלח",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "מתגלה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "מתגלים": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "מתגלות": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגליתי": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגליתי": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגלינו": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלינו": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגלית": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלית": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגליתם": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגליתם": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגליתן": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגליתן": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגלה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגלתה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלתה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "נתגלו": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלו": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "אתגלה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "תתגלה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "תתגלי": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "תתגלו": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "תתגלינה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "יתגלה": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "יתגלו": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלה!": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלי!": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלו!": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "התגלינה!": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- }
- ],
- "להתגלות": [
- {
- "word_nikkud": "להתגלות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "332-lehitgalot"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "הייתי": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היינו": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היית": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "הייתם": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "הייתן": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "הייתה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היו": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "אהיה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "נהיה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "תהיה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהיי": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "תהיו": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "תהיינה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "יהיה": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "יהיו": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היה!": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היי!": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היו!": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "היינה!": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- }
- ],
- "להיות": [
- {
- "word_nikkud": "להיות",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
+ "slug": "6009-av",
+ "gender": "masculine"
}
],
"אבא": [
@@ -14670,18 +96,6 @@
"pos": "Noun",
"slug": "8743-aveda",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
}
],
"אבידות": [
@@ -14718,18 +132,6 @@
"pos": "Noun",
"slug": "3636-ibud",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
}
],
"איבודים": [
@@ -14766,18 +168,6 @@
"pos": "Noun",
"slug": "3006-hitabdut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
}
],
"התאבדויות": [
@@ -14814,18 +204,6 @@
"pos": "Noun",
"slug": "7199-avadon",
"gender": ""
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
}
],
"אבוקדו": [
@@ -14954,6 +332,15 @@
"gender": "masculine"
}
],
+ "אבטיח": [
+ {
+ "word_nikkud": "אֲבַטִּיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5597-avatiach",
+ "gender": "masculine"
+ }
+ ],
"אבטיחים": [
{
"word_nikkud": "אֲבַטִּיחַ",
@@ -15456,18 +843,6 @@
"pos": "Noun",
"slug": "4178-agada",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
}
],
"אגדות": [
@@ -15576,12 +951,6 @@
"pos": "Noun",
"slug": "7687-oged",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
}
],
"אוגדים": [
@@ -15726,12 +1095,6 @@
"pos": "Noun",
"slug": "8151-agan",
"gender": ""
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"אגנים": [
@@ -16108,12 +1471,6 @@
"pos": "Noun",
"slug": "6879-adon",
"gender": "masculine"
- },
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
}
],
"אדונים": [
@@ -16427,12 +1784,6 @@
"pos": "Noun",
"slug": "8346-hitahavut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
}
],
"התאהבויות": [
@@ -16469,12 +1820,6 @@
"pos": "Noun",
"slug": "3131-ahava",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
}
],
"אהבות": [
@@ -17146,24 +2491,6 @@
"pos": "Noun",
"slug": "4890-universita",
"gender": "feminine"
- },
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
}
],
"אוניברסיטאות": [
@@ -17754,12 +3081,6 @@
"pos": "Noun",
"slug": "7262-izkur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
}
],
"אזכורים": [
@@ -18044,12 +3365,6 @@
"pos": "Noun",
"slug": "4667-ezor",
"gender": ""
- },
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
}
],
"אזורים": [
@@ -18165,12 +3480,6 @@
"pos": "Noun",
"slug": "4191-hitachadut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
}
],
"התאחדויות": [
@@ -18207,12 +3516,6 @@
"pos": "Noun",
"slug": "3642-achdut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
}
],
"אחדות־": [
@@ -18231,12 +3534,6 @@
"pos": "Noun",
"slug": "4190-ichud",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
}
],
"איחודים": [
@@ -18273,12 +3570,6 @@
"pos": "Noun",
"slug": "4195-haachada",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
}
],
"האחדות": [
@@ -18664,12 +3955,6 @@
"pos": "Noun",
"slug": "9141-acharit",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
}
],
"אחריויות": [
@@ -18713,12 +3998,6 @@
"pos": "Noun",
"slug": "7105-ichur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
}
],
"איחורים": [
@@ -18755,12 +4034,6 @@
"pos": "Noun",
"slug": "4378-achorayim",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
}
],
"אחורי־": [
@@ -18779,12 +4052,6 @@
"pos": "Noun",
"slug": "7982-achray",
"gender": ""
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
}
],
"אחראים": [
@@ -18819,12 +4086,6 @@
"pos": "Noun",
"slug": "9141-acharit",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
}
],
"אחרית־": [
@@ -19656,12 +4917,6 @@
"pos": "Noun",
"slug": "8186-achzava",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
}
],
"אכזבות": [
@@ -19727,6 +4982,24 @@
"gender": "feminine"
}
],
+ "אוכל": [
+ {
+ "word_nikkud": "אֹכֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3416-ochel",
+ "gender": "masculine"
+ }
+ ],
+ "אוכלים": [
+ {
+ "word_nikkud": "אֹכֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3416-ochel",
+ "gender": "masculine"
+ }
+ ],
"אוכל־": [
{
"word_nikkud": "אֹכֶל",
@@ -19752,18 +5025,6 @@
"pos": "Noun",
"slug": "3417-achlan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
}
],
"אכלנים": [
@@ -19800,18 +5061,6 @@
"pos": "Noun",
"slug": "7540-haachala",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
}
],
"האכלות": [
@@ -19848,18 +5097,6 @@
"pos": "Noun",
"slug": "8856-maachal",
"gender": "masculine"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
}
],
"מאכלים": [
@@ -19912,18 +5149,6 @@
"pos": "Noun",
"slug": "8194-maachelet",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
}
],
"מאכלת־": [
@@ -19951,18 +5176,6 @@
"pos": "Noun",
"slug": "6332-achila",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
}
],
"אכילות": [
@@ -19999,18 +5212,6 @@
"pos": "Noun",
"slug": "7011-makolet",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
}
],
"מכולת־": [
@@ -20020,6 +5221,13 @@
"pos": "Noun",
"slug": "7011-makolet",
"gender": "feminine"
+ },
+ {
+ "word_nikkud": "מְכוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3748-mechula",
+ "gender": "feminine"
}
],
"אכסניה": [
@@ -20927,18 +6135,6 @@
"pos": "Noun",
"slug": "5296-meamen",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"מאמנים": [
@@ -20975,18 +6171,6 @@
"pos": "Noun",
"slug": "7016-neemanut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"נאמנויות": [
@@ -21023,18 +6207,6 @@
"pos": "Noun",
"slug": "4559-omanut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"אומנויות": [
@@ -21071,18 +6243,6 @@
"pos": "Noun",
"slug": "5608-uman",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"אומנים": [
@@ -21119,18 +6279,6 @@
"pos": "Noun",
"slug": "5593-imun",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"אימונים": [
@@ -21167,18 +6315,6 @@
"pos": "Noun",
"slug": "4614-emuna",
"gender": ""
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"אמונות": [
@@ -21215,18 +6351,6 @@
"pos": "Noun",
"slug": "9174-amana",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"אמנות": [
@@ -21263,18 +6387,6 @@
"pos": "Noun",
"slug": "7266-imunit",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
}
],
"אימוניות": [
@@ -21401,12 +6513,6 @@
"pos": "Noun",
"slug": "8388-emirut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
}
],
"אמירויות": [
@@ -21443,12 +6549,6 @@
"pos": "Noun",
"slug": "3217-imra",
"gender": "feminine"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
}
],
"אמרות": [
@@ -21485,12 +6585,6 @@
"pos": "Noun",
"slug": "5131-maamar",
"gender": "masculine"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
}
],
"מאמרים": [
@@ -21527,12 +6621,6 @@
"pos": "Noun",
"slug": "8387-amir",
"gender": "masculine"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
}
],
"אמירים": [
@@ -21569,12 +6657,6 @@
"pos": "Noun",
"slug": "5843-haamara",
"gender": "feminine"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
}
],
"האמרות": [
@@ -21611,12 +6693,6 @@
"pos": "Noun",
"slug": "5116-imut",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
}
],
"אימותים": [
@@ -21644,12 +6720,6 @@
"pos": "Noun",
"slug": "5186-emet",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
}
],
"אמיתות": [
@@ -21673,12 +6743,6 @@
"pos": "Noun",
"slug": "5189-amitut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
}
],
"אמיתות־": [
@@ -21711,12 +6775,6 @@
"pos": "Noun",
"slug": "5188-amita",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
}
],
"אמיתת־": [
@@ -22205,6 +7263,15 @@
"gender": "feminine"
}
],
+ "נשים": [
+ {
+ "word_nikkud": "אִשָּׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4220-isha",
+ "gender": "feminine"
+ }
+ ],
"אשת־": [
{
"word_nikkud": "אִשָּׁה",
@@ -22385,6 +7452,24 @@
"gender": "masculine"
}
],
+ "אוסף": [
+ {
+ "word_nikkud": "אֹסֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5660-osef",
+ "gender": "masculine"
+ }
+ ],
+ "אוספים": [
+ {
+ "word_nikkud": "אֹסֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5660-osef",
+ "gender": "masculine"
+ }
+ ],
"אוסף־": [
{
"word_nikkud": "אֹסֶף",
@@ -22410,12 +7495,6 @@
"pos": "Noun",
"slug": "7110-asefa",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
}
],
"אסיפות": [
@@ -22452,12 +7531,6 @@
"pos": "Noun",
"slug": "3418-asfan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
}
],
"אספנים": [
@@ -22494,12 +7567,6 @@
"pos": "Noun",
"slug": "7899-isuf",
"gender": "masculine"
- },
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
}
],
"איסופים": [
@@ -22572,12 +7639,6 @@
"pos": "Noun",
"slug": "4257-asir",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
}
],
"אסירים": [
@@ -22972,12 +8033,6 @@
"pos": "Noun",
"slug": "9172-ofel",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
}
],
"אופל־": [
@@ -23468,12 +8523,6 @@
"pos": "Noun",
"slug": "7384-atzil",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
}
],
"אצילים": [
@@ -23672,12 +8721,6 @@
"pos": "Noun",
"slug": "8891-arad",
"gender": "masculine"
- },
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
}
],
"ארד־": [
@@ -23856,12 +8899,6 @@
"pos": "Noun",
"slug": "6056-erez",
"gender": "masculine"
- },
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
}
],
"ארזים": [
@@ -23898,12 +8935,6 @@
"pos": "Noun",
"slug": "5018-ariza",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
}
],
"אריזות": [
@@ -23940,12 +8971,6 @@
"pos": "Noun",
"slug": "7309-maaraz",
"gender": "masculine"
- },
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
}
],
"מארזים": [
@@ -24637,6 +9662,15 @@
"gender": "feminine"
}
],
+ "אשים": [
+ {
+ "word_nikkud": "אֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5019-esh",
+ "gender": "feminine"
+ }
+ ],
"אש־": [
{
"word_nikkud": "אֵשׁ",
@@ -24707,12 +9741,6 @@
"pos": "Noun",
"slug": "8280-eshel",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
}
],
"אשל־": [
@@ -24740,12 +9768,6 @@
"pos": "Noun",
"slug": "3228-ashma",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
}
],
"אשמות": [
@@ -24926,12 +9948,6 @@
"pos": "Noun",
"slug": "5267-ishur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
}
],
"אישורים": [
@@ -24968,12 +9984,6 @@
"pos": "Noun",
"slug": "4886-osher",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
}
],
"אושר־": [
@@ -24992,12 +10002,6 @@
"pos": "Noun",
"slug": "8076-ishra",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
}
],
"אשרות": [
@@ -25124,12 +10128,6 @@
"pos": "Noun",
"slug": "6226-itur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
}
],
"איתורים": [
@@ -25166,12 +10164,6 @@
"pos": "Noun",
"slug": "6227-atar",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
}
],
"אתרים": [
@@ -25460,12 +10452,6 @@
"pos": "Noun",
"slug": "6058-beged",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
}
],
"בגדים": [
@@ -25934,12 +10920,6 @@
"pos": "Noun",
"slug": "6042-mivdak",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
}
],
"מבדקים": [
@@ -25976,12 +10956,6 @@
"pos": "Noun",
"slug": "2811-bdika",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
}
],
"בדיקות": [
@@ -26018,12 +10992,6 @@
"pos": "Noun",
"slug": "3629-mivdok",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
}
],
"מבדוקים": [
@@ -26240,12 +11208,6 @@
"pos": "Noun",
"slug": "7320-behirut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
}
],
"בהירויות": [
@@ -26282,18 +11244,6 @@
"pos": "Noun",
"slug": "4039-mavo",
"gender": "masculine"
- },
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
}
],
"מבואות": [
@@ -26330,18 +11280,6 @@
"pos": "Noun",
"slug": "7487-tvua",
"gender": "feminine"
- },
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
}
],
"תבואות": [
@@ -26378,18 +11316,6 @@
"pos": "Noun",
"slug": "8614-bia",
"gender": "feminine"
- },
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
}
],
"ביאות": [
@@ -26561,12 +11487,6 @@
"pos": "Noun",
"slug": "5324-bul",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
}
],
"בול־": [
@@ -26594,12 +11514,6 @@
"pos": "Noun",
"slug": "8809-havasa",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
}
],
"הבסות": [
@@ -26636,12 +11550,6 @@
"pos": "Noun",
"slug": "8808-tvusa",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
}
],
"תבוסות": [
@@ -26804,12 +11712,6 @@
"pos": "Noun",
"slug": "8486-busha",
"gender": "feminine"
- },
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
}
],
"בושת־": [
@@ -27008,18 +11910,6 @@
"pos": "Noun",
"slug": "5681-bochan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
}
],
"בחנים": [
@@ -27056,18 +11946,6 @@
"pos": "Noun",
"slug": "3555-mavchena",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
}
],
"מבחנות": [
@@ -27104,18 +11982,6 @@
"pos": "Noun",
"slug": "2813-bchina",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
}
],
"בחינות": [
@@ -27152,18 +12018,6 @@
"pos": "Noun",
"slug": "3528-mivchan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
}
],
"מבחנים": [
@@ -27200,18 +12054,6 @@
"pos": "Noun",
"slug": "4217-avchana",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
}
],
"אבחנות": [
@@ -27248,18 +12090,6 @@
"pos": "Noun",
"slug": "5162-havchana",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
}
],
"הבחנות": [
@@ -27296,12 +12126,6 @@
"pos": "Noun",
"slug": "2812-bchira",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
}
],
"בחירות": [
@@ -27338,12 +12162,6 @@
"pos": "Noun",
"slug": "4165-bachur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
}
],
"בחורים": [
@@ -27380,12 +12198,6 @@
"pos": "Noun",
"slug": "4166-bachura",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
}
],
"בחורות": [
@@ -27530,24 +12342,6 @@
"pos": "Noun",
"slug": "8677-btichut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"בטיחויות": [
@@ -27584,24 +12378,6 @@
"pos": "Noun",
"slug": "3598-bituach",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"ביטוחים": [
@@ -27638,24 +12414,6 @@
"pos": "Noun",
"slug": "2927-avtacha",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"אבטחת־": [
@@ -27674,24 +12432,6 @@
"pos": "Noun",
"slug": "3575-bitachon",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"ביטחון־": [
@@ -27710,24 +12450,6 @@
"pos": "Noun",
"slug": "7424-mivtach",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"מבטחים": [
@@ -27737,12 +12459,6 @@
"pos": "Noun",
"slug": "7424-mivtach",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"מבטח־": [
@@ -27770,24 +12486,6 @@
"pos": "Noun",
"slug": "6313-havtacha",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
}
],
"הבטחות": [
@@ -27914,12 +12612,6 @@
"pos": "Noun",
"slug": "2928-avtala",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
}
],
"אבטלת־": [
@@ -27938,12 +12630,6 @@
"pos": "Noun",
"slug": "2952-bitul",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
}
],
"ביטולים": [
@@ -27980,12 +12666,6 @@
"pos": "Noun",
"slug": "3419-batlan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
}
],
"בטלנים": [
@@ -28166,12 +12846,6 @@
"pos": "Noun",
"slug": "5889-hitbonenut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"התבוננויות": [
@@ -28208,12 +12882,6 @@
"pos": "Noun",
"slug": "5816-tovana",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"תובנות": [
@@ -28250,12 +12918,6 @@
"pos": "Noun",
"slug": "3998-biyun",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"ביונים": [
@@ -28292,12 +12954,6 @@
"pos": "Noun",
"slug": "5374-muvan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"מובנים": [
@@ -28307,12 +12963,6 @@
"pos": "Noun",
"slug": "5374-muvan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"מובן־": [
@@ -28340,12 +12990,6 @@
"pos": "Noun",
"slug": "7423-tvuna",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"תבונות": [
@@ -28382,12 +13026,6 @@
"pos": "Noun",
"slug": "6312-havana",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"הבנות": [
@@ -28424,12 +13062,6 @@
"pos": "Noun",
"slug": "6735-bina",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
}
],
"בינת־": [
@@ -28719,12 +13351,6 @@
"pos": "Noun",
"slug": "7741-bechi",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
}
],
"בכי־": [
@@ -28743,12 +13369,6 @@
"pos": "Noun",
"slug": "7193-bchiya",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
}
],
"בכיות": [
@@ -29028,12 +13648,6 @@
"pos": "Noun",
"slug": "6173-biluy",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
}
],
"בילויים": [
@@ -29536,12 +14150,6 @@
"pos": "Noun",
"slug": "6331-bniya",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
}
],
"בניות": [
@@ -29578,12 +14186,6 @@
"pos": "Noun",
"slug": "2668-banay",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
}
],
"בנאים": [
@@ -29618,12 +14220,6 @@
"pos": "Noun",
"slug": "2953-binuy",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
}
],
"בינוי־": [
@@ -29642,12 +14238,6 @@
"pos": "Noun",
"slug": "3767-tavnit",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
}
],
"תבניות": [
@@ -29684,12 +14274,6 @@
"pos": "Noun",
"slug": "5964-binyan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
}
],
"בניינים": [
@@ -29726,12 +14310,6 @@
"pos": "Noun",
"slug": "6989-mivne",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
}
],
"מבנים": [
@@ -29930,12 +14508,6 @@
"pos": "Noun",
"slug": "9093-beita",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
}
],
"בעיטות": [
@@ -30224,12 +14796,6 @@
"pos": "Noun",
"slug": "5513-bitzua",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
}
],
"ביצועים": [
@@ -30266,12 +14832,6 @@
"pos": "Noun",
"slug": "6027-mivtza",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
}
],
"מבצעים": [
@@ -30281,12 +14841,6 @@
"pos": "Noun",
"slug": "6027-mivtza",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
}
],
"מבצע־": [
@@ -30638,12 +15192,6 @@
"pos": "Noun",
"slug": "4235-boker",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
}
],
"בקרים": [
@@ -30680,12 +15228,6 @@
"pos": "Noun",
"slug": "5532-bakara",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
}
],
"בקרות": [
@@ -30722,12 +15264,6 @@
"pos": "Noun",
"slug": "2954-bikur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
}
],
"ביקורים": [
@@ -30764,12 +15300,6 @@
"pos": "Noun",
"slug": "3265-bikoret",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
}
],
"ביקורות": [
@@ -30806,12 +15336,6 @@
"pos": "Noun",
"slug": "2955-bikush",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
}
],
"ביקושים": [
@@ -30848,12 +15372,6 @@
"pos": "Noun",
"slug": "3000-bakasha",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
}
],
"בקשות": [
@@ -31358,12 +15876,6 @@
"pos": "Noun",
"slug": "6334-brecha",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
}
],
"בריכות": [
@@ -31400,12 +15912,6 @@
"pos": "Noun",
"slug": "3105-berech",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
}
],
"ברכיים": [
@@ -31604,12 +16110,6 @@
"pos": "Noun",
"slug": "7209-berur",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
}
],
"בירורים": [
@@ -31682,12 +16182,6 @@
"pos": "Noun",
"slug": "2956-bishul",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
}
],
"בישול־": [
@@ -31992,6 +16486,15 @@
"gender": "masculine"
}
],
+ "גבה": [
+ {
+ "word_nikkud": "גַּבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6116-gaba",
+ "gender": "feminine"
+ }
+ ],
"גבת־": [
{
"word_nikkud": "גַּבָּה",
@@ -32008,12 +16511,6 @@
"pos": "Noun",
"slug": "3941-gibuy",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
}
],
"גיבוי־": [
@@ -32338,12 +16835,6 @@
"pos": "Noun",
"slug": "5521-gibor",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
}
],
"גיבורים": [
@@ -32380,12 +16871,6 @@
"pos": "Noun",
"slug": "3008-hitgabrut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
}
],
"התגברות־": [
@@ -32404,12 +16889,6 @@
"pos": "Noun",
"slug": "3106-gever",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
}
],
"גברים": [
@@ -32446,12 +16925,6 @@
"pos": "Noun",
"slug": "3457-gvartan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
}
],
"גברתנים": [
@@ -32488,12 +16961,6 @@
"pos": "Noun",
"slug": "3655-gvura",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
}
],
"גבורת־": [
@@ -32512,12 +16979,6 @@
"pos": "Noun",
"slug": "6970-gveret",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
}
],
"גברות": [
@@ -32752,18 +17213,6 @@
"pos": "Noun",
"slug": "7367-gdula",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"גדולות": [
@@ -32800,18 +17249,6 @@
"pos": "Noun",
"slug": "5550-gdila",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"גדילות": [
@@ -32848,18 +17285,6 @@
"pos": "Noun",
"slug": "3207-godel",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"גדלים": [
@@ -32869,12 +17294,6 @@
"pos": "Noun",
"slug": "3207-godel",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"גודל־": [
@@ -32902,18 +17321,6 @@
"pos": "Noun",
"slug": "2663-migdal",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"מגדלים": [
@@ -32923,12 +17330,6 @@
"pos": "Noun",
"slug": "2663-migdal",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
}
],
"מגדל־": [
@@ -32956,18 +17357,6 @@
"pos": "Noun",
"slug": "2874-hagdala",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"הגדלת־": [
@@ -32986,18 +17375,6 @@
"pos": "Noun",
"slug": "3280-magdelet",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"מגדלות": [
@@ -33007,12 +17384,6 @@
"pos": "Noun",
"slug": "3280-magdelet",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
}
],
"מגדלת־": [
@@ -33040,18 +17411,6 @@
"pos": "Noun",
"slug": "4869-agudal",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"אגודלים": [
@@ -33088,18 +17447,6 @@
"pos": "Noun",
"slug": "5453-gidul",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
}
],
"גידולים": [
@@ -33172,12 +17519,6 @@
"pos": "Noun",
"slug": "5732-migdar",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
}
],
"מגדרים": [
@@ -33214,12 +17555,6 @@
"pos": "Noun",
"slug": "3132-hagdara",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
}
],
"הגדרות": [
@@ -33256,12 +17591,6 @@
"pos": "Noun",
"slug": "4570-gader",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
}
],
"גדרות": [
@@ -33406,12 +17735,6 @@
"pos": "Noun",
"slug": "3737-tguva",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
}
],
"תגובות": [
@@ -34542,12 +18865,6 @@
"pos": "Noun",
"slug": "6887-gil",
"gender": "masculine"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
}
],
"גיל־": [
@@ -34739,6 +19056,15 @@
"gender": ""
}
],
+ "גלגל": [
+ {
+ "word_nikkud": "גַּלְגַּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3784-galgal",
+ "gender": ""
+ }
+ ],
"גלגלים": [
{
"word_nikkud": "גַּלְגַּל",
@@ -34924,12 +19250,6 @@
"pos": "Noun",
"slug": "8659-gola",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"גולות": [
@@ -34939,12 +19259,6 @@
"pos": "Noun",
"slug": "8659-gola",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"גולת־": [
@@ -35008,12 +19322,6 @@
"pos": "Noun",
"slug": "3656-gluya",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"גלויות": [
@@ -35064,12 +19372,6 @@
"pos": "Noun",
"slug": "3768-taglit",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"תגליות": [
@@ -35106,18 +19408,6 @@
"pos": "Noun",
"slug": "3772-galut",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
}
],
"גלות־": [
@@ -35136,12 +19426,6 @@
"pos": "Noun",
"slug": "7465-galay",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"גלאים": [
@@ -35176,12 +19460,6 @@
"pos": "Noun",
"slug": "6113-giluy",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"גילויים": [
@@ -35218,12 +19496,6 @@
"pos": "Noun",
"slug": "6796-gilayon",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
}
],
"גיליונות": [
@@ -35296,12 +19568,6 @@
"pos": "Noun",
"slug": "2653-gal",
"gender": "masculine"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
}
],
"גלים": [
@@ -35311,12 +19577,6 @@
"pos": "Noun",
"slug": "2653-gal",
"gender": "masculine"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
}
],
"גל־": [
@@ -35900,12 +20160,6 @@
"pos": "Noun",
"slug": "8290-gmira",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
}
],
"גמירות": [
@@ -35942,12 +20196,6 @@
"pos": "Noun",
"slug": "2840-gneva",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
}
],
"גניבות": [
@@ -36020,12 +20268,6 @@
"pos": "Noun",
"slug": "7197-gina",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"גינות": [
@@ -36062,12 +20304,6 @@
"pos": "Noun",
"slug": "2656-gan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"גנים": [
@@ -36104,12 +20340,6 @@
"pos": "Noun",
"slug": "4328-magen",
"gender": ""
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"מגינים": [
@@ -36119,12 +20349,6 @@
"pos": "Noun",
"slug": "4328-magen",
"gender": ""
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"מגן־": [
@@ -36152,12 +20376,6 @@
"pos": "Noun",
"slug": "2657-ganan",
"gender": "masculine"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"גננים": [
@@ -36194,12 +20412,6 @@
"pos": "Noun",
"slug": "7229-hagana",
"gender": "feminine"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
}
],
"הגנות": [
@@ -37136,12 +21348,6 @@
"pos": "Noun",
"slug": "7480-megera",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
}
],
"מגירות": [
@@ -37178,12 +21384,6 @@
"pos": "Noun",
"slug": "3493-grar",
"gender": "masculine"
- },
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
}
],
"גרירה": [
@@ -37193,12 +21393,6 @@
"pos": "Noun",
"slug": "9263-grira",
"gender": "feminine"
- },
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
}
],
"גרירות": [
@@ -37361,148718 +21555,118694 @@
"gender": "feminine"
}
],
- "שִׁינִּיתָ": [
+ "הגשמה": [
{
- "word_nikkud": "לִהְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- },
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- },
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- },
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- },
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- },
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- },
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- },
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- },
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- },
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- },
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- },
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- },
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- },
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- },
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- },
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- },
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- },
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- },
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- },
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- },
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- },
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- },
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- },
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- },
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- },
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- },
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- },
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- },
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- },
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- },
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- },
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- },
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- },
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- },
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- },
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- },
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- },
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- },
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- },
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- },
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- },
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- },
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- },
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- },
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- },
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- },
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- },
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- },
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- },
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- },
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- },
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- },
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- },
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- },
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- },
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- },
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- },
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- },
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- },
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- },
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- },
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- },
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- },
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- },
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- },
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- },
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- },
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- },
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- },
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- },
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- },
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- },
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- },
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- },
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- },
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- },
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- },
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- },
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- },
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- },
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- },
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- },
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- },
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- },
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- },
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- },
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- },
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- },
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- },
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- },
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- },
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- },
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- },
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- },
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- },
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- },
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- },
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- },
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- },
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- },
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- },
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- },
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- },
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- },
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- },
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- },
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- },
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- },
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- },
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- },
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- },
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- },
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- },
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- },
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- },
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- },
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- },
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- },
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- },
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- },
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- },
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- },
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- },
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- },
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- },
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- },
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- },
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- },
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- },
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- },
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- },
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- },
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- },
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- },
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- },
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- },
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- },
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- },
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- },
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- },
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- },
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- },
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- },
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- },
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- },
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- },
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- },
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- },
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- },
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- },
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- },
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- },
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- },
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- },
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- },
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- },
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- },
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- },
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- },
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- },
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- },
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- },
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- },
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- },
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- },
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- },
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- },
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- },
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- },
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- },
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- },
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- },
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- },
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- },
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- },
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- },
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- },
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- },
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- },
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- },
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- },
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- },
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- },
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- },
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- },
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- },
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- },
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- },
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- },
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- },
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- },
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- },
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- },
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- },
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- },
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- },
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- },
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- },
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- },
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- },
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- },
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- },
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- },
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- },
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- },
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- },
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- },
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- },
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- },
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- },
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- },
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- },
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- },
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- },
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- },
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- },
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- },
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- },
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- },
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- },
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- },
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- },
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- },
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- },
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- },
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- },
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- },
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- },
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- },
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- },
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- },
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- },
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- },
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- },
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- },
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- },
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- },
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- },
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- },
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- },
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- },
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- },
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- },
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- },
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- },
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- },
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- },
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- },
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- },
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- },
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- },
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- },
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- },
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- },
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- },
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- },
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- },
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- },
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- },
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- },
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- },
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- },
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- },
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- },
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- },
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- },
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- },
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- },
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- },
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- },
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- },
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- },
- {
- "word_nikkud": "לְהֵהָרֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- },
- {
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- },
- {
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- },
- {
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
- }
- ],
- "שִׁנִּיתָ": [
- {
- "word_nikkud": "לִהְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- },
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- },
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- },
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- },
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- },
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- },
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- },
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- },
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- },
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- },
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- },
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- },
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- },
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- },
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- },
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- },
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- },
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- },
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- },
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- },
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- },
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- },
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- },
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- },
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- },
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- },
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- },
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- },
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- },
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- },
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- },
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- },
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- },
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- },
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- },
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- },
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- },
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- },
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- },
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- },
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- },
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- },
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- },
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- },
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- },
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- },
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- },
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- },
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- },
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- },
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- },
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- },
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- },
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- },
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- },
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- },
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- },
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- },
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- },
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- },
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- },
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- },
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- },
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- },
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- },
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- },
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- },
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- },
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- },
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- },
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- },
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- },
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- },
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- },
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- },
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- },
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- },
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- },
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- },
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- },
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- },
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- },
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- },
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- },
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- },
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- },
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- },
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- },
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- },
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- },
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- },
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- },
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- },
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- },
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- },
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- },
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- },
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- },
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- },
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- },
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- },
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- },
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- },
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- },
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- },
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- },
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- },
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- },
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- },
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- },
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- },
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- },
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- },
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- },
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- },
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- },
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- },
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- },
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- },
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- },
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- },
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- },
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- },
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- },
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- },
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- },
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- },
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- },
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- },
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- },
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- },
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- },
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- },
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- },
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- },
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- },
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- },
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- },
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- },
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- },
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- },
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- },
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- },
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- },
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- },
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- },
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- },
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- },
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- },
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- },
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- },
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- },
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- },
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- },
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- },
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- },
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- },
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- },
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- },
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- },
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- },
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- },
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- },
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- },
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- },
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- },
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- },
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- },
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- },
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- },
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- },
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- },
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- },
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- },
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- },
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- },
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- },
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- },
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- },
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- },
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- },
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- },
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- },
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- },
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- },
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- },
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- },
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- },
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- },
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- },
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- },
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- },
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- },
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- },
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- },
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- },
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- },
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- },
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- },
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- },
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- },
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- },
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- },
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- },
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- },
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- },
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- },
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- },
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- },
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- },
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- },
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- },
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- },
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- },
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- },
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- },
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- },
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- },
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- },
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- },
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- },
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- },
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- },
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- },
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- },
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- },
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- },
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- },
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- },
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- },
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- },
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- },
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- },
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- },
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- },
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- },
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- },
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- },
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- },
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- },
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- },
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- },
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- },
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- },
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- },
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- },
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- },
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- },
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- },
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- },
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- },
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- },
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- },
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- },
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- },
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- },
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- },
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- },
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- },
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- },
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- },
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- },
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- },
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- },
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- },
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- },
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- },
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- },
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- },
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- },
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- },
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- },
- {
- "word_nikkud": "לְהֵהָרֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- },
- {
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- },
- {
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- },
- {
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
- }
- ],
- "שינית": [
- {
- "word_nikkud": "לִהְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- },
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- },
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- },
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- },
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- },
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- },
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- },
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- },
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- },
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- },
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- },
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- },
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- },
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- },
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- },
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- },
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- },
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- },
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- },
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- },
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- },
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- },
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- },
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- },
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- },
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- },
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- },
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- },
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- },
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- },
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- },
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- },
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- },
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- },
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- },
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- },
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- },
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- },
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- },
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- },
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- },
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- },
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- },
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- },
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- },
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- },
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- },
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- },
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- },
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- },
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- },
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- },
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- },
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- },
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- },
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- },
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- },
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- },
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- },
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- },
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- },
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- },
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- },
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- },
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- },
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- },
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- },
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- },
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- },
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- },
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- },
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- },
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- },
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- },
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- },
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- },
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- },
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- },
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- },
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- },
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- },
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- },
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- },
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- },
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- },
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- },
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- },
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- },
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- },
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- },
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- },
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- },
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- },
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- },
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- },
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- },
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- },
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- },
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- },
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- },
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- },
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- },
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- },
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- },
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- },
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- },
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- },
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- },
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- },
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- },
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- },
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- },
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- },
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- },
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- },
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- },
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- },
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- },
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- },
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- },
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- },
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- },
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- },
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- },
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- },
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- },
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- },
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- },
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- },
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- },
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- },
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- },
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- },
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- },
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- },
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- },
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- },
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- },
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- },
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- },
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- },
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- },
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- },
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- },
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- },
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- },
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- },
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- },
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- },
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- },
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- },
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- },
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- },
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- },
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- },
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- },
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- },
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- },
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- },
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- },
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- },
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- },
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- },
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- },
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- },
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- },
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- },
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- },
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- },
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- },
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- },
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- },
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- },
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- },
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- },
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- },
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- },
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- },
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- },
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- },
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- },
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- },
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- },
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- },
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- },
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- },
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- },
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- },
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- },
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- },
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- },
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- },
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- },
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- },
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- },
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- },
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- },
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- },
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- },
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- },
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- },
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- },
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- },
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- },
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- },
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- },
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- },
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- },
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- },
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- },
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- },
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- },
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- },
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- },
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- },
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- },
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- },
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- },
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- },
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- },
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- },
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- },
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- },
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- },
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- },
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- },
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- },
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- },
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- },
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- },
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- },
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- },
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- },
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- },
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- },
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- },
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- },
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- },
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- },
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- },
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- },
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- },
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- },
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- },
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- },
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- },
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- },
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- },
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- },
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- },
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- },
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- },
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- },
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- },
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- },
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- },
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- },
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- },
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- },
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- },
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- },
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- },
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- },
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- },
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- },
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- },
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- },
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- },
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- },
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- },
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- },
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- },
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- },
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- },
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- },
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- },
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- },
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- },
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- },
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- },
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- },
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- },
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- },
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- },
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- },
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- },
- {
- "word_nikkud": "לְהֵהָרֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- },
- {
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- },
- {
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- },
- {
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
- }
- ],
- "ה - י - ה": [
- {
- "word_nikkud": "לִהְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "454-lihyot"
- },
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "עשית": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשו": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשיתי": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשתה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשייתי": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "אעשה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשה!": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עושה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "מעושה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשייה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עושים": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "מעשה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "יעשה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשינה!": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשו": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשיתם": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשוי": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "מעשי": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "ע - שׂ - ה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשינה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "להיעשות": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "נעשה": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשיתן": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "לעשות": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשי": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "יעשו": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשו!": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עושות": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשי!": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "תעשיין": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "עשינו": [
- {
- "word_nikkud": "לְעַשּׂוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3-laasot"
- }
- ],
- "להראות": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "תראינה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "להתראות": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "רואות": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראיתם": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "רואה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראי": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ראיה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "לראות": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ראה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראינה!": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראיתן": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "תראה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "תראי": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "ראו!": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראית": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראה!": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראייה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "להיראות": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ראו": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "נראה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "יראו": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "ר - א - ה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "תראו": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מראה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ראוי": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "אראה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "ראתה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראיתי": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראינו": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ראי!": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "ריאיון": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- },
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "יראה": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- },
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "רואים": [
- {
- "word_nikkud": "לִרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1972-lirot"
- }
- ],
- "הלכו": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "תהליך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הולכים": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הליכה": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "לכנה!": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "ילכו": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "להתהלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "מהלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "תלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "ה - ל - ך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "נלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "לכת": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "תלכו": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הליך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלכה": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלכת": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "לכי!": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "לכו!": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלכתן": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלכתי": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "לך!": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "אלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הולכות": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלכתם": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "ילך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הולך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "ללכת": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הלכנו": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "תלכי": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "להלך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הילוך": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "תהלוכה": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "תלכנה": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "הולכת": [
- {
- "word_nikkud": "לָלֶכֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "7-lalechet"
- }
- ],
- "מדוברות": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "להדביר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "אדובר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "ד - ב - ר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברה": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברת": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "נדובר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברתם": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דיבור": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "הדברה": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדביר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברתי": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדוברי": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברנו": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "ידוברו": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דביר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "הידברות": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדובר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדוברו": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברתן": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דובר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "להידבר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדוברת": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "מדוברים": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דבר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדוברנה": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "ידובר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "תדובר": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "דוברו": [
- {
- "word_nikkud": "לְדַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2-ledaber"
- }
- ],
- "עזר": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרתי": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרו": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרו!": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עוזר": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרת": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "יעזרו": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "להיעזר": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "תעזורנה": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזורנה!": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "נעזור": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "לעזור": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזור!": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עוזרים": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "אעזור": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עוזרת": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרה": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "ע - ז - ר": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "תעזרי": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרי!": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "תעזרו": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרנו": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרתם": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עזרתן": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "יעזור": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "תעזור": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "עוזרות": [
- {
- "word_nikkud": "לַעֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "46-laazor"
- }
- ],
- "דעת": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תדענה": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "דעי!": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "להודיע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודיעין": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "דענה!": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "ליידע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודעה": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידעתי": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "תדעו": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "תדעי": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "ידוע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "אדע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "ידעתם": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "לדעת": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודעה": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "יודעת": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "מדען": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידעה": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "ידען": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מדעי": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידעת": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "דע!": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "מדע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידעתן": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "ידעו": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "תדע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "י - ד - ע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "נדע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "מידע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "יודעים": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "יודע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "להיוודע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודע": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודעה": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידענו": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "יודעות": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "דעו!": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- }
- ],
- "ידעוני": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "ידיעה": [
- {
- "word_nikkud": "לָדַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "791-ladaat"
- },
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "אמור": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "נאמר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אומרים": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "לומר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרו!": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "להיאמר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אומרות": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "לאמור": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "תאמר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אומרת": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרנו": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "תאמרו": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "יאמר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרתם": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "יאמרו": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמורנה!": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרתי": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "כלומר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרתן": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "להאמיר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "תאמרנה": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "א - מ - ר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- },
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "אמרו": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמור!": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרי!": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אומר": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "אמרת": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "תאמרי": [
- {
- "word_nikkud": "לוֹמַר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "55-lomar"
- }
- ],
- "לקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "להילקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "תיקחי": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לוקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "ל - ק - ח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לוקחות": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "קחו!": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחתם": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחתן": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "ניקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחה": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "מלקחיים": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "קחנה!": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקוח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחו": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "תיקחנה": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "ייקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחתי": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחת": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לוקחים": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "להתלקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "תיקחו": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקיחה": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "ייקחו": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "קחי!": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "קח!": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לוקחת": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "אקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "מלקחת": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "תיקח": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "לקחנו": [
- {
- "word_nikkud": "לָקַחַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2427-lakachat"
- }
- ],
- "מגידות": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "תוגדו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "מגידה": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגידו!": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "מנוגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תגדנה": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "תוגדי": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "תגידי": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "ניגוד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "להנגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגדנו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגידי!": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "להתנגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "הגידו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגדת": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "נגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תוגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "יוגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "נגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מגידים": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "יוגדו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "מוגדים": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדתי": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדת": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדנו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגידה": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "התנגדות": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "הגדה": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "יגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "להגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגדתי": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "מוגדת": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדה": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדתן": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הוגדתם": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "תגידו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגדתן": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "אגיד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "נ - ג - ד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מוגדות": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגדנה!": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגד!": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "תוגדנה": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "הגדתם": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "לנגוד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- },
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "נוגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "מוגד": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "יגידו": [
- {
- "word_nikkud": "לְהַגִּיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1135-lehagid"
- }
- ],
- "מצאו": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מצאתם": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מצא!": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "תמצא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "ימצאו": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "תמצאי": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "הימצאות": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מצוי": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מצאו!": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מצאתן": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "ממצא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מ - צ - א": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "להתמצא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מוצאת": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מוצאות": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מצאת": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "למצוא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מציאותי": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תמצאו": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מציאות": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מצא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מצאנה!": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "התמצאות": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מצאה": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מצאי!": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מציאה": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מוצאים": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מצאתי": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "המצאה": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "ימצא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מצאנו": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- }
- ],
- "מוצא": [
- {
- "word_nikkud": "לִמְצֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1083-limtzo"
- },
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "קבל!": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקובלת": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קבלו!": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקובלים": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקובלנה": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקובלות": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "אקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "ק - ב - ל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקבלי": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלה": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקבלו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלתן": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקבלים": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קבלנה!": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקובלי": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקובל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "יקובלו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "להתקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקבלות": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קבלן": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלתם": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "לקבול": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלת": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "לקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקובל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבול": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "אקובל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלת": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלתם": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלה": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלנו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלתי": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קבלי!": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקובלו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקביל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבולת": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלנו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קבלה": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קובלתי": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "יקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "יקובל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבלתן": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "מקבלת": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "נקובל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "נקבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "קיבל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תקבלנה": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "יקבלו": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "להקביל": [
- {
- "word_nikkud": "לְקַבֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1850-lekabel"
- }
- ],
- "תני!": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "ייתנו": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תיתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתתם": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתנה": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "ניתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תיתנה": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תיתנו": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תנו!": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתנו": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "ייתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתון": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נותנת": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתתי": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תן!": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתת": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תנה!": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נתונים": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "לתת": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "מתנה": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "להינתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "תיתני": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "מתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- },
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "נותן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נ - ת - ן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נותנים": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "נותנות": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "אתן": [
- {
- "word_nikkud": "לָתֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1285-latet"
- }
- ],
- "יצאו": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יצאתי": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "צאנה!": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יוצאות": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "אצא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "צאי!": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "תוצאה": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "יצאתם": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "נצא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יצא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "תצאנה": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יצאתן": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "צא!": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יציאה": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "צאו!": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יצאנו": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יצאה": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "י - צ - א": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "להוציא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "ייצוא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "יוצאים": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "תצא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יצאת": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "יוצאת": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "לייצא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאה": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "לצאת": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "צאת": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "יוצא": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- },
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תצאו": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "תצאי": [
- {
- "word_nikkud": "לָצֵאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "832-latzet"
- }
- ],
- "תספרו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרות": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "מסופרות": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "יספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סופרו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "ספרן": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סיפרתם": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סופרתי": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סופרה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "יסופר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "לספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "תסופר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סופרת": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "מספרים": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סופרתם": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סיפרנו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סיפרת": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "תספרנה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "מסופרים": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "מספרת": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ספרייה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סיפרתן": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סיפרו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "תספרי": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "מסופר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "מסופרת": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "לספור": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "תספורת": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סופר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "יסופרו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "יספרו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סופרתן": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "ספרי!": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סיפרתי": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סיפר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "אסופר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "מספרה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרנה!": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "מספריים": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "תסופרי": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "ספרה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "נסופר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "להיספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "אספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "תסופרנה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "ספר!": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "ספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ס - פ - ר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "מספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סיפרה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "נספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "תספר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "סופרנו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "להסתפר": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרו!": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סיפור": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספירה": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "מספרות": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "ספור": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרותי": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- },
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "תסופרו": [
- {
- "word_nikkud": "לְסַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1409-lesaper"
- }
- ],
- "חזרתי": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "תחזרי": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חוזר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזורנה!": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חוזרת": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזרי!": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "החזר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "להחזיר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "חזרת": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מחזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "חזרה": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "לחזר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "חזרו!": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חוזרות": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזור!": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "נחזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזרתם": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "יחזרו": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "אחזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חוזרים": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזרו": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזרנו": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "תחזורנה": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "להתחזר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "ח - ז - ר": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תחזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "תחזרו": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חזרתן": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "יחזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- }
- ],
- "חיזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "לחזור": [
- {
- "word_nikkud": "לַחֲזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "48-lachazor"
- },
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הרגה": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "אהרוג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "נהרוג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הורגים": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגתם": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "יהרגו": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגו": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרוגנה!": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגי!": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגו!": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "תהרגי": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הורג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגתי": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגת": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "להרוג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- },
- {
- "word_nikkud": "לְהֵהָרֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "הרגנו": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "ה - ר - ג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- },
- {
- "word_nikkud": "לְהֵהָרֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "474-lehehareg"
- }
- ],
- "תהרוג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרגתן": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "יהרוג": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "תהרוגנה": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "תהרגו": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הורגות": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הרוג!": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "הורגת": [
- {
- "word_nikkud": "לַהֲרֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "473-laharog"
- }
- ],
- "חישוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חושבת": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבתם": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "לחשב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "נחשוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "יחשבו": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשיבה": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשוב!": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבי!": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבו": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבונייה": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "מחשבון": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "אחשוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "תחשובנה": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבו!": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "התחשבות": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חושבות": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "להיחשב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "לחשוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "להתחשבן": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "להתחשב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "ח - שׁ - ב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "להחשיב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשיבות": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשובנה!": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבתי": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבתן": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבנו": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חושבים": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבונית": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבונאי": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חושב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "מחשבה": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- },
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "חשבון": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "מחשב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- },
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "חשבה": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "תחשבי": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "תחשבו": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "חשבת": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "תחשוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "יחשוב": [
- {
- "word_nikkud": "לַחְשֹׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "700-lachshov"
- }
- ],
- "תבוא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באה": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "יבוא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "בא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "באים": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "אבוא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "נבוא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באתן": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באו": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באתי": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "בואי!": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "תבואינה": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באות": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באנו": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באת": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "תבואנה": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "בואנה!": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "באתם": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "יבואו": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "בואו!": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "לבוא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "בוא!": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "תבואו": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "ב - ו - א": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "בואינה!": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "תבואי": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- }
- ],
- "להביא": [
- {
- "word_nikkud": "לָבוֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "28-lavo"
- },
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מוגעות": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "יגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגעת": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגעה": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגעתם": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "מוגעת": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תגענה": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגעתי": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "מגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "אגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "יגיעו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תוגעו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגעו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "אוגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "נגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "מגיעה": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "נ - ג - ע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "מגיעים": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "נגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגע!": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "מגיעות": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "להגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "תוגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "יוגעו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "מגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תגיעו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "להינגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "הוגעתן": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגענו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגעתם": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הוגעת": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "מוגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תוגענה": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "לנגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "תגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגעה": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "הגעתן": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תגיעי": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגיעה": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגעתי": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגענו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "נוגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "יוגע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "מוגעים": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תוגעי": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "לגעת": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "הגיעי!": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "נגוע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- },
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "הגיעו": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגיעו!": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגיע": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "הגענה!": [
- {
- "word_nikkud": "לְהַגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1141-lehagia"
- }
- ],
- "תשמעו": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמע!": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "להישמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שמעי!": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שומעות": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "משמעות": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שומעים": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "נשמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "משמעותי": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "אשמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שמעתן": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "תשמענה": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "להשמיע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שמעו": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שומעת": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "ישמעו": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "תשמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמעתם": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "תשמעי": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמענה!": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמעתי": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "משמעת": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "ישמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמעת": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שימוע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שומע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמועה": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "לשמוע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שמעה": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "משמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שׁ - מ - ע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "השמעה": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "שמעו!": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "שמענו": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- }
- ],
- "להשתמע": [
- {
- "word_nikkud": "לִשְׁמֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2250-lishmoa"
- },
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "עבדות": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "להעביד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עובדה": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עיבוד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "השתעבדות": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "לשעבד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "מעבדה": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "שיעבוד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "ע - ב - ד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "בדיעבד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "לעבד": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "עבודה": [
- {
- "word_nikkud": "לַעֲבֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "51-laavod"
- }
- ],
- "מאחרים": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אאוחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרת": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאוחרות": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחור": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרתי": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "יאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאוחרו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאוחרנה": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאחרנה": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחרון": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחורי": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרתם": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "נאוחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאחרת": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאחרות": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאוחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחר!": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "יאוחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאוחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרנו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרתם": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרנו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחורה": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאוחרת": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאוחרי": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאחרי": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרתי": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "יאוחרו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאוחרים": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחרו!": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "תאחרו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרה": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאחורי": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרה": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחרי!": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "א - ח - ר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "יאחרו": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרתן": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "להתאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אחרנה!": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "איחרת": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "לאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "אוחרתן": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "נאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "מאחר": [
- {
- "word_nikkud": "לְאַחֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "88-leacher"
- }
- ],
- "הובאתי": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבאנה!": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "יביאו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובאנו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "יביא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מובאת": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תובאו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבא!": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תביאו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תובאנה": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "נביא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מביאים": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תובאי": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הביאה": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הביאו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "יובאו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הביאי!": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "אביא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובאתם": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבאתן": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מביאות": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הביאו!": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבאנו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובאת": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תובא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הביא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תביאי": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "אובא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "יובא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובאה": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבאתי": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מביאה": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובאתן": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובאו": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מובאים": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מובא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מובאות": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "נובא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תביא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הובא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבאת": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "תבאנה": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "הבאתם": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "מביא": [
- {
- "word_nikkud": "לְהָבִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "188-lehavi"
- }
- ],
- "שארית": [
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "להשאיר": [
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הישארות": [
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "שאר": [
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "שׁ - א - ר": [
- {
- "word_nikkud": "לְהִשָּׁאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "47-lehishaer"
- },
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "שאלון": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאילה": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "השאלה": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "משאלה": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "לתשאל": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "להישאל": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שאול": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "שׁ - א - ל": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "להשאיל": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "משאל": [
- {
- "word_nikkud": "לִשְׁאֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "39-lishol"
- }
- ],
- "עורב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "יערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבים": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "מערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבנו": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "ערובה": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "התערבות": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבה": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "נערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "יערבו": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "לערוב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תערבי": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "לערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "להתערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבתי": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "ערבו": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "מעריב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תערבו": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבתן": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "ערבות": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "אערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ע - ר - ב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תערבנה": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבת": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "מערבה": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מערבי": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תערב": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- },
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבתם": [
- {
- "word_nikkud": "עָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4426-arev"
- }
- ],
- "פחתו!": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחיתות": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתי": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "להפחית": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "אפחת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחת!": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתי!": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחות": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פ - ח - ת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "תפחתו": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "יפחתו": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "תפחתי": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פיחות": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פוחתות": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פוחתת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתן": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "הפחתה": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "תפחת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתנה!": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פוחתים": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתנו": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתם": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "יפחת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "לפחות": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתה": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פוחת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "נפחת": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "פחתו": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "תפחתנה": [
- {
- "word_nikkud": "לִפְחֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1619-lifchot"
- }
- ],
- "א - כ - ל": [
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "להיאכל": [
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "אכול": [
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "לאכל": [
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "להאכיל": [
- {
- "word_nikkud": "לֶאֱכֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "30-leechol"
- },
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "עזב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עוזבים": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבי!": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזובנה!": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבה": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזוב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבתם": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזוב!": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבתן": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "תעזבי": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "נעזוב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבו": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "יעזבו": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבנו": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "תעזוב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עוזבת": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "אעזוב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבו!": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "תעזובנה": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "יעזוב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "להיעזב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עוזבות": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבתי": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עוזב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "עזבת": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "לעזוב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "תעזבו": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "ע - ז - ב": [
- {
- "word_nikkud": "לַעֲזֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1470-laazov"
- }
- ],
- "נכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "נכנסה": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "נכנסנו": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "תיכנסו": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "נכנסים": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "ייכנסו": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "מכנסיים": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "היכנסות": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "היכנסי!": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "כניסה": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "להתכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "להיכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "היכנסנה!": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "ניכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "כינוס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "נכנסו": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "כנסת": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "כנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "לכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תיכנסנה": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "היכנסו!": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "כנסייה": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "נכנסתן": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "התכנסות": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "נכנסתי": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "כ - נ - ס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תיכנסי": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "תיכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "נכנסתם": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "הכנסה": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- },
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "היכנס!": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "אכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "נכנסת": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "ייכנס": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "נכנסות": [
- {
- "word_nikkud": "לְהִכָּנֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "918-lehikanes"
- }
- ],
- "השיגי!": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השיגו!": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגה": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "מושג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תושגי": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "נ - שׂ - ג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תושגנה": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "להשיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השיגו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגת": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הישג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השגתי": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "משיגות": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השגתן": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "ישיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "יושגו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תשיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "משיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השגת": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השיגה": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "משיגים": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגנו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "אושג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגתן": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תשיגי": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השג!": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגתם": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תשגנה": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תושג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תושגו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "מושגים": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השגנו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "תשיגו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "אשיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "נשיג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "מושגות": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "יושג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "משיגה": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "הושגתי": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "מושגת": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "נושג": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השגתם": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "השגנה!": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "ישיגו": [
- {
- "word_nikkud": "לְהַשִּׂיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1270-lehasig"
- }
- ],
- "ימות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "ימותו": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "תמותינה": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מותנה!": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "למות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מוות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "נמות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתם": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מותו!": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "תמות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מותי!": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתים": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "תמותי": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "אמות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתי": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתות": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתה": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתו": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מת": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "תמותו": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מתנו": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מותינה!": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "תמותה": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מ - ו - ת": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "מות!": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "להמית": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "תמותנה": [
- {
- "word_nikkud": "לָמוּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "52-lamut"
- }
- ],
- "הבינו!": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינותן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "מבינה": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "מובנות": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הובנתם": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבנה!": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "ב - י - ן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הובן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "נבון": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבנתן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תבנה": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- },
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "הובנתן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינות": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "יבינו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "יבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "יובנו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תבינו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבנתם": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבנו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינה": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תובני": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תובנו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "יובן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "מבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינונו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הובנת": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תובנינה": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "לבונן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "נובן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינותי": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבן!": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הביני!": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "כמובן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תביני": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "נבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "לביין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תובן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "אובן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "תבינינה": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבינותם": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הובנו": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "אבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבנתי": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "להבין": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הובנה": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הובנתי": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "להתבונן": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "מבינים": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "מובנת": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "מבינות": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "הבנת": [
- {
- "word_nikkud": "לְהָבִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "217-lehavin"
- }
- ],
- "עצרתם": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרו": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרתן": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרת": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "אעצור": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "ע - צ - ר": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עוצרים": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "לעצור": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצירות": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עוצר": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "להיעצר": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "מעצר": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "תעצור": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצור!": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "יעצרו": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצורנה!": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "תעצורנה": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "תעצרי": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרתי": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצר": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עוצרת": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרה": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "תעצרו": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרנו": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עציר": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עוצרות": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרי!": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "נעצור": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצרו!": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "עצור": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "יעצור": [
- {
- "word_nikkud": "לַעֲצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1542-laatzor"
- }
- ],
- "שמרן": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שׁ - מ - ר": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמור": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמירה": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "להישמר": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "משמר": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרים": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמיר": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "משמרת": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שמרני": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "להשתמר": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "שימור": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "לשמר": [
- {
- "word_nikkud": "לִשְׁמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2255-lishmor"
- }
- ],
- "מוענתם": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממענת": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמענו": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממוענות": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מעון": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מענו!": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "אמען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מוענו": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיענתם": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממוען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מעני!": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיענתי": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיענת": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מוענתן": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מען!": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממוענת": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיענה": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמוענה": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ימענו": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מוענתי": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמועני": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ימוענו": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממוענים": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מוענת": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "נמוען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "למעון": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממענים": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מוענה": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיענו": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מ - ע - ן": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מוען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמוען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "נמען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ימוען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ממענות": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמעני": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמענה": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מיענתן": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מענה!": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "תמוענו": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "אמוען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "מען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "ימען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "למען": [
- {
- "word_nikkud": "לְמַעֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1081-lemaen"
- }
- ],
- "השתמשת": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "לשמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "השתמשה": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "ישתמשו": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "שימוש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשתמשנה": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "שמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "השתמש!": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "אשתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשתם": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "להשתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שמיש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשתמשי": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "תשמיש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "משתמשות": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשנה!": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "משתמשת": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "שימושי": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שׁ - מ - שׁ": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשתמשו": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "שמשה": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "השתמשו!": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשתי": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשו": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "שמשייה": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- },
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "נשתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשתן": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "ישתמש": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשי!": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "השתמשנו": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "משתמשים": [
- {
- "word_nikkud": "לְהִשְׁתַּמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2260-lehishtamesh"
- }
- ],
- "קריין": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "להיקרא": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קריאה": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "להקריא": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "מקרא": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קריא": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "קרוי": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "להתקרא": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "ק - ר - א": [
- {
- "word_nikkud": "לִקְרֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "13-likro"
- }
- ],
- "תחייה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיינו": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיו": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "מחיה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "תחיי": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "נחיה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיה!": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "להחיות": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיי!": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חייזר": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיית": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "יחיו": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "תחיה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "לחיות": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "החייאה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חי": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "אחיה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיות": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חייתן": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "יחיה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "ח - י - ה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חייתי": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חייתה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיו!": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "תחיו": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיינה!": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיוני": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חיים": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "חייתם": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "תחיינה": [
- {
- "word_nikkud": "לִחְיוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "797-lichyot"
- }
- ],
- "עוברת": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "יעבור": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "עבריין": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברתם": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "תעבורנה": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "עברתן": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "עוברות": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "עוברים": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "עברתי": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "עברת": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "תעברו": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "להתעבר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברו": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "לעבר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעבר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעברי": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעבורה": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "לשעבר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברי": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "לעבור": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עבירה": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברנו": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "כעבור": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברו!": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עבורנה!": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "מעברה": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עובר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "העברה": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברה": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "מעבורת": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "אעבור": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "יעברו": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "ע - ב - ר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברי!": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עבר": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "נעבור": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "תעבור": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "מעברון": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- },
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- },
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עבור!": [
- {
- "word_nikkud": "לַעֲבֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1441-laavor"
- }
- ],
- "נסו!": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסיתן": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "אנסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסיתי": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נסה!": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסיתי": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נ - ס - ה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "מנסים": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "התנסות": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנוסי": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ינוסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "מנסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "מנוסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ינוסו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסיון": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסיתם": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ינסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנוסו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסיתן": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסית": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נסינה!": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ננסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנסינה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "להתנסות": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנסי": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנוסינה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסתה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנוסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "מנסות": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "לנסות": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסית": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסתה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "אנוסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסוי": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסינו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תנסו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ינסו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ננוסה": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "מנוסים": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "מנוסות": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נסי!": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "נוסינו": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "ניסיתם": [
- {
- "word_nikkud": "לְנַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1210-lenasot"
- }
- ],
- "תשוחקנה": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשוחקו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "ישחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "ישחקו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקה": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משוחקים": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשוחקי": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "אשחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "נשוחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקתם": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקת": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "נשחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משוחקת": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משחקת": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשוחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשחקו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שחקו!": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משחקים": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "ישוחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקתי": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקתן": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שחקי!": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שחקן": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שחקנה!": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקתן": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקתם": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משחקות": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שׂ - ח - ק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "אשוחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משוחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקת": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקתי": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משוחקות": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "לשחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשחקנה": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שחק!": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקה": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "משחק": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שוחקנו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "תשחקי": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "שיחקנו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "ישוחקו": [
- {
- "word_nikkud": "לְשַׂחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2172-lesachek"
- }
- ],
- "יפגשו": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגוש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "אפגוש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשתי": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגוש!": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשת": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "תפגוש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "תפגושנה": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פוגשים": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "להפגיש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "להיפגש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "פגשו!": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "תפגשי": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פוגשות": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "תפגשו": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשתם": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשה": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פוגשת": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "לפגוש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "מפגש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגוש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשו": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגושנה!": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשנו": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשי!": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגישה": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "פ - ג - שׁ": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- },
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "פוגש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "יפגוש": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "פגשתן": [
- {
- "word_nikkud": "לִפְגֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1592-lifgosh"
- }
- ],
- "ישני!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "יישנו": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "שנה!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "אישן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "לישון": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנתי": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "תישנה": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנה": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "ישן!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "תישני": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנה!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנות": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "שנו!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "תישן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנתם": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "להתיישן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "יישן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנים": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "נושן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנו!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "י - שׁ - ן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנת": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "נישן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנתן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "שני!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "מיושן": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "ישנו": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- },
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "ישנוני": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "שן!": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "תישנו": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "שינה": [
- {
- "word_nikkud": "לִישֹׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "860-lishon"
- }
- ],
- "תנוצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחתם": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נ - צ - ח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחנו": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנוצחות": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחה": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "הנצחה": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנוצחי": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ינוצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנוצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "להתנצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ינוצחו": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנוצחו": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחו": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "אנוצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחת": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נצחי": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצוח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחתן": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנוצחת": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "תנוצחנה": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ניצחון": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "ננוצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "מנוצחים": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "להנציח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נוצחתי": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "נצח": [
- {
- "word_nikkud": "לְנַצֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1239-lenatzeach"
- }
- ],
- "יגרום": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרם": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גורמות": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרום!": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמת": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גורמת": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמתי": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גורם": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמו!": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמתן": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "תגרום": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "יגרמו": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמנו": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "תגרמו": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "להיגרם": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמי!": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרומנה!": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמו": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "נגרום": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמה": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "אגרום": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "תגרמי": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גורמים": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "ג - ר - ם": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "תגרומנה": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "לגרום": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "גרמתם": [
- {
- "word_nikkud": "לִגְרֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "376-ligrom"
- }
- ],
- "התחלתם": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלתי": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלתם": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחילו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "אתחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מתחילים": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחלתן": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "יתחילו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מתחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלת": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תותחלי": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תותחלנה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תתחילו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תותחל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מותחלת": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תחילה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "להתחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "נותחל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מותחל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחלה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחלנה!": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחלתי": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תתחלנה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "ת - ח - ל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "יתחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "אותחל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלתן": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "נתחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחל!": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחלנו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מתחילות": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מלכתחילה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחלת": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מותחלים": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלנו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחילה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מותחלות": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "מתחילה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תתחילי": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחילי!": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלה": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "הותחלו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "יותחל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תותחלו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "התחילו!": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "יותחלו": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "תתחיל": [
- {
- "word_nikkud": "לְהַתְחִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2359-lehatchil"
- }
- ],
- "להימשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "המשכתם": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשיכה": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשכתן": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשיכו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "מומשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "ממשיכים": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "נומשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "יומשכו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשכתי": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "ימשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "ימשיכו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "מומשכת": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "יומשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשך!": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "מומשכות": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "ממשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "להתמשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "המשכת": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשיכו!": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "נמשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "הומשכתם": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הומשכנו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "תמשיכי": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "להמשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "למשוך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "תמשכנה": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הומשכתי": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשכנה!": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "אומשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "ממשיכות": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "תומשכנה": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הומשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "משך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "המשכנו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הימשכות": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "הומשכה": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הומשכתן": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "המשיכי!": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "משיכה": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "תומשך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "תמשיכו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הומשכת": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "מ - שׁ - ך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- },
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "מומשכים": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "תומשכי": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "אמשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "הומשכו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "ממשיכה": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "תמשיך": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "תומשכו": [
- {
- "word_nikkud": "לְהַמְשִׁיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1110-lehamshich"
- }
- ],
- "חוכו": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכינו": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחוכה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "מחוכים": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכיתן": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחוכי": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "יחוכו": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכיתי": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחוכינה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכיתם": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "נחוכה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכתה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "אחוכה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "ח - כ - ה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "מחוכות": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "יחוכה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "מחוכה": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "חוכית": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "תחוכו": [
- {
- "word_nikkud": "לְחַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "594-lechakot"
- }
- ],
- "בדקתי": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "אבדוק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "יבדקו": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקה": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקו!": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בודקות": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בודקים": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "תבדקי": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקו": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "ב - ד - ק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בודק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "נבדוק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקת": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדוקנה!": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדוק!": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקתן": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בודקת": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "תבדוקנה": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקי!": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "יבדוק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקנו": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "בדקתם": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "תבדקו": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "תבדוק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "לבדוק": [
- {
- "word_nikkud": "לִבְדֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "177-livdok"
- }
- ],
- "מעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "אמעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "ימעטו": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "מיעוט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "תמעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "מ - ע - ט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "נמעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "תמעטי": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "תמעטו": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "ימעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "להמעיט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "להתמעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "תמעטנה": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "למעט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "מועט": [
- {
- "word_nikkud": "מָעַט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2770-maat"
- },
- {
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
- }
- ],
- "נהייתה": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "נהיינו": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "נהייתי": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "נהיו": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "נהיית": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "נהייתן": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "נהייתם": [
- {
- "word_nikkud": "נִהְיָה",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2552-nihya"
- }
- ],
- "הורגשנו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגשו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגישו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "נרגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מרגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "התרגשות": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מרגישה": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תרגישי": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגישה": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשנו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תרגשנה": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מורגשת": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מרגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "להתרגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "אורגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "ארגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מורגשות": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "לרגוש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגשה": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תורגשי": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תורגשנה": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגשתם": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "להרגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "נורגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשה": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגשתן": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשת": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מורגשים": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "יורגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגישו!": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגש!": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תרגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשתם": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מרגישים": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תורגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "ר - ג - שׁ": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "ירגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "ירגישו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "יורגשו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תורגשו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגישי!": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשתי": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "תרגישו": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשתן": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מורגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגשת": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "רגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "מרגישות": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הורגשתי": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "הרגשנה!": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "להירגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "רגיש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "לרגש": [
- {
- "word_nikkud": "לְהַרְגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1993-lehargish"
- }
- ],
- "לשנו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "ללוש": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "ל - ו - שׁ": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "נלוש": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשתן": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשה": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לש": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לושי!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "תלושינה": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לוש!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לושנה!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשות": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "תלושנה": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "ילוש": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "תלושי": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לושינה!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשתי": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשתם": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "תלושו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "תלוש": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "ילושו": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לושו!": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "אלוש": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "לשת": [
- {
- "word_nikkud": "לָשִׂים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "989-lalush"
- }
- ],
- "קשור": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "התקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרי!": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "קשירות": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "יתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרנה!": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "תתקשרו": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרה": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "נתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרת": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "מתקשרים": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "הקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מתקשרת": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "לקשור": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תתקשרנה": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרנו": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרו!": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרתם": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "ק - שׁ - ר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "להיקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "לקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "אתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "תתקשרי": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "לתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "יתקשרו": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "קשירה": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תיקשור": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "התקשרות": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "התקשרתן": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "מתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "קישור": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תקשורת": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מתקשרות": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשר!": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "להתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- },
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "התקשרו": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "התקשרתי": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "תתקשר": [
- {
- "word_nikkud": "לְהִתְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1971-lehitkasher"
- }
- ],
- "הצלתם": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "נ - צ - ל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "הצלנה!": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "להציל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מוצלות": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הוצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הוצלת": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "מצילים": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "מציל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "נוצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "יוצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "להתנצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נציל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "מוצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הציל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תוצלנה": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצלה": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מצילות": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הוצלו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצלת": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "ניצול": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "התנצלות": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "יציל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הוצלתי": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצל!": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תצילי": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "מוצלים": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הוצלנו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תצלנה": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הינצלות": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "הוצלתם": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "יצילו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תצילו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "נצלן": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "הוצלה": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "מוצלת": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצלנו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "לנצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "הצילו!": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצלתי": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תציל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "אוצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצלתן": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תוצלו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "ניצולת": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- },
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- },
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תוצל": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצילה": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "מצילה": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצילו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "תוצלי": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הצילי!": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "הוצלתן": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "יוצלו": [
- {
- "word_nikkud": "לְהַצִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1243-lehatzil"
- }
- ],
- "להיקנות": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "ק - נ - ה": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "להקנות": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קניון": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנייה": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קנוי": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קניין": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "קניה": [
- {
- "word_nikkud": "לִקְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1913-liknot"
- }
- ],
- "מופסקים": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקתם": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "לפסוק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "יפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסיקי!": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקת": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תופסקו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסק!": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "לפשק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מופסקות": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "לפשוק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מפסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תופסקי": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "פסוק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "פסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקנה!": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקתן": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "אופסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תופסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "פ - ס - ק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקתי": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "פסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מופסקת": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקתם": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "יופסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "פסקה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מפסיקה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מפסיקים": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "נפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "יופסקו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקתן": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסיקו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מפסיקות": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "להפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תפסיקי": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסיקו!": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסיקה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תופסקנה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תפסקנה": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "תפסיקו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "יפסיקו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקנו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקת": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הופסקתי": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "נופסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "להיפסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הפסקנו": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "מופסק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "אפסיק": [
- {
- "word_nikkud": "לְהַפְסִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1657-lehafsik"
- }
- ],
- "הוראיתם": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראית": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "תוראינה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הוראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- },
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "הוראיתי": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראיתן": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מוראות": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "תוראי": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראו!": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "אוראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראתה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "יוראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מראים": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראיתם": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "יוראו": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הוראתה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מוראית": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הוראו": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הוראינו": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מוראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראה!": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "נוראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מראות": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הוראיתן": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "תוראה": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראינה!": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראי!": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הוראית": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראיתי": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראינו": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "תוראו": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "הראו": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מוראים": [
- {
- "word_nikkud": "לְהַרְאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2436-leharot"
- }
- ],
- "מאמינות": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "יואמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמינו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "תואמני": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "תואמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "תאמינו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "א - מ - ן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "תאמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "מאמינה": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמנת": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמנתן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "אמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "תאמנה": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "אמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "נאמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "מואמנות": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "הואמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמנתי": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "תאמיני": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "יאמינו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "הואמנת": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "מאמינים": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמן!": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "יואמנו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "יאמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "אומנם": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "מואמנים": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "מואמנת": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "תואמנו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמינו!": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמינה": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "להתאמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "האמנה!": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "מואמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "תואמנה": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמיני!": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "הואמנתי": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "הואמנתם": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "להאמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "הואמנתן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "מאמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "הואמנה": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "להיאמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "האמנו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "לאמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "אואמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "הואמנו": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "האמנתם": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "אמון": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "אאמין": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "נואמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- }
- ],
- "נאמן": [
- {
- "word_nikkud": "לְהַאֲמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "114-lehaamin"
- },
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "מגינות": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תוגני": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגנתן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "יגנו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תוגנה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "לגון": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "מוגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תגינינה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגני!": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנת": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תוגנינה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגינותם": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגנת": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנו!": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "מוגנות": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגינונו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "נוגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- },
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "הגינותי": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תגנו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגנו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "יוגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תוגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "אוגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגנתי": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "נגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- },
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "יוגנו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "לגנן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגן!": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנתן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תגנה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגנה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנתי": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "להגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "מוגנים": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגינות": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הוגנתם": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגינותן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "יגן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנה!": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "להתגונן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "לגונן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "הגנתם": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "ג - נ - ן": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "מגינה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תוגנו": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תגני": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "מוגנה": [
- {
- "word_nikkud": "לְהָגֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "365-lehagen"
- }
- ],
- "תוציאי": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "יוציאו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מוציאים": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצא!": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תוציא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוציאו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "יוציא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאתי": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תוצאי": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאתן": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוציא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאנו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תוצאנה": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תוציאו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוציאי!": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תוצא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "נוצא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מוציאות": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מוציאה": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוציאה": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאנה!": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "מוציא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאת": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוצאתם": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "הוציאו!": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "יוצאו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "נוציא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "אוצא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "אוציא": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "תוצאו": [
- {
- "word_nikkud": "לְהוֹצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "833-lehotzi"
- }
- ],
- "קורינו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "יקורו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקרים": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקרה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "יקרו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קירתה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קרינה!": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "להיקרות": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קירית": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קוריתי": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קיריתי": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "נקורה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקורינה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקורים": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "אקרה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קיריתם": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקרית": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קורו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קרו!": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "אקראי": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קירו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "אקורה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקרינה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "ק - ר - ה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "יקורה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קיריתן": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קריה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקרו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקרי": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקורו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקורה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "נקרה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקרה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קוריתן": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קורה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קרה!": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קירה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קוריתם": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "לקרות": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקורה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קורתה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקרות": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקורי": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קירינו": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "יקרה": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קרי!": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "מקורות": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קורות": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "קורית": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תקרי": [
- {
- "word_nikkud": "לְקָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2719-lekarot"
- }
- ],
- "תשתות": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתי!": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "תשתתי": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "ישתות": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתן": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שותתים": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "תשתותנה": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתו": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתי": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתות!": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתותנה!": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתנו": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתו!": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שותתת": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתם": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "נשתות": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "לשתות": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "להשתית": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתתה": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "ישתתו": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "תשתתו": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שׁ - ת - ת": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "אשתות": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שתת": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שותתות": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "שותת": [
- {
- "word_nikkud": "לִשְׁתֹּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2340-lishtot"
- }
- ],
- "היכרות": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הוכרתי": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מכירות": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכירו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "יכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תכירי": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "היכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "להינכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "נכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרתן": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרנה!": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרת": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מכירים": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכירי!": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מוכרת": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "הוכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "לנכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרנו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "נ - כ - ר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תכירו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הוכרתם": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרה": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "יכירו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "יוכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכר!": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הוכרה": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "להכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הוכרו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "נוכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תוכרי": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "אכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרתם": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תוכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכירו!": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הוכרנו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תוכרו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תוכרנה": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכיר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "להתנכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכירה": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "הכרתי": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "ניכור": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מוכרות": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "הוכרת": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "אוכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "יוכרו": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מוכר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "הוכרתן": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מוכרים": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "נר": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "תכרנה": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- }
- ],
- "מכירה": [
- {
- "word_nikkud": "לְהַכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "44-lehakir"
- },
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "להזיז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "זזנו": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זוזנה!": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזתן": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזים": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזו": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "אזוז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "יזוזו": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "יזוז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזות": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זוזי!": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזה": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "ז - ו - ז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזזה": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזוזינה": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזת": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזתם": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "נזוז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זזתי": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "תזוזי": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "תזוזו": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זוזו!": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זוזינה!": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "תזוזנה": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "לזוז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזוז": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "זוז!": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- }
- ],
- "תזוזה": [
- {
- "word_nikkud": "לָזוּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "493-lazuz"
- },
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תדאגנה": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגי!": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגו!": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "תדאגי": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "אדאג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דואגים": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דואגת": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "נדאג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגתן": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגנה!": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגתם": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "תדאג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגתי": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "מודאג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "ידאגו": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "ידאג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגה": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגת": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "תדאגו": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגנו": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דואג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "להדאיג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאג!": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "ד - א - ג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דואגות": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "דאגו": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "לדאוג": [
- {
- "word_nikkud": "לִדְאֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "394-lidog"
- }
- ],
- "שילמתם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "משלמות": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "משלמת": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שילמתי": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שלם!": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "משולמים": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "להישלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "לשלום": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שילמנו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שולמת": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שילמת": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "אשולם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שולמה": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשלמו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "תשלמנה": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "תשלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שילמתן": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שולם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "משולם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "להשלים": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שולמתם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשולמנה": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשלום": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמי!": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "משולמת": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "ישולמו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "מושלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלום": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "אשלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "ישלמו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שולמו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשולמו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שלמנה!": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "נשולם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "לשלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "משלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "להשתלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שׁ - ל - ם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "משולמות": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשלמי": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "ישלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שילמה": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שולמנו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שולמתן": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "משלמים": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שילם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שלמו!": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "השתלמות": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "השלמה": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שילמו": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "נשלם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "ישולם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "שלמות": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- },
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- },
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שולמתי": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשולם": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "תשולמי": [
- {
- "word_nikkud": "לְשַׁלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2232-leshalem"
- }
- ],
- "ליישב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישיבה": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "תושב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "להתיישב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "יישוב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "י - שׁ - ב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ישוב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "התיישבות": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "להושיב": [
- {
- "word_nikkud": "לָשֶׁבֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "9-lashevet"
- }
- ],
- "ללמד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימוד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "ל - מ - ד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלמוד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למידה": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למיד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "להילמד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלמיד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למדן": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "להתלמד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "למוד": [
- {
- "word_nikkud": "לִלְמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "41-lilmod"
- },
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- },
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "טיפלה": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלנו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "יטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טפל!": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "נטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטפלות": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטפלים": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "יטופלו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטופל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "לטפול": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "לטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "אטופל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טפלו!": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טפלי!": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטפלי": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטופלת": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפלתם": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפלתן": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "יטופל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "להיטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטופלנה": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפלו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "אטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטופלי": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפלת": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפלנו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטפלנה": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטופלות": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפול": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "ט - פ - ל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטפלת": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלת": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלתן": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטפלו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטופלים": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטפל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלה": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "נטופל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "מטופל": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תטופלו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלתם": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טפלנה!": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טיפלתי": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "טופלתי": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "יטפלו": [
- {
- "word_nikkud": "לְטַפֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "761-letapel"
- }
- ],
- "תתמודדי": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "להתמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מדים": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מתמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדתם": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מ - ד - ד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מדידה": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדת": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "להימדד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדתן": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדות": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדו!": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדה": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מדד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "אתמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מתמודדות": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדו": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדנו": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "תתמודדו": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "יתמודדו": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מתמודדים": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מתמודדת": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "תתמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדתי": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מידתיות": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "תתמודדנה": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מידה": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדי!": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "יתמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודד!": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "התמודדנה!": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "נתמודד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מימד": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "מידתי": [
- {
- "word_nikkud": "לְהִתְמוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2451-lehitmoded"
- }
- ],
- "תחופשי": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "ח - פ - שׂ": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפוש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשנו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "יחפשו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחפשי": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חפשו!": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "יחופש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחופשנה": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחופש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחופשים": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחופשת": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחפשת": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשת": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "יחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשתם": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחפשים": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חפשנה!": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחופש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חפש!": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשתן": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשת": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחופשות": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחפשנה": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "להתחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחופשו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "אחופש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "יחופשו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "נחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "לחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחפושת": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחפשות": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשה": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חפשי!": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "אחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "תחפשו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשנו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "נחופש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשתי": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשתי": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חיפשתם": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשתן": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשו": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "מחפש": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "חופשה": [
- {
- "word_nikkud": "לְחַפֵּשׂ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "663-lechapes"
- }
- ],
- "הודה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודית": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "לידות": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "מודות": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "תודי": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודינה!": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "מודית": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "יודה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודיתן": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודה!": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודתה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודיה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "מודים": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודו!": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "מודה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "תודה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודיתם": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "תודו": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודו": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודיתי": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "תודינה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "להודות": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "אודה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "י - ד - ה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודינו": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "נודה": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודות": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "יודו": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "הודי!": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "ליידות": [
- {
- "word_nikkud": "לְהוֹדוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "788-lehodot"
- }
- ],
- "להיבחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "אבחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "ב - ח - ר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "לבחור": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחר!": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרו!": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בוחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרנו": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "יבחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "תבחרנה": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "תבחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרתם": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "יבחרו": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרתי": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרו": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "נבחר": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרנה!": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בוחרות": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בוחרים": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרתן": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרת": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "תבחרי": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בוחרת": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרה": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "בחרי!": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "תבחרו": [
- {
- "word_nikkud": "לִבְחֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "206-livchor"
- }
- ],
- "פגענו": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעתם": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "תפגעי": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פ - ג - ע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "תפגע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעה": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעתן": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "יפגע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגיעה": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "פגע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פוגעות": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגיע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "לפגוע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "פגע!": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעו": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פוגע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעו!": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעי!": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעתי": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגענה!": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "יפגעו": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פוגעים": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פגעת": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פוגעת": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "פיגוע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "להפגיע": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- },
- {
- "word_nikkud": "לְהִפָּגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1591-lehipagea"
- }
- ],
- "תפגעו": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "תפגענה": [
- {
- "word_nikkud": "לִפְגֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1590-lifgoa"
- }
- ],
- "גלי!": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלינה!": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "ג - ל - ה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "תגלה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "לגלות": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גולים": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "יגלו": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלית": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "להגלות": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלו!": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "להיגלות": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלה!": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "תגלו": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלוי": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גליתן": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "תגלינה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "אגלה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גליתם": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "תגלי": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלתה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלו": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- },
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גליתי": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "גלינו": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "יגלה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "נגלה": [
- {
- "word_nikkud": "לְגַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "333-liglot"
- }
- ],
- "סברה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברנו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברתי": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "יסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מוסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "לסבור": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "נוסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסבירו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסבר!": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "יוסברו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מוסברת": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "סבור": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מסבירים": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברתם": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסתברות": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברת": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברתן": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תסבירו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מוסברות": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "יוסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "סבירות": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברתי": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תוסברנה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "נסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "סביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסבירי!": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "להסתבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסבירו!": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מסבירות": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסבירה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "אסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברתן": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "יסבירו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברת": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תסבירי": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מסבירה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "מוסברים": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברנה!": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הסברתם": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תוסברו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוסברנו": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "אוסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תסברנה": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "להסביר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תוסברי": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "תוסבר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "ס - ב - ר": [
- {
- "word_nikkud": "לְהַסְבִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1305-lehasbir"
- }
- ],
- "הוחזרתם": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "יוחזרו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזיר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזרתן": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מוחזר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזירי!": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "יחזיר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזרנו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזרה": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תוחזרנה": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מוחזרות": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזירו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מחזיר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזר!": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "נוחזר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזרנו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מחזירה": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מוחזרת": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תוחזרו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מחזירים": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזירו!": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מוחזרים": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזרתי": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תחזירו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזרתי": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תחזירי": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "אוחזר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזרת": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "מחזירות": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזרתן": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזירה": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזרו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תוחזר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזרנה!": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "יוחזר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "הוחזרת": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "נחזיר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תוחזרי": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "אחזיר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "החזרתם": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "יחזירו": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תחזיר": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "תחזרנה": [
- {
- "word_nikkud": "לְהַחֲזִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "581-lehachazir"
- }
- ],
- "ה - פ - ך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "להפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "תהפכי": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הופך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "תהפכו": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "תהפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפיכה": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "נהפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכת": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכי!": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכפך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הופכת": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכתי": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכתם": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכה": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפיך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "תהפוכה": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הופכים": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפוכנה!": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפוך!": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "יהפכו": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכנו": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "להיהפך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "להתהפך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "התהפכות": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכו": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכתן": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "יהפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הפכו!": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "מהפכה": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "אהפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "תהפוכנה": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "הופכות": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "היפוך": [
- {
- "word_nikkud": "לַהֲפֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "468-lahafoch"
- }
- ],
- "בורח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחו": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "יברח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחתן": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "בורחים": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחתי": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "לברוח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "יברחו": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "תברחו": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחתם": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ב - ר - ח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "נברח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחנה!": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "תברחי": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "תברח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "תברחנה": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחת": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברח!": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "אברח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "להבריח": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "בורחות": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחי!": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחו!": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחה": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "בורחת": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "ברחנו": [
- {
- "word_nikkud": "לִבְרֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "263-livroach"
- }
- ],
- "לייצר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תיצורנה": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצרתן": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "ליצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תיצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצרה": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יוצרת": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצרי!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצרתם": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "להיווצר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יציר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצור!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יוצר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "היווצרות": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "איצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יוצרים": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצירתיות": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצירה": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "צרו!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "י - צ - ר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרו": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "צור!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצרת": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצירתי": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצרנו": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יוצרות": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "תיצרו": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "ניצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "אצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצרן": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצרו": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "צורנה!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "תוצרת": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצרתי": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "תיצרי": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מוצר": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצור": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "צורה": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצורנה!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "צרי!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- }
- ],
- "יצרו!": [
- {
- "word_nikkud": "לִיצֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "840-litzor"
- },
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תשנה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "השתנות": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "שונה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "שניתן": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שנייה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "שנה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "נשנה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שוני": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "שנינו": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שניתי": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "אשנה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שונות": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שניתם": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שנינה!": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "משונה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשנינה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שינוי": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "לשנות": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשנית": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "שנו": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שׁ - נ - ה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "להישנות": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשני": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שנית": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שנתה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "שונים": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "להשתנות": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "משנה": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשנו": [
- {
- "word_nikkud": "לְשַׁנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2263-lishnot"
- }
- ],
- "עומדות": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמידות": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמוד!": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמיד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "להיעמד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עימוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמדת": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "להעמיד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תעמדו": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "יעמדו": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "נעמוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עומד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמידה": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמדו!": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "ע - מ - ד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תעמודנה": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מועמדות": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמודנה!": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "לעמד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "אעמוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "לעמוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמדה": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמדתי": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עומדים": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמדי!": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "מועמד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמדתם": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עומדת": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמדנו": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמדו": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "תעמדי": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "יעמוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "מעמד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- },
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "עמדתן": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "תעמוד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "עמד": [
- {
- "word_nikkud": "לַעֲמֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "8-laamod"
- }
- ],
- "יושארו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השארתן": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תושאר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "משאיר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארתי": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "ישאירו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השארתם": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "מושארת": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארנו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושאר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "מושאר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "מושארות": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השאר!": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "אושאר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תשאיר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "נשאיר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תשאירי": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השאירו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תושארנה": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארת": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "אשאיר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "משאירה": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארה": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "נושאר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "משאירים": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השארת": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תושארו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תושארי": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השארנו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השאירו!": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארתם": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השאיר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "מושארים": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "הושארתן": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תשאירו": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "ישאיר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השארתי": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "משאירות": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השארנה!": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "יושאר": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השאירה": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "תשארנה": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "השאירי!": [
- {
- "word_nikkud": "לְהַשְׁאִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2125-lehashir"
- }
- ],
- "סיימתן": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסוימות": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "יסיימו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימתי": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "להסתיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימנה!": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "אסיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסיימי": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימת": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "יסיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיים!": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימנו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימה": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "יסוים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימת": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימתי": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימי!": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסוים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסיימנה": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסיימו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסוימי": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסוימנה": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימה": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיומת": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "יסוימו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "תסוימו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיום": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "נסיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "לסיים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "נסוים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסוים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "ס - י - ם": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסיימים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימתם": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסיימת": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסיימות": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימו!": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסוימת": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימתן": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "מסוימים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סוימו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימנו": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "אסוים": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "סיימתם": [
- {
- "word_nikkud": "לְסַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1343-lesayem"
- }
- ],
- "הסתכלתי": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלנו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכל!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלה": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "אסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלנה!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "להסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלת": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "תסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלות": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "תסתכלנה": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "תסתכלו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "מסתכלים": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלי!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "נסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "יסתכלו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלו!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "מסתכלות": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "מסתכלת": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלתן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "סיכול": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "ס - כ - ל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלתם": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "מסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "תסתכלי": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "הסתכלו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "לסכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "יסתכל": [
- {
- "word_nikkud": "לְהִסְתַּכֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1352-lehistakel"
- }
- ],
- "יבוקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בקש!": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשה": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבקשים": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבקשנה": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "נבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבוקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשתן": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "לבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשת": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשתי": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "להתבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "אבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשה": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "נבוקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשנו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבוקשו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשת": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבקשת": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "אבוקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבקשו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "יבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "יבוקשו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבוקשות": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשתן": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבוקשים": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבוקשנה": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ב - ק - שׁ": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "יבקשו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשנו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בקשי!": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בקשנה!": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשתי": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בקשו!": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשתם": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבוקשת": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבוקש": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "ביקשו": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבקשי": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "מבקשות": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "תבוקשי": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "בוקשתם": [
- {
- "word_nikkud": "לְבַקֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "255-levakesh"
- }
- ],
- "אתראה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "מתראים": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראה!": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "יתראה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "תתראו": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראתה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "מתראה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "תתראי": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראי!": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראיתן": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראיתם": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראינו": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "תתראה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראו!": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "יתראו": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "נתראה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראית": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראיתי": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראו": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "תתראינה": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "מתראות": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "התראינה!": [
- {
- "word_nikkud": "לְהִתְרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1974-lehitraot"
- }
- ],
- "פתחה": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "תפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתיחה": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פ - ת - ח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "יפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחתן": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "פתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחו": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "להיפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "התפתחות": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "אפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחים": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "תפתחנה": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "לפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתוח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "תפתחו": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחו!": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחתם": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "פותח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחנה!": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "לפתוח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחת": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "פתחתי": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "תפתחי": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתוח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתח!": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחות": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "להתפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחנו": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- }
- ],
- "מפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פתחי!": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "יפתחו": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחת": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "נפתח": [
- {
- "word_nikkud": "לִפְתֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1747-liftoach"
- },
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "ציפית": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפי!": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "נצפה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "לצפות": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפיה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופית": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופתה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "מצופה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצופו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצפינה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "יצפו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "אצפה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "נצופה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפיתם": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפו!": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצופה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצפית": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "אצופה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "מצפות": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופיתי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפיתן": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "מצופים": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "מצפה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצופינה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפיתי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצפה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "יצופה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפתה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפוי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפה!": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופיתם": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצופי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופיתן": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצפיתן": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפינה!": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "להיצפות": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צופינו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפוי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "מצפים": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צפייה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצפו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "יצפה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "מצופות": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "צ - פ - ה": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "ציפינו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "יצופו": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תצפי": [
- {
- "word_nikkud": "לְצַפּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1828-letzapot"
- }
- ],
- "תירינה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירי!": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "אירה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירו": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יריתי": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירינו": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירית": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "י - ר - ה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "להורות": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יריתם": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "נירה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "תירי": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יורה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יריתן": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יורות": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "תירו": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "להיירות": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "תירה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "תורה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יורים": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירתה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירו!": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירינה!": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "לירות": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירי": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "מורה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יירה": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "יירו": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "ירה!": [
- {
- "word_nikkud": "לִירוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "851-lirot"
- }
- ],
- "שלוחה": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "משלוח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "להישלח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "לשלח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שליחות": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שליח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "להשתלח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "משלחת": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שלוח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "שׁ - ל - ח": [
- {
- "word_nikkud": "לִשְׁלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2220-lishloach"
- }
- ],
- "תחזקנה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקתי": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "להתחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "נחזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מוחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תחזיקו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקתי": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקתן": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מוחזקים": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "ח - ז - ק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תוחזקו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "אחזקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "יחזיקו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תחזוקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מחזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "להחזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תחזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקת": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקתם": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "חוזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "חזקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תוחזקנה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזיקו!": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תוחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזיקי!": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "יוחזקו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזיקו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "לחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקתם": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזק!": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תחזיקי": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מחזיקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מוחזקות": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מחזיקים": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "אוחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "תוחזקי": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "נוחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "יחזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "חיזוק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מחזיקות": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "הוחזקנו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "יוחזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקנו": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקת": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזיקה": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "אחזיק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "לחזוק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקתן": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "מוחזקת": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "החזקנה!": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "חזק": [
- {
- "word_nikkud": "לְהַחְזִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "579-lehachzik"
- }
- ],
- "לוחמה": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "תילחמי": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "הילחמנה!": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "לוחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "לחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "יילחמו": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "לחמניה": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמה": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "מלחמה": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמו": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמות": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "ל - ח - ם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "אלחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "ללחום": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "הילחם!": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "הילחמי!": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "תילחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "להילחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "תילחמו": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמתן": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "הילחמו!": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "לחימה": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "מלחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נילחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "להלחים": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "תילחמנה": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמת": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמים": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "יילחם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמתי": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמנו": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "נלחמתם": [
- {
- "word_nikkud": "לְהִלָּחֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "991-lehilachem"
- }
- ],
- "אועבר": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועבר": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תועברו": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "יועבר": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברתי": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "יועברו": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תועברי": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברת": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מועברות": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברו": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תועברנה": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מועברת": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברתם": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברה": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מועברים": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברנו": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "מועבר": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "תועבר": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "הועברתן": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "נועבר": [
- {
- "word_nikkud": "לְהַעֲבִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1442-lehaavir"
- }
- ],
- "נוסעת": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "ניסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נסעתי": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "סעי!": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "אסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נסיעה": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תיסעי": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נוסעות": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נסעת": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "לנסוע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תיסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "תיסעו": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "הסעה": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "נסעה": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נ - ס - ע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תיסענה": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "ייסעו": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "מסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "סע!": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נסענו": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נסעו": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "מסוע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "סענה!": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נוסעים": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "סעו!": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נסעתם": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "ייסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "להסיע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "נסעתן": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "נוסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- },
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "נסע": [
- {
- "word_nikkud": "לִנְסֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1215-linsoa"
- }
- ],
- "מוודאת": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאתן": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ודאי!": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ו - ד - א": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאה": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאה": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאתי": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "מוודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "מוודאים": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאנו": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ודאי": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "מוודאות": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאתן": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "תוודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאו": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאתי": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ודאו!": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאת": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "בוודאי": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ודא!": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "תוודאנה": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "יוודאו": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "אוודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "נוודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "יוודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ודאנה!": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "לוודא": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "מוודאה": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "ודאות": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאתם": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וודאנו": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאת": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאו": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "תוודאו": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "וידאתם": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "תוודאי": [
- {
- "word_nikkud": "לְוַדֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "479-levade"
- }
- ],
- "תבצעו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצעתם": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "אבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצענו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבצעי": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצעתי": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצעה": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצעת": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "להיבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "להתבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ב - צ - ע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצעו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "יבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבוצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצענו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצעת": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "מבצעת": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "יבוצעו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבצענה": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "מבוצעת": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצעתם": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצעתן": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "מבוצעות": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצעתן": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצעו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבוצעי": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבוצענה": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "אבוצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "נבוצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "מבצעות": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "יבצעו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בצענה!": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "מבוצעים": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "נבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "מבוצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בצעו!": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בצע!": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בוצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "יבוצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "בצעי!": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצעה": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "ביצעתי": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "לבצע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "תבוצעו": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "לבצוע": [
- {
- "word_nikkud": "לְבַצֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "244-levatzea"
- }
- ],
- "אשם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "נישום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תשומנה": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "להשם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שומנה!": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שממתי": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תשומי": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "ישם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שומם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שוממת": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תישמו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תישומנה": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "ישמו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "משמים": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שומו!": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שממו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שׁ - מ - ם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "להישום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תשמו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תשמי": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תישום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "שממתן": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "ישומו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תישמי": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תשום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "לשום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "ישום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שום!": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "אשום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "יישום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "שוממות": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שמם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שממנו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שממת": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "יישמו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- },
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "שוממים": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "נשום": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "להשתומם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שממה": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תשם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שממתם": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "תשומו": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "שומי!": [
- {
- "word_nikkud": "לָשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5529-lashom"
- }
- ],
- "כתבתי": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "לכתב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבת": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "נכתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "הכתבה": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתיבה": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כותבת": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כותב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "מכתב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "אכתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "להתכתב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "תכתובנה": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כיתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "תכתובת": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "תכתבו": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "לכתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כותבים": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתוביות": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתובת": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבתם": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "יכתבו": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתוב!": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כ - ת - ב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבה": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "התכתבות": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתיב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כותבות": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבן": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבו!": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "תכתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבתן": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתובה": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבו": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבי!": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "להיכתב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "יכתוב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתבנו": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "להכתיב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "כתובנה!": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "תכתיב": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "תכתבי": [
- {
- "word_nikkud": "לִכְתֹּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1-lichtov"
- }
- ],
- "הוכחנה!": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "יוכיחו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "י - כ - ח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחתן": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכח!": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכיחה": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "אוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחתי": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכחי": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחתם": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכחת": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "יוכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכיחי": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכיחים": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכיחו!": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכיחה": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכחות": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "להוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכחים": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכחו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחת": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "אוכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "יוכחו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכחנה": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "נוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכיחו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחה": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מוכיחות": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכחנו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכיחי!": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "להיווכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- },
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "הוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "הוכיחו": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "תוכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "יוכיח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "נוכח": [
- {
- "word_nikkud": "לְהוֹכִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "807-lehochiach"
- }
- ],
- "מכרו": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מ - כ - ר": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרתן": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "ימכרו": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "התמכרות": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "תמכור": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "למכור": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "להתמכר": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרו!": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "תמכרו": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרנו": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "ימכור": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרי!": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרה": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכור": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכר": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "אמכור": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכור!": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "ממכר": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "תמכרי": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרתם": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרת": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכרתי": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "להימכר": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "מכורנה!": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "תמכורנה": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "נמכור": [
- {
- "word_nikkud": "לִמְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "43-limkor"
- }
- ],
- "ס - מ - ך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סומכת": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמיכות": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סומך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכנו": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "יסמכו": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "הסמכה": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכי!": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "להסמיך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכות": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "נסמוך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכתם": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סומכים": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכת": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמיכה": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "להיסמך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "תסמכו": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמוך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "אסמוך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "יסמוך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמוך!": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "לסמוך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "מסמך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סומכות": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכו!": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "להסתמך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכתי": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמיך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "תסמוך": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמוכנה!": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכתן": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "תסמכי": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכה": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "סמכו": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "תסמוכנה": [
- {
- "word_nikkud": "לִסְמֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1372-lismoch"
- }
- ],
- "הכן!": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "לכוון": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכינים": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "נכון": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "אכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "נוכן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכינותם": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכינו!": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "להכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הכיני!": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "להיכון": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מוכן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "תכינו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הוכנתם": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הוכן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תוכן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "כונן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "יוכנו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תוכנינה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "נכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "כוננות": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הכינה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכינות": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכינותן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מוכנים": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תוכנו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכנתי": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "לכונן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הוכנו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מכון": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "אוכן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תוכנה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תכינינה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "כיוון": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכינה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "יכינו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "להכווין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכונה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הכנה!": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מכונאי": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכינות": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "להתכוון": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "תכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הוכנה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תכונה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הוכנת": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכנו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "יוכן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תוכני": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תכנה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מכונאות": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "להתכונן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הכינונו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מכונית": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הכנתן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכינו": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מוכנות": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "יכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכינותי": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הוכנתן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "תכיני": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הוכנתי": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מכין": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "מוכנת": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכנתם": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "הכנה": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כ - ו - ן": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- },
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- },
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "הכנת": [
- {
- "word_nikkud": "לְהָכִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "893-lehachin"
- }
- ],
- "עונה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עניתי": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עניתם": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עונים": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ע - נ - ה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "יענו": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענו": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "היענות": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "תענה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענה!": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עונות": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "תעני": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענינה!": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "יענה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענתה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "נענה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "מענה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עינוי": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "להיענות": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "תענית": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "אענה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענינו": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עניין": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- },
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "ענות": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "תענו": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "להתענות": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "לענות": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענו!": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עני!": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עוני": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ענית": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עני": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "תענינה": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "עניתן": [
- {
- "word_nikkud": "לְעַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "40-laanot"
- }
- ],
- "ע - ל - ה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "לעלות": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלתה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עלי!": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עולות": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "להעלות": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עילוי": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "על": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "יעלו": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תעלי": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלה!": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עלו!": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עליונות": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "אעלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלות": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תעלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "יעלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "למעלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מעלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עליה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלינה!": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "העלאה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תעלינה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מעולה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלית": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "להתעלות": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "נעלה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- },
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "עליתם": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "מעלית": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עלינו": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עלו": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עולים": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "תעלו": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עליתי": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עליתן": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "עלון": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עליון": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- },
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "עולה": [
- {
- "word_nikkud": "לַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "26-laalot"
- }
- ],
- "יזקן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנת": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "להזקין": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנתם": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "יזקנו": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנה": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקונים": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "אזקן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "תזקנה": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנו": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "נזקן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנים": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "ז - ק - ן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנות": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "להזדקן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנתי": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "תזקני": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "תזקן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "זקנתן": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "תזקנו": [
- {
- "word_nikkud": "זָקֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6852-zaken"
- }
- ],
- "מונחת": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "נוחות": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "הונחנו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "יניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "נונח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "אונח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנח!": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "נינוח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תונחנה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "תניחי": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "תונחי": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מונח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "יונח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "נוח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "להניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "מנוחה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "הונחתם": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחת": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחתם": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הניחו!": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הונח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחנו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "אניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחנה!": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הונחה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מנוח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תונח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחתי": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחתן": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מניחות": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הונחו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הנחה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "הונחת": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "תניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "תנוחה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "הניח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מונחים": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הניחו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מניחים": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הונחתי": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "לנוח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תונחו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הניחה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "יניחו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "הניחי!": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "יונחו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מניחה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "תניחו": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "מונחות": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "תנחנה": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נ - ו - ח": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחת": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- },
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "הונחתן": [
- {
- "word_nikkud": "לְהַנִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2429-lehaniach"
- }
- ],
- "ירוד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "יורדת": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "יריד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "ירד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "תרד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירדתן": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "תרדי": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "יורד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "רדנה!": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירדה": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירדתי": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "רד!": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירדתם": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירידה": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "יורדות": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "י - ר - ד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "ירדנו": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "לרדת": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- },
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "רדי!": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "תרדנה": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "יורדים": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירדת": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "ירדו": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "רדו!": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "תרדו": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "נרד": [
- {
- "word_nikkud": "לָרֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "848-laredet"
- }
- ],
- "מזמנת": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמני!": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "הזמנה": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "זומנה": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "לזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "זימנתן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תזומני": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זומנו": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "יזומן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תזמנו": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זומן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זומנתם": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "מזומנות": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "מזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "מזומנת": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמנו!": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "אזומן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זימנתי": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמנה!": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תזומן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תזומנו": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמן!": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "מזומנים": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זימנה": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "יזמנו": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מזמנים": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמני": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "להזמין": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "זומנתי": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זימנו": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "יזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זומנתן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זימנת": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תיזמון": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "נזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זמינות": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "זמין": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזדמנות": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תזמנה": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "לתזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מזומן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "יזומנו": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "להזדמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "אזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "מזמנות": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זומנת": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תזומנה": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זימנתם": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "ז - מ - ן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תזמן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "זימון": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- },
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "זימן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "נזומן": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "תזמני": [
- {
- "word_nikkud": "לְזַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "508-lezamen"
- }
- ],
- "בנינו": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בני!": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנו!": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנו": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנוי": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בונים": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בונה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "להבנות": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "ב - נ - ה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנתה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "יבנה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "לבנות": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בניתי": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "תבנו": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בניתם": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בניתן": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "תבנינה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנית": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנה!": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "תבני": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בנינה!": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "בונות": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "יבנו": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "מובנה": [
- {
- "word_nikkud": "לִבְנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "234-livnot"
- }
- ],
- "ביקורתי": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרנו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרתי": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרתם": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרת": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבוקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבוקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "נבקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבוקרו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרה": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבקרו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "נבוקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבקרות": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "יבוקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בקרנה!": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "אבקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרתם": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבוקרים": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרתן": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבקרי": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבקרת": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בקרו!": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "יבקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבוקרת": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרה": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרתי": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "יבוקרו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרתן": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בקרי!": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בקר!": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבוקרי": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בוקרת": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבוקרנה": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבקרים": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "מבוקרות": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "אבוקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "בקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "יבקרו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ביקרנו": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "ב - ק - ר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "לבקר": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "תבקרנה": [
- {
- "word_nikkud": "לְבַקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "254-levaker"
- }
- ],
- "הורדה": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "יורדו": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורד": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורדות": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תורדו": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורד": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "הורדו": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "נורד": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תורד": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורדים": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תורדי": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "מורדת": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "אורד": [
- {
- "word_nikkud": "לְהוֹרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "849-lehorid"
- }
- ],
- "תבלו": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "תבלה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "תבלי": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "אבלה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "יבלה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "לבלות": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "תבלינה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "יבלו": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "ב - ל - ה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "נבלה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בולה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלה!": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלו!": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "להתבלות": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בולות": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלית": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלתה": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלינו": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלו": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בליתי": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בליתם": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלי!": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בליתן": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "בלינה!": [
- {
- "word_nikkud": "לְבַלּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2736-livlot"
- }
- ],
- "מוכנסת": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסה": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מוכנסות": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מוכנס": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסת": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "אוכנס": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "יוכנס": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מוכנסים": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "יוכנסו": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תוכנס": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "נוכנס": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסנו": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסתם": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסו": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תוכנסנה": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנס": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תוכנסו": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסתן": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "תוכנסי": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "הוכנסתי": [
- {
- "word_nikkud": "לְהַכְנִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "919-lehachnis"
- }
- ],
- "מאבדת": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "מאבדות": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדנו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "לאבוד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תאובדי": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדתן": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אבדי!": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תאובדנה": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדתם": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "יאובדו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אבוד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "אבדה": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "אבדו!": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תאבדו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדת": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדה": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תאובד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "מאובד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובדנו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אבדנה!": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "יאובד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תאבדנה": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "א - ב - ד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תאובדו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אבד!": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובדתן": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובדו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "יאבדו": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תאבדי": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "יאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "נאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "לאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "מאובדת": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובדתם": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "מאובדות": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובדת": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אובדה": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "להתאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "אובדתי": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "להאביד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "מאובדים": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "אאובד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "נאובד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "להיאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- },
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "אאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "מאבד": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "איבדתי": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "מאבדים": [
- {
- "word_nikkud": "לְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "58-leabed"
- }
- ],
- "תגור": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "להתגורר": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גורינה!": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גר": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרתם": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "ג - ו - ר": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "תגורי": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "אגור": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרנו": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרת": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרתי": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גורו!": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרתן": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "יגור": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרות": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרו": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גור!": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "תגורו": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "תגורינה": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "יגורו": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "תגורנה": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרה": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "לגור": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "נגור": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גורנה!": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גרים": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "גורי!": [
- {
- "word_nikkud": "לָגוּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4-lagur"
- }
- ],
- "הצטרפה": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "יצטרפו": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "אצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפי!": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפנה!": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרף!": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "לצרוף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפתי": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפתם": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "יצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "תצטרפי": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפו!": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "מצטרפות": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "נצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "מצטרפים": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "צ - ר - ף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפתן": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "צריף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "תצטרפנה": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפו": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "מצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "מצטרפת": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפת": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "צירוף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "לצרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "תצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "תצטרפו": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "להצטרף": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "הצטרפנו": [
- {
- "word_nikkud": "לְהִצְטָרֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1844-lehitztaref"
- }
- ],
- "להרוס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסו": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "תהרסו": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "יהרסו": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "אהרוס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסנו": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הורסות": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסה": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "יהרוס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרוס!": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "להיהרס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "תהרוסנה": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסתם": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסת": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הורס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסי!": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "תהרוס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "תהרסי": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסני": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הורסים": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסתי": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסתן": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הריסה": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הורסת": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרוסנה!": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "ה - ר - ס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "נהרוס": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "הרסו!": [
- {
- "word_nikkud": "לַהֲרֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "477-laharos"
- }
- ],
- "התחתן!": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "יתחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנה": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "תתחתנה": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנתם": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "אתחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "חתונה": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "ח - ת - ן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "נתחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "תתחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "מתחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתני!": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "תתחתנו": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "להתחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "מתחתנת": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנה!": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנו": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנו!": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "מתחתנות": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "לחתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "תתחתני": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנתי": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "התחתנת": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "חתן": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "מתחתנים": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "יתחתנו": [
- {
- "word_nikkud": "לְהִתְחַתֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "724-lehitchaten"
- }
- ],
- "להתאסף": [
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "א - ס - ף": [
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "להיאסף": [
- {
- "word_nikkud": "לֶאֱסֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "128-leesof"
- }
- ],
- "הוקשבנו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשב!": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבנו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשיבו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבת": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תוקשבנה": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "נקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תוקשבו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "קשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשבתי": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תוקשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשיבו!": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשבתן": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מוקשבת": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מוקשבים": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשבו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשיבי!": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבה": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מקשיבה": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תקשיבי": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מקשיבות": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "אוקשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבתם": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מוקשבות": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תקשבנה": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "יוקשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבתי": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "קשוב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבתן": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "יקשיבו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תוקשבי": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשיבה": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "יוקשבו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "ק - שׁ - ב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשבה": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשבתם": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מוקשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הוקשבת": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "מקשיבים": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "להקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "יקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תקשיבו": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "הקשבנה!": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "נוקשב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "אקשיב": [
- {
- "word_nikkud": "לְהַקְשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1961-lehakshiv"
- }
- ],
- "תוחלפנה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מחליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מחליפים": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפתם": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מוחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "חילוף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפת": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "אחליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפתן": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפתי": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "אוחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "חילופי": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "חלופה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "נוחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "חלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "יוחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תוחלפי": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תוחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החליפו!": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מחליפות": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפתי": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "יחליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "יחליפו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מוחלפת": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תחלפנה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "חליפה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפנו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החליפה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מוחלפות": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפת": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "יוחלפו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפנה!": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תוחלפו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תחליפו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תחלופה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תחליפי": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החליפי!": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "להתחלף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "חלופי": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפתם": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החליפו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "להחליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תחליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "לחלוף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "הוחלפה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלף!": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "ח - ל - ף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מוחלפים": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "מחליפה": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפנו": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "החלפתן": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "נחליף": [
- {
- "word_nikkud": "לְהַחֲלִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "608-lehachalif"
- }
- ],
- "תציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "יציעו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מוצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "אוצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "אציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצעתן": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצעו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הציעי!": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצעה": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצענה!": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מוצעת": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצעתם": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תוצעו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מציעים": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצעתם": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מציעה": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תוצענה": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "יוצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "י - צ - ע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תוצעי": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מציעות": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תציעו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצעת": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "היצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצעת": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "יוצעו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצע!": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "נציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מוצעות": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הציעו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הציעו!": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצעתן": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תציעי": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצענו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תצענה": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצענו": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מוצעים": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצעה": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "להציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הצעתי": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הציעה": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "מציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצעתי": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "תוצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "יציע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "נוצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "הוצע": [
- {
- "word_nikkud": "לְהַצִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "871-lehatzia"
- }
- ],
- "להרקיד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רוקדות": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "לרקוד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדתן": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדת": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רוקד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "ר - ק - ד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "נרקוד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדן": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "ירקוד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדתם": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "תרקוד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "ריקוד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדי!": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדה": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "תרקודנה": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "תרקדו": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "ירקדו": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רוקדים": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקודנה!": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקיד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדו": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדתי": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדו!": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "ארקוד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רוקדת": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "לרקד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקד": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקוד!": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "תרקדי": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "רקדנו": [
- {
- "word_nikkud": "לִרְקֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "38-lirkod"
- }
- ],
- "אהוב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהב!": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אוהבות": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבי!": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבתן": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "תאהבי": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבת": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבנו": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "מאוהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "נאהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אאהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אוהבת": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבו": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבתי": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "יאהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "תאהבנה": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "לאהוב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבתם": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבנה!": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "להיאהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "יאהבו": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "תאהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אוהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "א - ה - ב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "תאהבו": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אהבו!": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "להתאהב": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "אוהבים": [
- {
- "word_nikkud": "לֶאֱהֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "67-leehov"
- }
- ],
- "מירוץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "רוצינה!": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "תרוצו": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצות": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רוצו!": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצתי": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצת": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצה": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "מריצה": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "ריצה": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "רצתם": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "להריץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "רוץ!": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "לרוץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "רצתן": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רוצי!": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצו": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "ירוצו": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "מרוצה": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "תרוץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "להתרוצץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "ירוץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "נרוץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "ארוץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "תרוצנה": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצנו": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "תרוצינה": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "ר - ו - ץ": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- },
- {
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
- }
- ],
- "רוצנה!": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "רצים": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "תרוצי": [
- {
- "word_nikkud": "לָרוּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "11-larutz"
- }
- ],
- "אאתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "נאתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאותרות": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "יאתרו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "א - ת - ר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרת": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "יאותרו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרתם": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אתר!": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרנו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרתי": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרתי": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "נאותר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאותרנה": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאתרים": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אתרי!": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "לאתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאתרו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאותרת": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרת": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרתן": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "יאתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אתרנה!": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרנו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאתרת": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאתרנה": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאתרי": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "יאותר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאותרים": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרתם": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "איתרה": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרתן": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אותרה": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאותרו": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאותרי": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אתרו!": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאותר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "אאותר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מאתרות": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "תאותר": [
- {
- "word_nikkud": "לְאַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "166-leater"
- }
- ],
- "מוזמנות": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמנתן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מזמין": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "יזמינו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תוזמנה": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמנת": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "יוזמן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמנתם": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "נוזמן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מוזמנים": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מזמינים": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תוזמנו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמן!": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מוזמנת": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמנתי": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תזמינו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמינו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "אזמין": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמינו!": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תוזמן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מזמינות": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תוזמני": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמינה": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תזמיני": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמנו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמנה!": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמנתם": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "יזמין": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "יוזמנו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מוזמן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמנה": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמנו": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "נזמין": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "אוזמן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמנת": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "מזמינה": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמיני!": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "תזמין": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמין": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הוזמנתן": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "הזמנתי": [
- {
- "word_nikkud": "לְהַזְמִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "509-lehazmin"
- }
- ],
- "נשוחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררתי": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משחררים": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשוחררו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שיחרור": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "שחררו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "אשחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "לשחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "ישוחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שׁ - ח - ר - ר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "תשחררו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררנו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "להשתחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- },
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "משחררות": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "נשחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשוחררנה": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררת": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררתם": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררתם": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררה": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "ישחררו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררי!": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררתן": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשוחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "ישוחררו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משוחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשחררי": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררתן": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררנה!": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררתי": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משחררת": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משוחררים": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררה": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשחררנה": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררו!": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תשוחררי": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררת": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחררנו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "ישחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שחרר!": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משוחררות": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "שוחררו": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "אשוחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משוחררת": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "משחרר": [
- {
- "word_nikkud": "לְשַׁחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2176-leshachrer"
- }
- ],
- "תיראו": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראו": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ייראו": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "היראי!": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "תיראינה": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראיתן": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "היראינה!": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ניראה": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "היראו!": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראות": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "איראה": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "תיראי": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראים": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "ייראה": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראתה": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראינו": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "תיראה": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראיתי": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראיתם": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "היראה!": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "נראית": [
- {
- "word_nikkud": "לְהֵרָאוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1973-leheraot"
- }
- ],
- "חיבור": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "ח - ב - ר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חוברנו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "תחובר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "מחוברת": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חיברתם": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "מחברים": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חברו!": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חיברו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חוברתם": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "תחברי": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חברותי": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חברתי": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חיבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "מחברת": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "מחוברים": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חוברתי": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חוברתן": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חיברתי": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "תחברו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חוברה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חיברה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חובר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "נחובר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חוברו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חברנה!": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חיברתן": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "מחברות": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "מחובר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "אחובר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "תחוברי": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "התחברות": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חיברנו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חבר!": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חברי!": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חבורה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תחביר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תחבורה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תחוברנה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "לחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חיברת": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "יחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "להתחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חוברת": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "מחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "יחוברו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "מחוברות": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "יחובר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "להחביר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "לחבור": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "אחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "נחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "תחוברו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "תחברנה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "יחברו": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "חברה": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "חבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- },
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תחבר": [
- {
- "word_nikkud": "לְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "551-lechaber"
- }
- ],
- "שׁ - כ - ח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "תשכחו": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שוכחת": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שוכחים": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "תשכחנה": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחנה!": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "להשתכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "תשכחי": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחתן": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחה": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "ישכחו": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "לשכוח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "נשכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכח!": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחת": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "ישכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שוכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "להישכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחנו": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכיח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שוכחות": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחתי": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "להשכיח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחי!": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכיחות": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחתם": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "תשכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכוח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחו!": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכחו": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "אשכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "שכח": [
- {
- "word_nikkud": "לִשְׁכֹּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "36-lishkoach"
- }
- ],
- "להיזרק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקתן": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקו": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקה": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "יזרקו": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "תזרוקנה": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקי!": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "מזרקה": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקנו": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "אזרוק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקתי": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "נזרוק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "ז - ר - ק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרוק!": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקו!": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זריקה": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זורק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "תזרקו": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "יזרוק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרוקנה!": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זורקת": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "תזרקי": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקת": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "תזרוק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זרקתם": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זורקות": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "זורקים": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "לזרוק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "להזריק": [
- {
- "word_nikkud": "לִזְרֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "37-lizrok"
- }
- ],
- "שלטת": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטו!": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שולט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "תשלטי": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלוט!": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שׁ - ל - ט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "לשלוט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "שולטים": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שולטות": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שליטה": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "שלטוני": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "שילוט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "שלטון": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "להישלט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטות": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "שליט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "תשלטו": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "תשלוטנה": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "נשלוט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטתן": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלוטנה!": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטו": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "אשלוט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטתי": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטתם": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטנו": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטה": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלטי!": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "לשלט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "שולטת": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "להשליט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "להשתלט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "תשלוט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "שלט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- },
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "ישלטו": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "ישלוט": [
- {
- "word_nikkud": "לִשְׁלֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2223-lishlot"
- }
- ],
- "נותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ותרנה!": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "מוותרת": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "נוותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "להותיר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרתם": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "תוותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרתם": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרה": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "לוותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "תוותרנה": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "מוותרים": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרתי": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרתן": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרנו": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ותר!": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ותרי!": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרת": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "מוותרות": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרו": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ותרו!": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "יוותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרתי": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ו - ת - ר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרה": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרו": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "וותרת": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרתן": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "מוותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "תוותרו": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "אוותר": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "יוותרו": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתרנו": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "ויתור": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "תוותרי": [
- {
- "word_nikkud": "לְוַתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "481-levater"
- }
- ],
- "פונות": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנאי": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "תפנית": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנו!": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פונה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פני!": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנה!": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנוי": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנינה!": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פניה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנייה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פניתי": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנתה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פינוי": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "להיפנות": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנינו": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנית": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "לפנות": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פינה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פניתם": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "להתפנות": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פנו": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פונים": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פ - נ - ה": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "פניתן": [
- {
- "word_nikkud": "לְפַנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1640-lifnot"
- }
- ],
- "לשכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משוכנעת": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשוכנעי": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעת": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שׁ - כ - נ - ע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שיכנוע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשכנענה": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעה": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנענו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "נשוכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משוכנעות": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "ישכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משוכנעים": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנעתן": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשכנעי": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "אשוכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "נשכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "ישוכנעו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "להשתכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנעו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשוכנעו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעי!": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משכנעות": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משוכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעתן": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "ישכנעו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעתי": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעו!": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנע!": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשכנעו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנעתם": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנענו": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשוכנענה": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנעתי": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משכנעים": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "ישוכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנעת": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שוכנעה": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנעתם": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "משכנעת": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "שכנענה!": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "אשכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "תשוכנע": [
- {
- "word_nikkud": "לְשַׁכְנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2205-leshachnea"
- }
- ],
- "ניקיתם": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ינוקו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "מנקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקית": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקיתם": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנקו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "להתנקות": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "אנקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "מנוקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "לנקות": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ינוקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נקה!": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נקינה!": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "מנקות": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ינקו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נקי": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקוי": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנוקינה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקיתי": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנוקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנקי": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקיתן": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נקו!": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נקי!": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנקינה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נ - ק - ה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקיתי": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "מנוקות": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקיון": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקית": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקינו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "אנוקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ינקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקתה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקיתן": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ננקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ננוקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "מנקים": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "מנוקים": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנוקי": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נוקה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקינו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "תנוקו": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "ניקתה": [
- {
- "word_nikkud": "לְנַקּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1252-lenakot"
- }
- ],
- "נפגש": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשת": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "ניפגש": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "תיפגשו": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשים": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "תיפגשנה": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשה": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשו": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "אפגש": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "תיפגש": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "היפגשו!": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשתם": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "היפגשנה!": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "ייפגשו": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "תיפגשי": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "היפגש!": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "היפגשי!": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשנו": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשתי": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "ייפגש": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשתן": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "נפגשות": [
- {
- "word_nikkud": "לְהִפָּגֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1593-lehipagesh"
- }
- ],
- "דמייני!": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדומיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "אדמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיינתם": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדומייני": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדמיינה": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדומיינות": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינת": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדמיינים": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינו": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיינתי": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "ידמיינו": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "אדומיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "נדומיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיינת": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדמייני": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "לדמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדמיינת": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינתי": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינה": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "ידומיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיינה": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדומיינו": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדומיינה": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדומיינת": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדומיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "תדמיינו": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינה!": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדמיינות": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינתם": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינו!": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "נדמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיינתן": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "ידמיין": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "ידומיינו": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיינתן": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "מדומיינים": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "ד - מ - י - ן": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דמיין!": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "דומיינו": [
- {
- "word_nikkud": "לְדַמְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "427-ledamyen"
- }
- ],
- "לובשות": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשה": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "להלביש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "ל - ב - שׁ": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "לבשתם": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשי!": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבש!": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "ללבוש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "תלבשו": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "הלבשה": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "תלבשי": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "נלבש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבוש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "לבשתן": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "אלבש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשו": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשנו": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לובש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "תלבשנה": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשו!": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "ילבשו": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לובשת": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "תלבושת": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- },
- {
- "word_nikkud": "לְהִתְלַבֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "974-lehitlabesh"
- }
- ],
- "לבשנה!": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לובשים": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "ילבש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשת": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "לבשתי": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "תלבש": [
- {
- "word_nikkud": "לִלְבֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "973-lilbosh"
- }
- ],
- "תורשי": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "יורשו": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תורשה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- },
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "רשות": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "מורשות": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "מורשים": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשו": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "יורשה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשיתי": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "נורשה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "רישוי": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "רישיון": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "מורשה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשתה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשיתם": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "אורשה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "ר - שׁ - ה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשינו": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשית": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "הורשיתן": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תורשו": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "מורשית": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תורשינה": [
- {
- "word_nikkud": "לְהַרְשׁוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2101-leharshot"
- }
- ],
- "תזכור": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זיכרון": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "יזכור": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זוכרים": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכרי!": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "להיזכר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "מזכיר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "זכרתן": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכרה": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכירה": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "זכור!": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זוכרות": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכרו": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "מזכר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "תזכרי": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכור": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "זוכרת": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "מזכרת": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "זכרנו": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכרת": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "תזכורנה": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זוכר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "זכרו!": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכורנה!": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "מוזכר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "לזכור": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "אזכרה": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "זכרתם": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "הזכרה": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכור": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "יזכרו": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "זכרתי": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "תזכרו": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- }
- ],
- "ז - כ - ר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "להזכיר": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "תזכורת": [
- {
- "word_nikkud": "לִזְכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "34-lizkor"
- },
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- },
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "להגניב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבנו": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבו!": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גונבת": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבתם": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבת": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "נגנוב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "ג - נ - ב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "לגנוב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבתי": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גונב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גונבות": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "אגנוב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנובנה!": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבה": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנוב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבתן": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "להיגנב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "יגנבו": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבי!": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "להתגנב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "יגנוב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גונבים": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "תגנבו": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנוב!": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "תגנבי": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "תגנובנה": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "גנבו": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "תגנוב": [
- {
- "word_nikkud": "לִגְנֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "353-lignov"
- }
- ],
- "הירגע!": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נרגעתי": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "הירגעי!": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נרגעה": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "רגוע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "נרגעתם": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נרגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "להרגיע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "נרגעים": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "רגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "ר - ג - ע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הירגענה!": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "רוגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תירגעי": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "אירגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "הירגעו!": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "להירגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "נרגעתן": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נרגעות": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "תירגענה": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "יירגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נרגעת": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נירגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "הרגעה": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- },
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "נרגעו": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "תירגע": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "תירגעו": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "נרגענו": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "יירגעו": [
- {
- "word_nikkud": "לְהֵרָגֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1990-leheragea"
- }
- ],
- "תסגרי": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "יסגרו": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגור!": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סוגרות": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סוגרים": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרתן": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגור": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגירה": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "לסגור": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "תסגרו": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגורנה!": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "הסגר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "הסגרה": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרו!": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סוגר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "להיסגר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרתי": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "אסגור": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרי!": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרת": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "ס - ג - ר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סוגרת": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "להסגיר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "מסגר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "תסגור": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרו": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרה": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "להסתגר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "מסגרת": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרנו": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "נסגור": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "תסגורנה": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגר": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "סגרתם": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "יסגור": [
- {
- "word_nikkud": "לִסְגֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1314-lisgor"
- }
- ],
- "תיגעו": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "תיגענה": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "געי!": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "געו!": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגענו": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "גע!": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "גענה!": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "ייגעו": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "תיגע": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "לנגוע": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגעה": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "תיגעי": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "אגע": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נוגעת": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "ייגע": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגעתי": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגעת": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגעתם": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "ניגע": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגעתן": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נוגעות": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נוגעים": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "נגעו": [
- {
- "word_nikkud": "לָגַעַת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1140-lagaat"
- }
- ],
- "תמנעי": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "ימנעו": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנעי!": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "תמנעו": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "להימנע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "מנענו": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנעתי": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "נמנע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "מנעתן": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "תמנע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "תמנענה": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "הימנעות": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "למנוע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "מ - נ - ע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "מנענה!": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנעו": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנעתם": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנעו!": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מניעה": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "אמנע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- },
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "מנעה": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מונעים": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "ימנע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מונעות": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנעת": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מנע!": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מונעת": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "מונע": [
- {
- "word_nikkud": "לִמְנֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1068-limnoa"
- }
- ],
- "הציגו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תציגי": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תציגו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגנה!": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מוצגים": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגתי": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "לייצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "צג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "אוצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "יוצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תצוגה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מציגים": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מוצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מוצגת": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מציגה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגתם": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תוצגי": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מיצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגתן": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגתן": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מצגת": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תצגנה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "י - צ - ג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "ייצוג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תוצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הציגה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "להציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "נציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגתי": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הציגו!": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגת": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגתם": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "נוצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "אציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תוצגנה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצג!": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הציגי!": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "יציג": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "יציגו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מוצגות": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגנו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "יוצגו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "מציגות": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגת": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "תוצגו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הצגנו": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "הוצגה": [
- {
- "word_nikkud": "לְהַצִּיג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "870-lehatzig"
- }
- ],
- "בטחתם": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "בטחה": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "בטחנו": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "ב - ט - ח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "תבטחו": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "תבטחי": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "יבטחו": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "לבטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מובטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטחנה!": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטחתן": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "בטחו": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "תבטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטחו!": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטחת": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "לבטוח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "אבטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטוח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחות": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "בטחי!": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחים": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "בטח!": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחת": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בטחתי": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- }
- ],
- "נבטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "יבטח": [
- {
- "word_nikkud": "לִבְטֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "211-livtoach"
- },
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "נוהגים": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נוהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "ינהגו": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "אנהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגנה!": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגתם": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהג!": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "תנהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "תנהגו": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "תנהגי": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "מנהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נוהגות": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהוג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נהגתן": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגו": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגת": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "תנהגנה": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "התנהגות": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "מנהיג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נוהגת": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "ננהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגתי": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגו!": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהגי!": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "ינהג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נהיגה": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "לנהוג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נהגה": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "להנהיג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "נהגנו": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- }
- ],
- "נ - ה - ג": [
- {
- "word_nikkud": "לִנְהֹג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1153-linhog"
- },
- {
- "word_nikkud": "לְהִתְנַהֵג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1155-lehitnaheg"
- }
- ],
- "מורמים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "יורמו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמנה!": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תרימו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורמתן": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תרימי": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תורמי": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "יורם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמנו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "ארים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- },
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "הורמתם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תורמו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימותן": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורמו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימו!": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "להתרומם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מורמות": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "ירים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמת": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימותם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמתן": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תרים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מרימות": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תורמנה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מרים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורמה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "נורם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימותי": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מרימים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תורם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "רמה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- },
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "הרימות": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורמנו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מרום": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "ר - ו - ם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "לרומם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורמת": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "להרים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימי!": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הורמתי": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "רם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תרימינה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "אורם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמתי": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "ירימו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תרמנה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרם!": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תרומה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "נרים": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "תורמינה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרמתם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מורמת": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מרימה": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "מורם": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "הרימונו": [
- {
- "word_nikkud": "לְהָרִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2414-leharim"
- }
- ],
- "שוקרתם": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרנו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשוקרו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "נשקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "ישוקרו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שקרן": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשוקרי": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקרת": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שקרי!": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "לשקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקרתן": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משקרות": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משוקרות": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשוקרנה": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משקרת": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שקרנה!": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקרתי": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שקר!": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "ישקרו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקרה": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משקרים": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "נשוקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשקרי": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "ישוקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרתם": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משוקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משוקרת": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרה": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשקרו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקרו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשוקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרת": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שׁ - ק - ר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שקרו!": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "אשוקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "תשקרנה": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרתי": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שוקרנו": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "שיקרתן": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משוקרים": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "ישקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "אשקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "משקר": [
- {
- "word_nikkud": "לְשַׁקֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2311-leshaker"
- }
- ],
- "לשיר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שירה": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרת": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "תשירינה": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרתם": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "נשיר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרתי": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שייר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שׁ - י - ר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "אשיר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "ישירו": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרו": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "תשירו": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שיור": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שירו!": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שיר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרים": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שיר!": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "מושר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "לשורר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שירינה!": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "תשיר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "תשרנה": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרות": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרנה!": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרה": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרנו": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "תשירי": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "ישיר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שירי!": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שר": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "שרתן": [
- {
- "word_nikkud": "לָשִׁיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5-lashir"
- }
- ],
- "יובטח": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחת": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "נובטח": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחתן": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "מובטחים": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "אובטח": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחתם": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחתי": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחה": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "מובטחת": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תובטחו": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטח": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחנו": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "מובטחות": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תובטחנה": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "הובטחו": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "יובטחו": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תובטח": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "תובטחי": [
- {
- "word_nikkud": "לְהַבְטִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "213-lehavtiach"
- }
- ],
- "שכבתם": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכב!": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "תשכבי": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "לשכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "להשכיב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "נשכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "משכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שׁ - כ - ב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שוכבים": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "תשכבו": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבנה!": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "אשכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שוכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "להישכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבנו": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבה": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "ישכבו": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבו": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבתי": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "תשכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "ישכב": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבו!": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שוכבות": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "תשכבנה": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבתן": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבת": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שכבי!": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "שוכבת": [
- {
- "word_nikkud": "לִשְׁכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "10-lishkav"
- }
- ],
- "לומדו": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "נלומד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדה": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלמדים": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "אלומד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדתי": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדה": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלמדת": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלומד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדו": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלמדות": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "ילומדו": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדת": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלומדי": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדתם": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדנו": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלומדות": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדתם": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלומדת": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדתי": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלומד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לומדתן": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "ילומד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלמד": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדתן": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "מלומדים": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלומדו": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "לימדנו": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "תלומדנה": [
- {
- "word_nikkud": "לְלַמֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "42-lelamed"
- }
- ],
- "סודרה": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידור": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "סדרנה!": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "תסודרו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "תסודר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודרת": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "מסדרים": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "להסדיר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "נסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "מסודרים": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "יסדרו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סדיר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "סדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "סידורי": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "ס - ד - ר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסודר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "מסודרות": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "נסודר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידרנו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודרנו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודרתן": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודרתם": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידרת": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "תסודרי": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סדרן": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "סידרו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "מסודרת": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "יסודר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "הסתדרות": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תסדרו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "יסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סדרי!": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידרה": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "תסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידרתן": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "תסדרנה": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידרתי": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודרתי": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "לסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תסודרנה": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "אסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "אסודר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "מסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודרו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "הסדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסדרות": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "תסדרי": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סדרה": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "סדר!": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סדרו!": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סידרתם": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "סודר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "להסתדר": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסדרון": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- },
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסדרת": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "יסודרו": [
- {
- "word_nikkud": "לְסַדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1320-lesader"
- }
- ],
- "נשומנה!": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמתן": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "ננשום": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמו!": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תנשמי": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "הנשמה": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תנשמו": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נושמים": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמתי": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמנו": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נ - שׁ - ם": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תנשומנה": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמת": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "ינשום": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "ינשמו": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "להתנשם": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמתם": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמי!": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נושם": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תנשום": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "לנשום": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמו": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשום!": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "להנשים": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשמה": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נושמות": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נשימה": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "אנשום": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "נושמת": [
- {
- "word_nikkud": "לִנְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1273-linshom"
- }
- ],
- "תעקבי": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עוקב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "תעקבו": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבו": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "תעקובנה": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עוקבים": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקוב!": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "תעקוב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקוב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבתם": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עוקבת": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקובנה!": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "מעקב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "יעקוב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "לעקוב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבתי": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "נעקוב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבתן": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבי!": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבה": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עוקבות": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "אעקוב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבת": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "ע - ק - ב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבנו": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקב": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "עקבו!": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "יעקבו": [
- {
- "word_nikkud": "לַעֲקֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1544-laakov"
- }
- ],
- "החלטה": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטנו": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "חילוט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטה": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטתן": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "לחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "אוחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תוחלטו": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטת": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "החלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "נוחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מוחלטת": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "ח - ל - ט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מוחלטות": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטתם": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "יוחלטו": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטו": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "יוחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "לחלוט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "לחלוטין": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מוחלטים": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "מוחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "הוחלטתי": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תוחלטי": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תוחלטנה": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "תוחלט": [
- {
- "word_nikkud": "לְהַחְלִיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "603-lehachlit"
- }
- ],
- "קופץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "תקפוץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "אקפוץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "יקפצו": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "תקפצי": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצתן": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצנו": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצו!": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצה": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצת": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפוצנה!": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "תקפצו": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "ק - פ - ץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "לקפוץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצתי": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קופצים": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפיץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "לקפץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצתם": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "יקפוץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קופצת": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפיצה": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "מוקפץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "נקפוץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "תקפוצנה": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קופצות": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצו": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפצי!": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "קפוץ!": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "להקפיץ": [
- {
- "word_nikkud": "לִקְפֹּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1931-likpotz"
- }
- ],
- "נוהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ינוהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "אנוהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ננוהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנוהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנוהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנוהלת": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלת": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנוהלות": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלתן": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנוהלו": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלו": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "להתנהל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נ - ה - ל": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלתי": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלה": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "התנהלות": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "מנוהלים": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלתם": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנוהלנה": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ינוהלו": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "תנוהלי": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "נוהלנו": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "ניהול": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "הנהלה": [
- {
- "word_nikkud": "לְנַהֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1156-lenahel"
- }
- ],
- "אסבול": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "לסבול": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סובל": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלי!": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלתי": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלנו": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "יסבול": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבל": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבולנה!": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "תסבלו": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סובלת": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סובלים": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלה": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "יסבלו": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "נסבול": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבול!": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "תסבלי": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "ס - ב - ל": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלתם": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלו": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "תסבולנה": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלנות": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "תסבול": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלת": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלו!": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלתן": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סבלן": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "סובלות": [
- {
- "word_nikkud": "לִסְבֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1301-lisbol"
- }
- ],
- "התנצלו!": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלת": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצל": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצל!": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "תתנצלו": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "אתנצל": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "יתנצל": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלנה!": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלו": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "נתנצל": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "תתנצלנה": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלתן": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלנו": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "מתנצלות": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלי!": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלתם": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "מתנצלת": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "תתנצלי": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "תתנצל": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלתי": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "התנצלה": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "יתנצלו": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "מתנצל": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "מתנצלים": [
- {
- "word_nikkud": "לְהִתְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1245-lehitnatzel"
- }
- ],
- "נפטרו": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "תיפטרנה": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "פטירה": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "נפטרתן": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "היפטרו!": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "תיפטרי": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "ניפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "נפטרת": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "ייפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "נפטרים": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "נפטרנו": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "נפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "נפטרות": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "ייפטרו": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "נפטרתם": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "להתפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תיפטרו": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "נפטרה": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "פיטורים": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "נפטרתי": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "היפטר!": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "להפטיר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "היפטרנה!": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "היפטרי!": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "אפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פטור": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "לפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "לפטור": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "התפטרות": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תיפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- }
- ],
- "פ - ט - ר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "להיפטר": [
- {
- "word_nikkud": "לְהִפָּטֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1625-lehipater"
- },
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "אחדנה!": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדת": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אאוחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאחדו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "א - ח - ד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאוחדים": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "להאחיד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאוחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "יאחדו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדה": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "נאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדתי": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדתם": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדה": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאוחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "יאוחדו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "לאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אחד!": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדתן": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאוחדות": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדתן": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אחיד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאחדות": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדתם": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "להתאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אחדי!": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדתי": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדת": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "איחדנו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאחדנה": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאוחדנה": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחדנו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאחדי": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "נאוחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאחדת": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאוחדי": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאוחדת": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "יאחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אוחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "תאוחדו": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "יאוחד": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מאחדים": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "אחדו!": [
- {
- "word_nikkud": "לְאַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "83-leached"
- }
- ],
- "מנחשים": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשת": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ננוחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "לנחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחוש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- },
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תנוחשו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחישות": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנוחשנה": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנחשת": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנוחשים": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ינחשו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשתן": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחשי!": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחשנה!": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנחשי": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשה": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשתם": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחשו!": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשתי": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "אנוחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשנו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנוחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ננחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשתי": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחש!": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "אנחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנחשות": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנחשו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנוחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנוחשת": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשת": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ינוחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשתן": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ינחש": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נחושת": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ינוחשו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נוחשנו": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנוחשי": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשתם": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "ניחשה": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נ - ח - שׁ": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "תנחשנה": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "מנוחשות": [
- {
- "word_nikkud": "לְנַחֵשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1189-lenachesh"
- }
- ],
- "נשרוד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "משרד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרוד!": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "תשרדי": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדתם": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שורדת": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "אשרוד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שורד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרודנה!": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שורדות": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "לשרוד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדת": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "ישרוד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "תשרדו": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדו": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדי!": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שריד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "ישרדו": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדו!": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שׂ - ר - ד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "תשרוד": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדתי": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדתן": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "תשרודנה": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדה": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "הישרדות": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שורדים": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "שרדנו": [
- {
- "word_nikkud": "לִשְׂרֹד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2314-lisrod"
- }
- ],
- "תפתרי": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרי!": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "נפתור": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "להיפתר": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרו!": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פותרת": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פ - ת - ר": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרתי": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתור!": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתר": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרתם": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרתן": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרו": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרון": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פותרות": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "תפתרו": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתורנה!": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "אפתור": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרת": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "תפתור": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פותרים": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "יפתרו": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "תפתורנה": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פותר": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרנו": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "לפתור": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "יפתור": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "פתרה": [
- {
- "word_nikkud": "לִפְתֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1754-liftor"
- }
- ],
- "נעייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "יעייפו": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפות": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "תעייפנה": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "תעייפו": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "תעייפי": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "להתעייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפו": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפים": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "תעייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "ע - י - ף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "יעייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפנו": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפה": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "אעייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפתם": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "לעייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפת": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפתן": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייף": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "עייפתי": [
- {
- "word_nikkud": "עָיֵף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1483-ayef"
- }
- ],
- "בוכה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "אבכה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכיתן": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "יבכה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכית": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכה!": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "נבכה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכיין": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "תבכו": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בוכות": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכו": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכיתם": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכתה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכו!": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכינה!": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "תבכי": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "תבכינה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בוכים": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכינו": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "לבכות": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "יבכו": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "ב - כ - ה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכי!": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "תבכה": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "בכיתי": [
- {
- "word_nikkud": "לְבַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "17-livkot"
- }
- ],
- "לסתור": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "תסתירי": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרה": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מסתירה": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "תוסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרתי": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "אסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרת": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתירו!": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "להסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "תוסתרי": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "להיסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "אוסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מסתירים": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "יסתירו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מוסתרות": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "נסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרנו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "להסתתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "סתירה": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתרתם": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מוסתרת": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "יוסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרתן": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתרתי": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתרנה!": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "יוסתרו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרתם": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "תסתרנה": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מסתור": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתרנו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מסתירות": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתרת": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתירי!": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתרתן": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתר!": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "נוסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "תסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מוסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוסתרו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "סתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "יסתיר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "תסתירו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "תוסתרנה": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הסתירו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "מוסתרים": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "תוסתרו": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "נסתר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "ס - ת - ר": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- },
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתירה": [
- {
- "word_nikkud": "לְהַסְתִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1433-lehastir"
- }
- ],
- "הוזכרו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תזכירו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכרתי": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכרנו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכרתן": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תוזכרו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תזכיר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "יזכיר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "מזכירים": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "יוזכר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "יוזכרו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכרתן": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "מוזכרים": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכרה": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תוזכרי": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "נזכיר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכירו!": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תוזכר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכרתי": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכרתם": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "מוזכרת": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "מזכירה": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכר!": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הוזכרת": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכירה": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תזכרנה": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "נוזכר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "אזכיר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "יזכירו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכרתם": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכרת": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "מוזכרות": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תוזכרנה": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכיר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכרנה!": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכירי!": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "אוזכר": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכירו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תזכירי": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "מזכירות": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "הזכרנו": [
- {
- "word_nikkud": "לְהַזְכִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "35-lehazkir"
- }
- ],
- "תפריעו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "נופרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרעת": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפריעה": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרעה": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרעתי": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "פרוע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרענה!": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תופרעי": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "להתפרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מפריעות": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "נפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מופרעות": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפריעי!": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "יפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "לפרוע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "אפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרע!": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרעת": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תופרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מפריעה": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מופרעת": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרעתן": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרענו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מופרעים": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרעה": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "יופרעו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרעתם": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "יופרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "להפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "פ - ר - ע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "יפריעו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תופרעו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "פרעות": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מופרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תופרענה": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "התפרעות": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפריעו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "פורע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרעתי": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תפרענה": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפרעתם": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תפריע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרענו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרעתן": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "אופרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרעו": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הפריעו!": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "להיפרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "הופרע": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "מפריעים": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "תפריעי": [
- {
- "word_nikkud": "לְהַפְרִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1715-lehafria"
- }
- ],
- "שברתם": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברו!": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "תשברו": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "להשביר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "תשבורנה": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברי!": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "ישברו": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שבר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שוברים": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שוברות": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברתן": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "תשברי": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "להישבר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "לשבר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "ישבור": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שוברת": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברה": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "תשבור": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שבור": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברנו": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברת": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שביר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברירי": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "משבר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שבור!": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "אשבור": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "לשבור": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברו": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שׁ - ב - ר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שובר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שברתי": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שבריר": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "נשבור": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "שבורנה!": [
- {
- "word_nikkud": "לִשְׁבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2135-lishbor"
- }
- ],
- "מרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "התרחקנו": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקת": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "תתרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקתן": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "מתרחקות": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "להרחיק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "לרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "התרחקות": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מתרחקת": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקה": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקתם": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "תתרחקי": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "מרוחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "התרחקנה!": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "נתרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקי!": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקו!": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "יתרחקו": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "להתרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקה": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "יתרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "הרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תתרחקו": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "אתרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "תתרחקנה": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "מתרחקים": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "ר - ח - ק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מתרחק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקתי": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "התרחקו": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "רחוק": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- },
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "התרחק!": [
- {
- "word_nikkud": "לְהִתְרַחֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2024-lehitrachek"
- }
- ],
- "תסתובבי": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבתן": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "סביבון": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבו!": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "סביבתי": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "מסיבה": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "ס - ב - ב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבי!": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "להיסוב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "לסובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבת": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבנו": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "תסתובבו": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "להסב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "מסתובבת": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבה": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "סבב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "סיבה": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "מסתובבים": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבתי": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "סביב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובב!": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "לסבב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "יסתובבו": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "תסתובבנה": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "מסתובבות": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבתם": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "מסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "אסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבות": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבנה!": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "נסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "נסיבה": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "הסתובבו": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "להסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "יסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "תסתובב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "לסוב": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "סביבה": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "נסיבתי": [
- {
- "word_nikkud": "לְהִסְתּוֹבֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1297-lehistovev"
- }
- ],
- "ירכבו": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבתי": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רוכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבה": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבנו": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "נרכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכב!": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבי!": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רוכבת": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבתן": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "התרכבות": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבת": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכיב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "תרכיב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "לרכוב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "הרכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "מרוכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "תרכבו": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "להרכיב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבתם": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבנה!": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "לרכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "להתרכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "תרכבי": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רוכבים": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "ירכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "תרכובת": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "תרכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "הרכבה": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "ר - כ - ב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רוכבות": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "מרכיב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבו": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "מרכבה": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "תרכבנה": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "מורכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "רכבו!": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "ארכב": [
- {
- "word_nikkud": "לִרְכַּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2040-lirkav"
- }
- ],
- "נשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקתי": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נשקי!": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנשקים": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "ינשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקתן": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקנו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקה": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "אנושק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנושקות": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנושק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "לנשוק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נ - שׁ - ק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקה": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "אנשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "להשיק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נשקו!": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "השקה": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "ננושק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנשקות": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקת": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "לנשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנושקי": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנשקת": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נשיקה": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נשק!": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנושקת": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקתם": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נשקנה!": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "להתנשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישקתן": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נישק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקתי": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנשקו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "ינושקו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנושקים": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנושקו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "ננשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מנשק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקתם": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "ינושק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקנו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקת": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנשקי": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "משיק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "נושקו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנושק": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנשקנה": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "תנושקנה": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "ינשקו": [
- {
- "word_nikkud": "לְנַשֵּׁק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1277-lenashek"
- }
- ],
- "מואשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תואשמי": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מאשימים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מאשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "יאשימו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "להאשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמת": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "לאשום": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "יאשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמה": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשימו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מואשמת": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מואשמים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מואשמות": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשמנו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "אואשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמתי": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תאשימי": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמתן": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "יואשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תואשמנה": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמנו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמתם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תואשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשמתן": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מאשימות": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "להיאשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תאשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשימי!": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "נאשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תאשימו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "אאשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תואשמו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשמתי": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "תאשמנה": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "מאשימה": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשמתם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשם!": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשים": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשימו!": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשמת": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "הואשמו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשימה": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "א - שׁ - ם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "נואשם": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "האשמנה!": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "יואשמו": [
- {
- "word_nikkud": "לְהַאֲשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "162-lehaashim"
- }
- ],
- "אררו": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אורר": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אררתם": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארה": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אוררים": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אררת": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארות": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארונו": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אאור": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "תאור": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארר": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "תאורו": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אררנו": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "יאורו": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "לאור": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "יאור": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "נאור": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארור": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אררתן": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אוררת": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "תאורי": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "תאורינה": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארו": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אר": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "תאורנה": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "א - ר - ר": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארותם": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "לארר": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אוררות": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אררתי": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "אררה": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארותי": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "ארותן": [
- {
- "word_nikkud": "לָאֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2732-laor"
- }
- ],
- "יבוררו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבררו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "לברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבררי": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררתי": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבורר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבררת": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "להתברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררה": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "לבור": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבוררנה": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "נברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ברר!": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררת": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררתן": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בירר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ברירה": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבררנה": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "אברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מוברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "נבורר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "אבורר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבוררת": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבורר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבררות": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררנו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "יברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בררן": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררה": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררתי": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררתם": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ברור": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "יבררו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבוררים": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "יבורר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררתן": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בררי!": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ב - ר - ר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בררנה!": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבוררו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבוררות": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררתם": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בוררו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "מבררים": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תבוררי": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררת": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "תברר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בורר": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "בררו!": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "ביררנו": [
- {
- "word_nikkud": "לְבָרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "269-levarer"
- }
- ],
- "עפתי": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "עפתן": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "תעופו": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עפתם": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "אעוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עפות": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עופנה!": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עפנו": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "תעופי": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עפו": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עוף!": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עפה": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "מעוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "יעופו": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "תעופינה": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "להתעופף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "עפת": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עפים": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "ע - ו - ף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "להעיף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "עופו!": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "תעוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "תעופה": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "לעופף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תעופנה": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "לעוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- },
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "יעוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עופי!": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "נעוף": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "עופינה!": [
- {
- "word_nikkud": "לָעוּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1461-lauf"
- }
- ],
- "יזוהו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "להזדהות": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזוהו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהתה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהיתי": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "הזדהות": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "מזוהים": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "יזוהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זהו!": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזוהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "יזהו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "אזהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "יזהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזהינה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "נזהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהיתן": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהיתן": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהיתם": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהיתי": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהינו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "נזוהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהית": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "מזהות": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "ז - ה - ה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "מזהים": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זהה!": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "אזוהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזהי": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "מזהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזהו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "מזוהות": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זהות": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהוי": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהית": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זהינה!": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זוהו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזוהי": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהיתם": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהינו": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זהי!": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "לזהות": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "מזוהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "תזוהינה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זהה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "זיהתה": [
- {
- "word_nikkud": "לְזַהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "483-lezahot"
- }
- ],
- "הפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תפסדנה": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תפסידו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסידו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסידו!": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "יופסדו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תופסדנה": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדה": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסדתן": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "נפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מופסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מפסידה": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מופסדים": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מופסדות": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסידה": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסדתם": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסד!": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסידי!": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדת": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מופסדת": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדתי": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מפסידים": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "פ - ס - ד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "נופסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסדת": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדתן": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "להפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תופסדי": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "יפסידו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסדנה!": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "נפסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "מפסידות": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תפסידי": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "יפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "יופסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "אופסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדנו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסדתי": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "אפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הופסדתם": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "הפסדנו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תפסיד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תופסד": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "תופסדו": [
- {
- "word_nikkud": "לְהַפְסִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1647-lehafsid"
- }
- ],
- "נח": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחתן": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "ננוח": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נוחינה!": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחנה!": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "ינוח": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נוחי!": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחה": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחתי": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחים": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "אנוח": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחתם": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נוחו!": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תנוחינה": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחו": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחות": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תנוחו": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "ינוחו": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תנוח": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "תנוחי": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נוח!": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "נחנו": [
- {
- "word_nikkud": "לָנוּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1164-lanuach"
- }
- ],
- "מצולמות": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמנו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צלמו!": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצולם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "יצלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמתן": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמתם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "יצולמו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צלמי!": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצלמת": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילום": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצלמים": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צלם!": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצלמי": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צלמנה!": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצולמו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "יצולם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצלמות": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמת": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמתן": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמה": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "נצולם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצלום": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צ - ל - ם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "יצלמו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצלמו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמתי": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמתם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצולם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצולמי": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצולמת": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמתי": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צילמת": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "אצלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמה": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצולמנה": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצלמה": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "לצלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "אצולם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "נצלם": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "תצלמנה": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מצולמים": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "צולמנו": [
- {
- "word_nikkud": "לְצַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1802-letzalem"
- }
- ],
- "מושך": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "אמשוך": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "מושכת": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "תמשוך": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכי!": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכו": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכו!": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "תמשוכנה": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משוך!": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכתן": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "ימשוך": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכנו": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכתי": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכת": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "נמשוך": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משוכנה!": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכתם": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "תמשכי": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "משכה": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "מושכים": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "ימשכו": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "מושכות": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "תמשכו": [
- {
- "word_nikkud": "לִמְשֹׁךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1108-limshoch"
- }
- ],
- "התקוממות": [
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תקומה": [
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הקמה": [
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מקום": [
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "קומה": [
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "ק - ו - ם": [
- {
- "word_nikkud": "לָקוּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1876-lakum"
- },
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "שוחחנו": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "משוחחים": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "משוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שׂ - י - ח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "תשוחחי": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחו!": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחה": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "לשיח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "תשוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחתם": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "נשוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "להשיח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "לשוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחו": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחח!": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "משוחחות": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחתי": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחתן": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שיח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "ישוחחו": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחי!": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "אשוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "ישוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "משוחחת": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחח": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "תשוחחנה": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחנה!": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שיחה": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "תשוחחו": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "שוחחת": [
- {
- "word_nikkud": "לְשׂוֹחֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2187-lesocheach"
- }
- ],
- "חתכה": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכתי": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "לחתך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "תחתוך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתוך!": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתוכנה!": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכו": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכו!": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "לחתוך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "להתחתך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתוך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "תחתכי": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חותך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכתם": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "תחתוכנה": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חותכת": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "יחתכו": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכתן": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "יחתוך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "ח - ת - ך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכת": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חותכות": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "נחתוך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "אחתוך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתיכה": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתיך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "להיחתך": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכי!": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חותכים": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "תחתכו": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "חתכנו": [
- {
- "word_nikkud": "לַחְתֹּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "718-lachtoch"
- }
- ],
- "יחלקו": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "לחלק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "אחלוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלקתם": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "תחלוקנה": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלקלק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקו!": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "נחלוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלקתי": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "תחלקי": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקו": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקת": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חולקת": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלוקנה!": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "להיחלק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "להחליק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "לחלוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקה": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "תחלקו": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחלקה": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "להתחלק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקיק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "יחלוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "מחלק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקתן": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלקי!": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולקים": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלוק!": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חולקות": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חילוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחלוק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלקנו": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- }
- ],
- "חלוקה": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "ח - ל - ק": [
- {
- "word_nikkud": "לַחֲלֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "612-lachalok"
- },
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תועמדו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מעמידה": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תעמיד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תועמדי": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמיד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מועמדים": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמידו!": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תעמדנה": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תועמד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מעמיד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "נועמד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "אעמיד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "יעמידו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מעמידים": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תעמידי": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדתן": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "אועמד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "נעמיד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תעמידו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמידו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמדתי": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמד!": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדה": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "יעמיד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמדתן": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדנו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "יועמדו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מעמידות": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמדנו": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמדת": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "מועמדת": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמידה": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדתי": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדת": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמדתם": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "יועמד": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "תועמדנה": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמידי!": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "העמדנה!": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "הועמדתם": [
- {
- "word_nikkud": "לְהַעֲמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1506-lehaamid"
- }
- ],
- "זוכה": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכות": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זיכוי": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זוכות": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכיתי": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכוי": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכו": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכית": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכתה": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זוכים": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכה": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכינו": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכיין": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכיתם": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכיתן": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכאי": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "זכייה": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "ז - כ - ה": [
- {
- "word_nikkud": "לְזַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "502-lizkot"
- }
- ],
- "ממולאות": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "להימלא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממולאת": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מ - ל - א": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "התמלאות": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמולאו": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממולא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאת": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ימולא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאו": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "נמולא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאתי": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילואים": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "להתמלא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלאי": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "למלאת": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלוא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ימולאו": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מלא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "אמולא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמולאנה": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "ממולאים": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאתם": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאתן": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מילוי": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמולא": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאה": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "תמולאי": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "מולאנו": [
- {
- "word_nikkud": "לְמַלֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1053-lemale"
- }
- ],
- "פעלו": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעולה": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פעיל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פועל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פעלי!": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "התפעלות": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תפעלו": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "יפעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "לפעול": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פעילות": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "להפעיל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תפעלנה": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "להתפעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פועלים": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "יפעלו": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "תפעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעלתם": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעלתי": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פועלות": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "מפעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פעלה": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעלנו": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעלתן": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "נפעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעלנה!": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פועלת": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעלת": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פעל!": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "פ - ע - ל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- },
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "פעלו!": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "תפעלי": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "אפעל": [
- {
- "word_nikkud": "לִפְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1658-lifol"
- }
- ],
- "מעניינות": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "אעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעניינים": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניינו": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניינתן": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעוניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעוניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינתן": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינה": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעניינו": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינה!": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "נעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעונייני": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "נעוניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "יעוניינו": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "לעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "ענייני!": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינתם": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "יעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעניינת": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "להתעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניינתם": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעוניינו": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינת": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "התעניינות": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניין!": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תענייני": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניינת": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעוניינים": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינו!": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעוניינות": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעניינה": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינתי": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניינתי": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעוניינה": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "יעוניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "אעוניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עניינו": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "יעניינו": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תעניין": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "ע - נ - י - ן": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "עוניינה": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "מעוניינת": [
- {
- "word_nikkud": "לְעַנְיֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1521-leanyen"
- }
- ],
- "תישאנה": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "שיא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאתם": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נשאנה!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "משואה": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נושאת": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "תישא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "להינשא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאת": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "שא!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "להשיא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נ - שׂ - א": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאו": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "שאנה!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נשיא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "מתנשא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאנו": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נושאים": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "לשאת": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאי!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "מושא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשוי": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "יישא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נושאות": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "שאו!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "תישאו": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נשאתן": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נושא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשא!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "תשואה": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "תישאי": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נשא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "שאי!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נישא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "להתנשא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאתי": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "יישאו": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נישואין": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- },
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נשאו!": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "נשאה": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "אשא": [
- {
- "word_nikkud": "לָשֵׂאת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1265-laset"
- }
- ],
- "כ - ב - ד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבידה": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "להכביד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "לכבוד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "להתכבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "נכבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "אכבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "לכבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכבדי": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכבדנה": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדים": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "כבדנו": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "כבדת": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "יכבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכבד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבוד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדתם": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "כבדות": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "כבדתן": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "תכבדו": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדתי": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "כיבוד": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדו": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "יכבדו": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- },
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדה": [
- {
- "word_nikkud": "לִכְבֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2761-lichbod"
- }
- ],
- "בוטלתי": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטלתן": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבוטלנה": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבוטלת": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מובטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבוטלים": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבוטלות": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "יבוטלו": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "לבטול": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "להתבטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "אבוטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבוטלי": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "ב - ט - ל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטלו": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטלנו": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטלתם": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטלה": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבוטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "מבוטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "נבוטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "יבוטל": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "בוטלת": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "תבוטלו": [
- {
- "word_nikkud": "לְבַטֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "214-levatel"
- }
- ],
- "אבוזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבוזבזנה": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "לבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזתי": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "להתבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזנו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזתם": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזת": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "יבוזבזו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבוזבזים": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזה": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזתי": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזתן": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "יבוזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "יבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזתם": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזתן": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזנו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזו!": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "נבוזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבוזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "נבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזי!": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בוזבזת": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "ביזבוז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבזבזת": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבוזבזי": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזנה!": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "אבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבזבזנה": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "ב - ז - ב - ז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבזה": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבוזבזות": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "יבזבזו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבוזבזת": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבזבזי": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבז!": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבוזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבזבזות": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "מבזבזים": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבזבזו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "בזבז": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "תבוזבזו": [
- {
- "word_nikkud": "לְבַזְבֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "196-levazbez"
- }
- ],
- "הופעל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלתי": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעילו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעלתם": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "יופעלו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלתן": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מפעיל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תופעלנה": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלה": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעילו!": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעילה": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מופעל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תופעלו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "יפעיל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "נפעיל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תופעלי": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מפעילה": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלת": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "יפעילו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעיל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מפעילים": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תופעל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעילי!": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תפעילי": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מפעילות": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעלת": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלנו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מופעלת": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעלנו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "אופעל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מופעלים": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעל!": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "נופעל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "אפעיל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעלתי": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "מופעלות": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "יופעל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעלתן": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תפעיל": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הופעלתם": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "הפעלנה!": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "תפעילו": [
- {
- "word_nikkud": "לְהַפְעִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1659-lehafil"
- }
- ],
- "רצינה!": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "תרצו": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצי!": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצה!": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "להרצות": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצתה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "תרצינה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "הרצאה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רוצים": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "ירצה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "ירצו": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצית": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רציתי": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "תרצה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "נרצה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "לרצות": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "ארצה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רוצות": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רציתן": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רציתם": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "ר - צ - ה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצון": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצו!": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רוצה": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצינו": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "רצוי": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "להתרצות": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "תרצי": [
- {
- "word_nikkud": "לְרַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "12-lirtzot"
- }
- ],
- "תחקרי": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "תחקרו": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרו!": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקירה": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקר": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרי!": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרת": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חוקרת": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חוקרות": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "לחקור": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרתי": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרתם": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "ח - ק - ר": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרתן": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "יחקרו": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "יחקור": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרה": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "מחקר": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "אחקור": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "תחקורנה": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרו": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקורנה!": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חוקרים": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "תחקיר": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "נחקור": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חוקר": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקרנו": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "חקור!": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "תחקור": [
- {
- "word_nikkud": "לַחְקֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "672-lachkor"
- }
- ],
- "הוכית": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכתה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מוכות": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "לנכות": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "נכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "נוכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מוכים": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תכו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תכי": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תכינה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תוכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "אכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכית": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תוכו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "ניכוי": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "נ - כ - ה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "להכות": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכיתי": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכיתם": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכי!": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכינו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכו!": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מוכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכה!": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "יכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכיתן": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "יוכו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "נכות": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תוכינה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכיתי": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכיתם": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכינה!": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מכות": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "יכו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכיתן": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "יוכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הוכו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "תוכי": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מכים": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכתה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "אוכה": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "הכו": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "מוכית": [
- {
- "word_nikkud": "לְהַכּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1201-lehakot"
- }
- ],
- "ידפוק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "תדפקי": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקה": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקו!": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקתם": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דופק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דופקים": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "נדפוק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "תדפוקנה": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקתן": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "אדפוק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפוקנה!": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דופקת": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפיקה": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "ד - פ - ק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקו": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקי!": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקתי": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "להידפק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דופקות": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקת": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפוק!": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "ידפקו": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "תדפוק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "דפקנו": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "תדפקו": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "לדפוק": [
- {
- "word_nikkud": "לִדְפֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "432-lidpok"
- }
- ],
- "הרוויחי!": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "ירוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "רווחה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מורווחת": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תרווחנה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "רווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מרוויחה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "רוחני": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מרוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תורווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תורווחי": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווחנו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרוויחו!": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תורווחנה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תורווחו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "יורווחו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מורווחים": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "ירוויחו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחתם": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "לרווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווחת": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מורווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווחתם": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחנו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "להרוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "אורווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "נורווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווחתן": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחתי": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מרוויחות": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "יורווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "רוח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווח!": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תרוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "ר - ו - ח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווחתי": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "ריווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרוויחה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחתן": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרוויחו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מרוויחים": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "לרווחה": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "להתרווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "ארוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תרוויחו": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "נרוויח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הרווחנה!": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מורווחות": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "מרווח": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הורווחת": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "תרוויחי": [
- {
- "word_nikkud": "לְהַרְוִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2005-leharviach"
- }
- ],
- "הועלו": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מעלות": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מעלים": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועלתה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלו!": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלי!": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "אועלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלה!": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מועלית": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "נועלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלינה!": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מועלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מועלות": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תועלינה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העליתם": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלו": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העליתן": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תועלו": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מועלים": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "יועלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תועלי": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "תועלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועלינו": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועליתי": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועלית": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלית": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלתה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העליתי": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועליתן": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "יועלו": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "הועליתם": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלינו": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "העלה": [
- {
- "word_nikkud": "לְהַעֲלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3384-lehaalot"
- }
- ],
- "מסרו!": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסורתי": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מוסר": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "מסרי!": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "תמסור": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרנו": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "ימסרו": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "תמסרו": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסור!": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "ימסור": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מ - ס - ר": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "תמסורנה": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "להימסר": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מוסרות": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תמסרי": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מוסרת": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "מוסרים": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "נמסור": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרו": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "למסור": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסר": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסורנה!": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרתי": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרת": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסירות": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- },
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "אמסור": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרה": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרון": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "להתמסר": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסור": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרתן": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסרתם": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "מסורת": [
- {
- "word_nikkud": "לִמְסֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1072-limsor"
- }
- ],
- "סליחה": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלח!": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "תסלח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "יסלחו": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחו!": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "תסלחנה": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחי!": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחת": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחתם": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "נסלח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחנו": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחנה!": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סולחות": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סולחת": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "אסלח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחו": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סולחים": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחתי": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחתן": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "תסלחי": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "לסלוח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סלחה": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "תסלחו": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "ס - ל - ח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "להיסלח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "יסלח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "סולח": [
- {
- "word_nikkud": "לִסְלֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1362-lisloach"
- }
- ],
- "אעבר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעוברנה": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעברים": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "נעובר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עוברתם": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעוברת": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעוברים": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "נעבר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברתי": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברתם": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברתן": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברה": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עוברתן": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעבר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברת": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברנו": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עוברה": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עוברנו": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעוברות": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "אעובר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיברו": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "יעוברו": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "יעובר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעוברי": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעברות": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעברת": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "יעבר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "מעובר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עברנה!": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עוברו": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עבר!": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעוברו": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "תעובר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עיבר": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "עוברתי": [
- {
- "word_nikkud": "לְעַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1443-leaber"
- }
- ],
- "חולקתם": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחלקת": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "יחולק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקה": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחלק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחולקו": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחלקות": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחולקות": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "אחלק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחולקנה": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "אחולק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקת": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחולקי": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "נחולק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחולקים": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקו": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקתי": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחלקים": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "נחלק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלקנה!": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "יחולקו": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולקו": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולקתי": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולקה": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולקנו": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקתן": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחולק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "מחולקת": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחלקנה": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חולקתן": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "יחלק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקנו": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תחולק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילק": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חילקתם": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "חלק!": [
- {
- "word_nikkud": "לְחַלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "613-lechalek"
- }
- ],
- "תזיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תזיינה": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיין!": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזיינות": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "יזוינו": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיינו!": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תזייני": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תזויני": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "אזיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוינתם": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "יזיינו": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תזוין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיינה!": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תזוינו": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "יזיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "זיינתן": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזיינים": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "נזיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזוינים": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוינה": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיינתי": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיינתם": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזוינות": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיינת": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוינתי": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "נזוין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוינו": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "להזדיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "יזוין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוינת": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזוינת": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זיינו": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "לזיין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "תזיינו": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תזוינה": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "ז - י - ן": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- },
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "זיינה": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזוין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "אזוין": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זוינתן": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "מזיינת": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "זייני!": [
- {
- "word_nikkud": "לְזַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "499-lezayen"
- }
- ],
- "תדחפנה": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפתם": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחוף!": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "תדחפי": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפנו": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחף!": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפתן": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפו!": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפה": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "אדחוף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "אדחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דוחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דוחפת": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "תדחוף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "תדחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפי!": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפנה!": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "לדחוף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפת": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפו": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחפתי": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "נדחוף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "תדחופנה": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחופנה!": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "ידחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "נדחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "ידחפו": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "ידחוף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דוחפות": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "ד - ח - ף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחיפות": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "להידחף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "תדחפו": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דחוף": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "דוחפים": [
- {
- "word_nikkud": "לִדְחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "416-lidchof"
- }
- ],
- "הזדיינו!": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "תזדיינה": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיין": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "יזדיינו": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינתי": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "תזדיינו": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיין!": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "מזדיינים": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "מזדיינות": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "יזדיין": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "אזדיין": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינו": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינתן": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "תזדיין": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינה!": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדייני!": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינה": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינת": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "הזדיינתם": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "מזדיין": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "מזדיינת": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "נזדיין": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "תזדייני": [
- {
- "word_nikkud": "לְהִזְדַּיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "500-lehizdayen"
- }
- ],
- "אפרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדנו": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "פרוד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "ייפרדו": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "היפרדי!": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "פ - ר - ד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "היפרדנה!": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "הפרדה": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "היפרד!": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "תיפרדנה": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "פירוד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תיפרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "ייפרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדה": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדתן": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "תיפרדי": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "היפרדו!": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדו": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדות": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדתי": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "ניפרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "פרידה": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תיפרדו": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדת": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "להפריד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "פרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "להיפרד": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "נפרדים": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "נפרדתם": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- }
- ],
- "היפרדות": [
- {
- "word_nikkud": "לְהִפָּרֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1691-lehipared"
- },
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "חתמתי": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חותם": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמתם": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתומנה!": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמת": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמו!": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמה": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "להיחתם": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חותמות": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חותמים": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "להחתים": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "נחתום": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתימה": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמנו": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמי!": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "תחתומנה": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "תחתמי": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "תחתמו": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "תחתום": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתם": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתום": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "יחתום": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתום!": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חותמת": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "לחתום": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמו": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "אחתום": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "יחתמו": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "ח - ת - ם": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חתמתן": [
- {
- "word_nikkud": "לַחְתֹּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "721-lachtom"
- }
- ],
- "חניתן": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנה!": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנתה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "להחנות": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנינו": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חונה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "אחנה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "לחנות": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנו!": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "מחנה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חניתם": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "יחנה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חניון": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "תחני": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חונים": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חונות": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "תחנינה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנייה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חניתי": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "נחנה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנית": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "ח - נ - ה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חני!": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "יחנו": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "תחנה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חניה": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "תחנו": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "חנינה!": [
- {
- "word_nikkud": "לַחֲנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "630-lachanot"
- }
- ],
- "מיצוב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מ - צ - ב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "תמצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "נמצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבה": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "למצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "תמצבי": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "ממצבים": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבו": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "ימצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "ממצבת": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "ימצבו": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "תמצבנה": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבנו": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבתם": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מצבו!": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מצבנה!": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "תמצבו": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבת": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "אמצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מצבי!": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבתן": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "ממצבות": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מצב!": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מיצבתי": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "מצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "ממצב": [
- {
- "word_nikkud": "לְמַצֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2639-lematzev"
- }
- ],
- "הזזנה!": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מזיזים": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזזת": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזזתן": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזו!": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תוזזו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מוזזות": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזיזי": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מזיזה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "נזיז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "יוזזו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "יוזז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזזנה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזזנו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מוזז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזת": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תוזז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזותם": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזתם": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזיזינה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזות": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מזיזות": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מזיז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזז!": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תוזזינה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזתן": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזנו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תוזזנה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזתי": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "יזיז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזה": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "יזיזו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזותי": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזותן": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזונו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזיז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תזיזו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "תוזזי": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "אוזז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "אזיז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזזו": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזזתם": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הוזז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזזתי": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מוזזת": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "נוזז": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "מוזזים": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "הזיזי!": [
- {
- "word_nikkud": "לְהָזִיז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "494-lehaziz"
- }
- ],
- "פחדנה!": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פיחדת": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פ - ח - ד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "פחד!": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "מפחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פחדו!": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פיחדנו": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פיחדתי": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "מפחדות": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פיחדו": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "להפחיד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "פחדי!": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "נפחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "מפחדת": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "יפחדו": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "יפחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "תפחדו": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פיחדתם": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פיחדה": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "לפחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "פיחדתן": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "לפחוד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "פיחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "תפחדי": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "מפחדים": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תפחדנה": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תפחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "אפחד": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- }
- ],
- "פחדן": [
- {
- "word_nikkud": "לְפַחֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1613-lefached"
- },
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "להתקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעה": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעי!": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "לקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קביעה": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבוע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קובעים": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעתי": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קובע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעו": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "אקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבענה!": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קיבוע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "יקבעו": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "תקבעי": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבענו": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קובעות": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "נקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "יקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעתם": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "תקבענה": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "ק - ב - ע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעת": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "לקבוע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קובעת": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעו!": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "להיקבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "תקבעו": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבעתן": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבע": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קביעות": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "קבע!": [
- {
- "word_nikkud": "לִקְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1853-likboa"
- }
- ],
- "הובעתם": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הובעה": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תבענה": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "להביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "יביעו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מביעות": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הובעתי": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הביעה": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "אביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבעת": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תובעי": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "יביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבענו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הובעו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבעה": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבע!": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מובעים": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבעתם": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מביעים": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הובעתן": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תביעו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תובע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- },
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "הובעת": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבעתן": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "יובעו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הובענו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבעתי": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "אובע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "נובע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תביעי": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הבענה!": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "יובע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "לנבוע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מביעה": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מובעות": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הובע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מובעת": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הביעו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "מובע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תובענה": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "נ - ב - ע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הביעו!": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "נביע": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "תובעו": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הביעי!": [
- {
- "word_nikkud": "לְהַבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1130-lehabia"
- }
- ],
- "הופעתם": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופיעה": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "יופע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופעת": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופיעו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופיעי": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "להופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופעה": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופע!": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "אופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "יופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופעה": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "אופע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופעת": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "יופעו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופיעי!": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופיעו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופעתן": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "נופע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופעו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "י - פ - ע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "יופיעו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופעים": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופענה": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "תופעי": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופעו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופיעות": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "נופיע": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופיעים": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופעתי": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופיעה": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופענה!": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "מופעות": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופענו": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "הופיעו!": [
- {
- "word_nikkud": "לְהוֹפִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "831-lehofia"
- }
- ],
- "ד - ו - ן": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דונה!": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנו": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דן": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "תדוני": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "תדון": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דין": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנתם": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנות": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנים": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנת": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "לדון": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "נדון": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דונינה!": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנתן": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "להידון": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "ידון": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "תדונו": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דיון": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנתי": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "תדונינה": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "תדונה": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דון!": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "ידונו": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דוני!": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דונו!": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "להידיין": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "דנה": [
- {
- "word_nikkud": "לָדוּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "417-ladun"
- }
- ],
- "התקרבנה!": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "יתקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "הקרבה": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "יתקרבו": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבתם": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "להקריב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "ק - ר - ב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "קורבן": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "אתקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "לקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "התקרב!": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "מתקרבת": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "תתקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "תתקרבנה": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבי!": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבה": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "תתקרבו": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "מתקרבות": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבו!": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "מתקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבתן": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבות": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "התקרבנו": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "תקריב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מתקרבים": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "להתקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "התקרבתי": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבת": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "תתקרבי": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "התקרבו": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "קרוב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "קרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "נתקרב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- }
- ],
- "לקרוב": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "קרבה": [
- {
- "word_nikkud": "לְהִתְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1947-lehitkarev"
- },
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "יפרצו": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "אפרוץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "להתפרץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצו": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצתי": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "התפרצות": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פורץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצתם": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "לפרוץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "יפרוץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצה": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פורצת": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פורצים": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "תפרוץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצת": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פ - ר - ץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרוצנה!": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פריצה": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצי!": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "נפרוץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "תפרצו": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "תפרצי": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "תפרוצנה": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פורצות": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצתן": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרוץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצנו": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "להיפרץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרוץ!": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "מפרץ": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "פרצו!": [
- {
- "word_nikkud": "לִפְרֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1718-lifrotz"
- }
- ],
- "לקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "תתקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "הקדמה": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "יתקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "קדמה": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמה": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "הקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמות": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "תקדים": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמתי": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "מתקדמות": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "מתקדמת": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "קידום": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "קדום": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמנו": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמתם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמת": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "תתקדמנה": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "מתקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "אתקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדם!": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמנה!": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "להקדים": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "קידומת": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "מתקדמים": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמו": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "ק - ד - ם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "תתקדמו": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמי!": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "להתקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "יתקדמו": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "תתקדמי": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמתן": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "מקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "נתקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "מוקדם": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "התקדמו!": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "קדמי": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "קדימה": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "לקדום": [
- {
- "word_nikkud": "לְהִתְקַדֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1865-lehitkadem"
- }
- ],
- "צחק!": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צוחקות": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צוחקים": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקתי": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקת": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "אצחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "לצחוק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקן": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "להצטחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "נצחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקנו": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקתן": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "יצחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקו": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צ - ח - ק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צוחקת": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחוק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צוחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקנה!": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "להצחיק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "יצחקו": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "לצחקק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקתם": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקו!": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "תצחקי": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "תצחקנה": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקה": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "תצחקו": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "לצחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "צחקי!": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "תצחק": [
- {
- "word_nikkud": "לִצְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1785-litzchok"
- }
- ],
- "חיסלנו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "נחוסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלתם": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסלתי": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "יחוסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסלה": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחסלו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחוסלים": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "אחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חסלו!": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחוסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "יחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחסלים": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "ח - ס - ל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "לחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלה": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחוסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסלתם": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסלו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חסל!": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלתן": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "נחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "יחוסלו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חסיל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחסלות": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחוסלות": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלת": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "להתחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חסלי!": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "אחוסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסלתן": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלנו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחוסלנה": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחוסלי": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחסלנה": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחוסלו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסול": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "יחסלו": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חסילון": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסלתי": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חוסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחסלת": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחסל": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "תחסלי": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חיסלת": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "חסלנה!": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "מחוסלת": [
- {
- "word_nikkud": "לְחַסֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "647-lechasel"
- }
- ],
- "יסופקו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפוק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "סופקת": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סופקו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תסופקו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "להסתפק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "תסופקנה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "מספקות": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "יספקו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "ספק!": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקתי": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "הספקה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "ספקנה!": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "ספקי!": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "מספקת": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "יסופק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקת": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "לספוק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "סופקתן": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סופקתם": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקתם": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תספקי": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "נספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סופקנו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תסופקי": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "ספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מסופקים": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תסופק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סופק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "מסופק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סופקתי": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "ספקו!": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "אספקה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מסופקת": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "אספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקתן": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תספקו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "נסופק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "מסופקות": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "אסופק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סיפקנו": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "ספיקה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מספקים": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "ס - פ - ק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "להספיק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "לספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "יספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "סופקה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "מספק": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- }
- ],
- "תספקנה": [
- {
- "word_nikkud": "לְסַפֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1405-lesapek"
- },
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "תוארתי": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "נתאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארתן": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תוארנו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתוארנה": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתארות": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארתם": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "יתארו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תואר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיאור": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "נתואר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תארו!": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "אתואר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "יתאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "לתאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתוארות": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תארי!": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "ת - א - ר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתוארים": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארנו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתואר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתארי": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תוארת": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתוארת": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתארו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "יתואר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תוארתם": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "יתוארו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתוארי": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "אתאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תאר!": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תארנה!": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תוארו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתוארו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארה": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתארים": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תוארה": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תתארנה": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתארת": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תוארתן": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתאר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארת": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארו": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "תיארתי": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מתואר": [
- {
- "word_nikkud": "לְתָאֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2346-letaer"
- }
- ],
- "מארגנות": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנתם": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אאורגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנו": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנת": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנה": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תארגנו": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "א - ר - ג - ן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנה!": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תאורגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תארגני": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגני!": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תאורגנה": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "יארגנו": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנו!": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגנתם": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אירגון": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגנה": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תאורגני": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "יאורגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תארגנה": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "להתארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "לארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "נאורגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגנו": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מאורגנים": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "יאורגנו": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנתי": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגן!": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגנתן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מארגנים": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "נארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תאורגנו": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "יארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מארגנת": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מאורגנת": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מאורגנות": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגנת": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "אורגנתי": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "תארגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "מאורגן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "ארגנתן": [
- {
- "word_nikkud": "לְאַרְגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "151-leargen"
- }
- ],
- "הוסיפי!": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "י - ס - ף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספתי": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוסיפו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוסיפי": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "יוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספנה!": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "להיווסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוספת": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוסיפה": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "נוסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספתם": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "להוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספה": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "נוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספת": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספתן": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוספנו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "יוספו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוספים": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוספת": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוספות": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוספי": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "יוסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוסיפה": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוסיפות": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוסיפו!": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "יוסיפו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוספו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוסיפו": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "מוסיפים": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "הוסף!": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "אוסיף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "תוספנה": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "להיתוסף": [
- {
- "word_nikkud": "לְהוֹסִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "818-lehosif"
- }
- ],
- "אסתדר": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תסתדרי": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדר!": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרו!": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרת": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "נסתדר": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרתם": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסתדרים": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסתדרות": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תסתדרו": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "יסתדרו": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרתי": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרי!": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדר": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרה": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תסתדרנה": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תסתדר": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "יסתדר": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרנו": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרנה!": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסתדרת": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרו": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "מסתדר": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "הסתדרתן": [
- {
- "word_nikkud": "לְהִסְתַּדֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1322-lehistader"
- }
- ],
- "תושתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "מושתנות": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "נושתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "ישתינו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתנת": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "מושתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתנתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתן!": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "משתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתנה": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "משתינות": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתיני!": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "אושתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתנתם": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתנו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתנה!": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשתינו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "שתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתנתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "משתינה": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתנתם": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "שׁ - ת - ן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתנת": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "תשתנה": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתינו!": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתינו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתנו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- },
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "להשתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "תושתני": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתנתי": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "תשתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "משתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "תשתיני": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "ישתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "השתינה": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "משתינים": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "יושתן": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "נשתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "אשתין": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "יושתנו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "תושתנו": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "מושתנים": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "הושתנתי": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "מושתנת": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "תושתנה": [
- {
- "word_nikkud": "לְהַשְׁתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2333-lehashtin"
- }
- ],
- "מודעים": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודעי": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודעות": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודעת": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "יודיע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודיעים": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודעו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודיע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודעת": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודיעו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "יודעו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודע!": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודיעו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודיע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודענו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודענה!": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודיעות": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודעתן": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "אודיע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודעתם": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודיעי": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודעתי": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "יודיעו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודיעי!": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודיעו!": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודיעה": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "נודע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודיע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "תודענה": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "אודע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "מודיעה": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "נודיע": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הודעו": [
- {
- "word_nikkud": "לְהוֹדִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "793-lehodia"
- }
- ],
- "הוגשת": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מגישים": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מגישות": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "תגישי": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגישו!": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגישה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגשתן": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "יוגשו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מוגשים": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "נוגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגש!": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "תוגשו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגשה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "תגשנה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגשו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מוגשות": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "תוגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "לגשת": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "מגישה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "תגישו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "להנגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "מוגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "אגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגשתי": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "יגישו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגשתם": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגשנו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגשנו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "נגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "גישה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "יוגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "תגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הוגשה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "אוגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "הגשתי": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "להתנגש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "הגישי!": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "יגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגשתן": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגישו": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגשנה!": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "להגיש": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "תוגשנה": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "הגשתם": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "תוגשי": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "מוגשת": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "נ - ג - שׁ": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "התנגשות": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- },
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "הגשת": [
- {
- "word_nikkud": "לְהַגִּישׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1144-lehagish"
- }
- ],
- "עישנתן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עשנו!": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישנת": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "אעשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "ע - שׁ - ן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישנו": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עשן!": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "יעשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישנה": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "מעשנת": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "מעשנים": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "יעשנו": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "תעשני": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישנתם": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "תעשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "מעשנות": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "לעשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "תעשנה": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עשני!": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "מעשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "מעושן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישנתי": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עישון": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "עשנה!": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "תעשנו": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "נעשן": [
- {
- "word_nikkud": "לְעַשֵּׁן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1576-leashen"
- }
- ],
- "השתנו!": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתנית": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "משתנות": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "ישתנה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשתנינה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתניתי": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשתני": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתניתם": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתנינו": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "משתנה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "אשתנה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתנינה!": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתנה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "משתנים": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתנתה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "תשתנו": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "ישתנו": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתניתן": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "השתני!": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "נשתנה": [
- {
- "word_nikkud": "לְהִשְׁתַּנּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "25-lehishtanot"
- }
- ],
- "נגן!": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגנו": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנגנו": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נוגנתם": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגנתי": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנגנה": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ננגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנגנת": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנוגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנוגנים": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנוגנות": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נוגנת": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "אנוגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נגנה!": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ינגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ננוגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנוגנת": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנגני": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגון": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נגנו!": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נוגנתן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "להתנגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "אנגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנוגנו": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "לנגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנוגני": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ינוגנו": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נוגנו": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נוגנה": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נגני!": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגנתן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגנת": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נוגנתי": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נגינה": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגנתם": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנוגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "נ - ג - ן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ניגנה": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנגנים": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "מנגנות": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ינוגן": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "תנוגנה": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "ינגנו": [
- {
- "word_nikkud": "לְנַגֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "14-lenagen"
- }
- ],
- "התערבתי": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבת": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערב!": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערב": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "יתערבו": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "אתערב": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "נתערב": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "תתערבנה": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "מתערבים": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "מתערבת": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבנו": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "מתערבות": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבנה!": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "תתערבו": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "יתערב": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבי!": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבה": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבו!": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבו": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "תתערב": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "מתערב": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "תתערבי": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבתם": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "התערבתן": [
- {
- "word_nikkud": "לְהִתְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1557-lehitarev"
- }
- ],
- "מובילים": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "יובילו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובילי!": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "יובלו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תובלו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובילה": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "נוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובל!": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלה": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלנה!": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "להוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מובילה": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלנו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תובילו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "יבול": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מבול": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "לייבל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מובלות": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלתי": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "י - ב - ל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלתם": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מובלים": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תובלנה": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "נובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "אוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובילו!": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלת": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מיובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "יוביל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תובלי": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובלתן": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "יובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "יבלת": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מובילות": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "הובילו": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "תובילי": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "מובלת": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "אובל": [
- {
- "word_nikkud": "לְהוֹבִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "782-lehovil"
- }
- ],
- "להיערך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערכנו": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "יערוך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "יערכו": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "עריכה": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערכו!": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "ערוכנה!": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "עורכת": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "מערך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תערוכה": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכה": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מערכה": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "לערוך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערוך!": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "מעריכי": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערכו": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "ערך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "עורכות": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "תערכי": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "נערוך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "מערכון": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תערכו": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "מערוך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ע - ר - ך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערכת": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "להעריך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערכתן": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "מעריך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "אערוך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "ערכה": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "עורך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "עורכים": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "ערכי!": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "ערכתם": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "מערכת": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- },
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "ערכתי": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "תערוך": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "תערוכנה": [
- {
- "word_nikkud": "לַעֲרֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1561-laaroch"
- }
- ],
- "הופלת": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מופל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "נ - פ - ל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "יופל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תופלו": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תופל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "יופלו": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מופלות": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מפל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "הופלה": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הופלתם": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מופלת": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "מופלים": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הופל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הפלה": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "הופלתי": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תופלי": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הופלו": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תופלנה": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "הופלתן": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "נפילה": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "להתנפל": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- },
- {
- "word_nikkud": "לִפֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1230-lipol"
- }
- ],
- "הופלנו": [
- {
- "word_nikkud": "לְהַפִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1231-lehapil"
- }
- ],
- "תפוצצנה": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "נפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "מפוצצות": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצתן": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצה": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "יפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצנה!": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצתם": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "אפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצנו": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצו!": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "מפוצצת": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "תפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצת": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "תפוצצו": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצי!": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פוצצו": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "מפוצצים": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "להפציץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "פצצה": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "פ - צ - ץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "מפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "תפוצצי": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "יפוצצו": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "להתפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "פוצץ!": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "פיצוץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "פוצצתי": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- }
- ],
- "לפוצץ": [
- {
- "word_nikkud": "לְפוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1674-lefotzetz"
- },
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "צ - ל - ח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "יוצלחו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצליחו!": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחתי": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצליחו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלח!": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחתן": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחנו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תוצלחי": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תצליחו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מוצלח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחנה!": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "נוצלח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מוצלחת": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחנו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "אצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחתם": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מוצלחים": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחת": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "צלחת": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "יצליחו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצליחי!": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "יוצלח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תוצלחנה": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "יצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תצליחי": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תוצלח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תצלחנה": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחתם": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחה": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "צלוחית": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחתי": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "להצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מצליחה": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "נצליח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מוצלחות": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחת": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תוצלחו": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "לצלוח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מצליחים": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצליחה": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הצלחתן": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "הוצלחה": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "מצליחות": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "אוצלח": [
- {
- "word_nikkud": "לְהַצְלִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1799-lehatzliach"
- }
- ],
- "תתחמקנה": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "מתחמקים": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "נתחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקתי": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "יתחמקו": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "תתחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "להתחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "התחמקנה!": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "מתחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמק!": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקתם": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "תתחמקי": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקו!": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "ח - מ - ק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "תתחמקו": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "מתחמקת": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקי!": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקנו": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקת": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "חמקן": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "התחמקו": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "חמקני": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "מתחמקות": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקתן": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "התחמקה": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "אתחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "יתחמק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- }
- ],
- "לחמוק": [
- {
- "word_nikkud": "לְהִתְחַמֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "627-lehitchamek"
- },
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "שתף!": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשתפי": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשותפנה": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "אשותף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפתן": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשותף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "משתפות": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "נשתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שׁ - ת - ף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "ישתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפות": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "משותפים": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפה": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "נשותף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "משותפת": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשותפי": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שתפנה!": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "לשתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "שותפנו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפתם": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפתי": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשותפו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "ישותפו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "ישותף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפת": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשתפו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפה": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שתפו!": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפנו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "ישתפו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפת": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתוף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "להשתתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "אשתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "משתפת": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "תשתפנה": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "משתפים": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "משתף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפו": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפתם": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "משותפות": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שיתפתי": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שתפי!": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "שותפתן": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- }
- ],
- "משותף": [
- {
- "word_nikkud": "לְשַׁתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2334-leshatef"
- },
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "נלחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצו!": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "ילחצו": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לוחצות": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחץ!": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצנה!": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "אלחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצת": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "תלחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "תלחצי": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצתי": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "תלחצנה": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצנו": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "ל - ח - ץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחיצה": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצה": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לוחצים": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "תלחצו": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "להילחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "להלחיץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצתם": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "ללחוץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לוחצת": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצו": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "ילחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחוץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לוחץ": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצי!": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "לחצתן": [
- {
- "word_nikkud": "לִלְחֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "994-lilchotz"
- }
- ],
- "הופחדתם": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תופחדו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחידי!": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחיד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחדתן": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "אופחד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מפחידות": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחידה": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחדה": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "יפחיד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מופחדות": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מפחיד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תופחדי": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מופחד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחדתי": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחדנו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תופחדנה": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תופחד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "יפחידו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחדנה!": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחדתן": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "נפחיד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מופחדת": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מופחדים": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחדו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחדתי": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מפחידה": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תפחיד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחידו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "יופחדו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחדת": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "יופחד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחדתם": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחידו!": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "נופחד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחד!": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תפחידו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "אפחיד": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תפחידי": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הופחדת": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "הפחדנו": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "מפחידים": [
- {
- "word_nikkud": "לְהַפְחִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1614-lehafchid"
- }
- ],
- "תיהנינה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנו": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "תיהנה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "תיהנו": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנית": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהניתם": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "ייהנה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "היהני!": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהניתן": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "להיהנות": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "ליהנות": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "תיהני": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "איהנה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "ניהנה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנות": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנתה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "ייהנו": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנינו": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנים": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "היהנו!": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "הנאה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "ה - נ - ה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "היהנינה!": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהנה": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "היהנה!": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "נהניתי": [
- {
- "word_nikkud": "לֵהָנוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "465-lehanot"
- }
- ],
- "שחה!": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "תשחינה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "לשחות": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחיתם": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחינו": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "ישחה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "אשחה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחיתן": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "ישחו": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחו!": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "נשחה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחינה!": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "תשחו": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "תשחה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "תשחי": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחיתי": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחתה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שוחות": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחי!": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שוחה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחית": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שוחים": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שחו": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "שׁ - ח - ה": [
- {
- "word_nikkud": "לִשְׁחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5832-lishchot"
- }
- ],
- "יטוס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "תטוס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "תטוסו": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסתם": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טיסה": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסות": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "אטוס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טייס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טוסו!": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסים": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסו": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסה": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסתן": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "תטוסינה": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסת": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "מטוס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טוסנה!": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "להטיס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "לטוס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסתי": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "רימון": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "ט - ו - ס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טוס!": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טוסינה!": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טסנו": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "נטוס": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "טוסי!": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "יטוסו": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "תטוסי": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "תטוסנה": [
- {
- "word_nikkud": "לָטוּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "740-latus"
- }
- ],
- "אוזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "זהירות": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "הוזהרתן": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "אזהרה": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "ז - ה - ר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "הוזהרנו": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הוזהרה": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מוזהרות": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "זהיר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תוזהרו": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "להיזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נוזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הוזהרתם": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "תוזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מוזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מוזהרת": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "יוזהרו": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הוזהרו": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הוזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "להזדהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תוזהרי": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "יוזהר": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הוזהרתי": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מוזהרים": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "לזהור": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "הוזהרת": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "הזהרה": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- },
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תוזהרנה": [
- {
- "word_nikkud": "לְהַזְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "487-lehazhir"
- }
- ],
- "מתעסקת": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקת": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "עסקי": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "מתעסקים": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "תתעסקי": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "תתעסקו": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "יתעסקו": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקו!": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקנה!": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "אתעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקתי": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקנו": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "ע - ס - ק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקי!": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "מתעסקות": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "נתעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "יתעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "לעסוק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקה": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסק!": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "מתעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "עיסוק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "עסוק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "עסקה": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקתן": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקו": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "תעסוקה": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "להתעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "תתעסקנה": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "התעסקתם": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "תתעסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "עסק": [
- {
- "word_nikkud": "לְהִתְעַסֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1530-lehitasek"
- }
- ],
- "תחטופנה": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "תחטפי": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפת": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "להיחטף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפי!": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "ח - ט - ף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטיף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "לחטוף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפו!": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "יחטפו": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפו": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "נחטוף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חוטף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "אחטוף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפתי": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפתם": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חוטפת": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "להחטיף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפה": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטוף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "יחטוף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפתן": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חוטפים": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטוף!": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטופנה!": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטיפה": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "תחטפו": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "תחטוף": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חטפנו": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "חוטפות": [
- {
- "word_nikkud": "לַחְטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "587-lachtof"
- }
- ],
- "ח - שׂ - ף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפתי": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חושפות": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפן": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפי!": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשיפה": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חושפת": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "תחשופנה": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חושפים": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפו!": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "לחשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפנו": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפנית": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפה": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "יחשפו": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "תחשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "יחשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "תחשפו": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפנות": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "תחשפי": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "אחשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפו": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשוף!": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חושף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "מחשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפתם": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפת": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשופנה!": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "להיחשף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "נחשוף": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "חשפתן": [
- {
- "word_nikkud": "לַחֲשֹׂף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "712-lachasof"
- }
- ],
- "דיווחנו": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחנו": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "ידווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דיווחתן": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחנה!": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דיווחו": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דיווחה": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "מדיח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- }
- ],
- "דיווחת": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחו!": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחתם": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "תדווחו": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחתי": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "תדווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "ידווחו": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחתן": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "הדחה": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- }
- ],
- "להדיח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- }
- ],
- "מדווחים": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "אדווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחת": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחו": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "לדווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- }
- ],
- "דיווחתי": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "תדווחי": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "מדווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווחי!": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווח!": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "תדווחנה": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "ד - ו - ח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- }
- ],
- "דיווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- },
- {
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
- }
- ],
- "דווחה": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "נדווח": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "דיווחתם": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "מדווחות": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "מדווחת": [
- {
- "word_nikkud": "לְדַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "410-ledaveach"
- }
- ],
- "להצטבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "נוצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מוצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תצביעו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "להצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "צבוע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבעתי": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "צבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "צבעוניות": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "אצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תצביעי": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תצבענה": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבענה!": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "אוצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבעתם": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצביעה": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצביעי!": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "צ - ב - ע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תוצבעי": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "צביעה": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "צבעוני": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבענו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבענו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "יצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצביעו!": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מוצבעים": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תוצבעו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבעו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תוצבענה": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבעה": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבעת": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבעתן": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מצביעים": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מוצבעת": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מצביעות": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "לצבוע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "נצביע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבעתן": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצביעו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבעתם": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "יוצבעו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "להיצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הצבע!": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבעת": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "הוצבעתי": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "אצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מצביעה": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "יצביעו": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "יוצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "מוצבעות": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תוצבע": [
- {
- "word_nikkud": "לְהַצְבִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1761-lehatzbia"
- }
- ],
- "תקיימנה": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "יקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקיימים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימי!": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיים!": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "ק - י - ם": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- }
- ],
- "קיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- }
- ],
- "קיימו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימת": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיום": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- }
- ],
- "מקיימות": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "אקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימתן": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימתן": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקוימנה": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "להתקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- }
- ],
- "יקוימו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימו!": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "יקיימו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימה": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימנו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימה": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקוימי": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקוים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקוימו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקוימות": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "נקוים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "אקוים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקוימת": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימנו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימתי": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "נקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "לקיים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- },
- {
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
- }
- ],
- "קיימת": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקוימים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימתם": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "מקיימת": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקיימי": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קיימנה!": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקוים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "תקיימו": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימתי": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "יקוים": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "קוימתם": [
- {
- "word_nikkud": "לְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1880-lekayem"
- }
- ],
- "רחבנו": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "ירחבו": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבתן": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבו!": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "מרחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "הרחבה": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבי!": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "תרחבי": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבתם": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבה": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "תרחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבנה!": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "לרחוב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "ירחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "להתרחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "ר - ח - ב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבת": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחוב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבתי": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "ארחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "תרחבו": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "נרחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "להרחיב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבו": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רוחב": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבות": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחבים": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "רחב!": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "תרחבנה": [
- {
- "word_nikkud": "לִרְחֹב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2016-lirchov"
- }
- ],
- "העיפותן": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תעיפינה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפונו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תועף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפנו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפותי": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפתי": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפות": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העפתן": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העפנו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תעיפי": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפתם": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תועפינה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תעיפו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העפנה!": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העפת": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מעיפות": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מועפים": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפת": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "יועף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תועפו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "יעיף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תועפנה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "אעיף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "יועפו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מעיפה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תעפנה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מועפת": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תועפי": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "נועף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מעיפים": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפתן": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תעיף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפותם": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מועף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפי!": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מעיף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "נעיף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפו!": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העפתם": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "יעיפו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "מועפות": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העף!": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "הועפה": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "אועף": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העיפו": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "העפתי": [
- {
- "word_nikkud": "לְהָעִיף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1462-lehaif"
- }
- ],
- "תצעקנה": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעק!": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקתי": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקנו": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "אצעק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "תצעק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקתם": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "לצעוק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צ - ע - ק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צועקת": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקתן": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צועקות": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "יצעק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקו": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקת": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקו!": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "יצעקו": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צועקים": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "להצטעק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צועק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "נצעק": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקי!": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקנה!": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "תצעקו": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "תצעקי": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "צעקה": [
- {
- "word_nikkud": "לִצְעֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1824-litzok"
- }
- ],
- "מנצלת": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלת": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלו": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ננוצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ינוצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ננצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנוצלו": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נצלי!": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלה": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנוצלנה": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנוצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנוצלות": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נצלנה!": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנצלו": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נצל!": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נצלו!": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ינוצלו": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנצלות": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלתן": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנצלי": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנוצלי": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ינצלו": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנוצלים": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנצלים": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלנו": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "תנצלנה": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "ינצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "אנוצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלתי": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "נוצלתם": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנוצל": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מנוצלת": [
- {
- "word_nikkud": "לְנַצֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1244-lenatzel"
- }
- ],
- "מביטים": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "לנבוט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבטנה!": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבטתי": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "להנביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבט!": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הביטי!": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "נ - ב - ט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "אביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבטנו": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הביטה": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "מביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "מביטות": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "מביטה": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "היבט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "להביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הביטו!": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבטת": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הביטו": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "נביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "תבטנה": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "תביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "יביט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "תביטי": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבטתם": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "הבטתן": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "יביטו": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "תביטו": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "מבט": [
- {
- "word_nikkud": "לְהַבִּיט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1126-lehabit"
- }
- ],
- "מושמדים": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "משמידה": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "נושמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "להישמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תושמדנה": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמידו!": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "ישמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "מושמדת": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "אושמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "אשמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תשמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדתם": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדנו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "להשמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "משמידים": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדת": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדה": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "יושמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "ישמידו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "משמידות": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמד!": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תשמדנה": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תושמדי": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "מושמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תושמדו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמידו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "משמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תושמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדתן": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדתי": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדתן": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדתי": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדנה!": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "להשתמד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדתם": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "שׁ - מ - ד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תשמידי": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "תשמידו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "נשמיד": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "יושמדו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "מושמדות": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמידה": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמידי!": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדת": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "הושמדנו": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "השמדה": [
- {
- "word_nikkud": "לְהַשְׁמִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2240-lehashmid"
- }
- ],
- "נעים": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "תנועו": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעות": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "להניע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נועי!": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעת": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעה": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "מנוע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "תנענה": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעתי": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעו": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נ - ו - ע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "תנועינה": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "ננוע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעתן": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "תנועי": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נענו": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נועינה!": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נועו!": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "לנוע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "תנוע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "ינועו": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "להתנועע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "תנועה": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נענה!": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נעתם": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "ינוע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "אנוע": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "נוע!": [
- {
- "word_nikkud": "לָנוּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1170-lanua"
- }
- ],
- "כובינו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כובית": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיבתה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כוביתי": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיביתי": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "מכבים": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכבי": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כבאי": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכובה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "מכובים": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיביתן": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כובו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "מכבה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כבי!": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כבה!": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "אכבה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "יכובו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "יכבה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כוביתן": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכובי": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיבו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "יכבו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיבה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכבינה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "יכובה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיבינו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כוביתם": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כ - ב - ה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "אכובה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כבו!": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "לכבות": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "מכובה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כובה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "מכובות": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כבינה!": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכובינה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "להיכבות": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "נכובה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכבה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיבוי": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "מכבות": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכובו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תכבו": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיבית": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "נכבה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כובתה": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "כיביתם": [
- {
- "word_nikkud": "לְכַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "881-lechabot"
- }
- ],
- "תרדופנה": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "להירדף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "תרדפי": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפתן": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "תרדפו": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפנו": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "מרדף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפתם": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רודפות": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "לרדוף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "ירדפו": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדופנה!": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רודפים": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפו!": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפה": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "נרדוף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רודף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "ארדוף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפתי": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "ר - ד - ף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רודפת": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "תרדוף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "ירדוף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפת": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדוף!": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפו": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדפי!": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדף": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "רדיפה": [
- {
- "word_nikkud": "לִרְדֹּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1998-lirdof"
- }
- ],
- "תושלמו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "משלים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלימה": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "מושלמים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "מושלמות": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמת": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמתי": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "נושלם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "תושלם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלמנו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "ישלימו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "יושלם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "משלימים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלמת": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "משלימה": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "ישלים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלמתן": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלימו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "תושלמי": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "מושלמת": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמתן": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "משלימות": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלמתם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלימי!": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלמנה!": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמתם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "אושלם": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלם!": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלמתי": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמה": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "תשלימו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "השלימו!": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "הושלמנו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "תושלמנה": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "תשלימי": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "תשלים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "נשלים": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "יושלמו": [
- {
- "word_nikkud": "לְהַשְׁלִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2231-lehashlim"
- }
- ],
- "נמנעתם": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "תימנע": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעות": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "הימנעי!": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "תימנענה": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנענו": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעת": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "הימנעו!": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "תימנעו": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "יימנע": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעו": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעתי": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעתן": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "הימנע!": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נימנע": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "תימנעי": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעה": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "יימנעו": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "הימנענה!": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "נמנעים": [
- {
- "word_nikkud": "לְהִמָּנֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1069-lehimanea"
- }
- ],
- "תבוש": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "ב - ו - שׁ": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושתן": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "תבושינה": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושו": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושו!": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "ביישן": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושנה!": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "יבוש": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "תבושו": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושות": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "תבושנה": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושינה!": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "נבוש": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושת": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושנו": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושי!": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושתי": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בוש": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "תבושי": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושים": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בושתם": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "אבוש": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "בוש!": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "יבושו": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "לבושש": [
- {
- "word_nikkud": "לֵבוֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "192-levosh"
- }
- ],
- "חפף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "יחפפו": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חופף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחפופנה": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "יחוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחופנה": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "נחוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חופה": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפתן": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחפפי": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "אחוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחופו": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפתי": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפיפה": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפה": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חופפות": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפנו": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "נחפוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחופי": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפו": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "יחופו": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפת": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "לחופף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חפפתם": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "לחפוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחפוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "להתחפף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "לחוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "אחפוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חופפת": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "יחפוף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "תחפפו": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "ח - פ - ף": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "חופפים": [
- {
- "word_nikkud": "לָחֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "657-lachof"
- }
- ],
- "פיטרתם": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטרו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפטרנה": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרת": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפוטרת": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפוטרו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרה": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפטרו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פטר!": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "אפוטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטרה": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "יפוטרו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרתם": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפוטרים": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרנו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטרת": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פטרו!": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פטרנה!": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפוטרות": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפטרים": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפוטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפוטרנה": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטרנו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרתי": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפטרת": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "יפטרו": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפוטרי": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פוטרתן": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "יפוטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפוטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטרתן": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "תפטרי": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "יפטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטרתי": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "מפטרות": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פיטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "נפוטר": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "פטרי!": [
- {
- "word_nikkud": "לְפַטֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1626-lefater"
- }
- ],
- "הומתנה": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מומתנים": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "להמתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מומתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתן!": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "הומתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תומתנו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתינו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "הומתנו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "ממתינות": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתנו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתינה": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מומתנת": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "הומתנתי": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "למתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "אמתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתנתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתנה!": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תומתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תמתינו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתנתם": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתנתי": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "נמתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתינו!": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תומתני": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מותן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תמתיני": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תמתנה": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "יומתנו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "נומתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מ - ת - ן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתנת": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "ימתינו": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מומתנות": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "ממתינה": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תמתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "המתיני!": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "אומתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- },
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "יומתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "ממתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "ימתין": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "הומתנתן": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תומתנה": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "הומתנתם": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "מתון": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "הומתנת": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "ממתינים": [
- {
- "word_nikkud": "לְהַמְתִּין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1118-lehamtin"
- }
- ],
- "תסירי": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרתי": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "נוסר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרתם": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירותם": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרת": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "אוסר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרת": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסיר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "מסירים": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירותן": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תסיר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "סיירת": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "מסירה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "לסייר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תוסרי": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירותי": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירו!": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "מסיר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תוסרנה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "יוסרו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרנו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "להסיר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירות": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "יסיר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרתי": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תוסרו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תוסר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תסירינה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרתן": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "יסירו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרנה!": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תסירו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסר!": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירי!": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הוסרנו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרתן": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסירונו": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "נסיר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תסרנה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "ס - י - ר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "תוסרינה": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "יוסר": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "הסרתם": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "סיור": [
- {
- "word_nikkud": "לְהָסִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2525-lehasir"
- }
- ],
- "מיהרתי": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהרתן": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהרו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ימוהרו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמהרנה": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהר!": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממהרות": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהרנה!": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממוהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהרתם": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהרי!": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "למהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "אמהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ימוהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממוהרת": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממהרת": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמוהרנה": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמוהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהרנו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מ - ה - ר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרה": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהיר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמהרי": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ימהרו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרת": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממוהרות": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "נמהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרתם": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממוהרים": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרנו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהרו!": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרתן": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "נמוהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מוהרתי": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "אמוהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמהרו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ממהרים": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהרה": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מיהרת": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמוהרו": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "תמוהרי": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "מהירות": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "ימהר": [
- {
- "word_nikkud": "לְמַהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1029-lemaher"
- }
- ],
- "בושל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלתן": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלתן": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבשלנה": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "יבושלו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבשלי": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "יבושל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלה": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלנו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בשלנה!": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בשלו!": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבשלות": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבושלות": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "ב - שׁ - ל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלתם": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "לבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבושלי": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבושלים": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "להבשיל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבשלת": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלתי": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "יבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בשל!": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "יבשלו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבושלנה": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלתם": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבשלים": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבושלת": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "אבושל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "מבושל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "נבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בשלי!": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלת": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בושלתי": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "נבושל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "לבשול": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלת": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלה": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "אבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבשלו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבושלו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "להתבשל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "תבושל": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "בישלנו": [
- {
- "word_nikkud": "לְבַשֵּׁל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "273-levashel"
- }
- ],
- "צוויתי": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווינה!": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צוויתם": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "תצווו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווית": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צ - ו - ה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציוויתי": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "יצוו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "יצווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציוותה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "תצוו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "מצווות": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "לצוות": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווה!": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציוויתן": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "תצווי": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "אצווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציווי": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווי!": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "יצווו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "מצווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צוותה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "מצוות": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציוויתם": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "מצווים": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציוו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציווינו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צוו!": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צוויתן": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציווית": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "להצטוות": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "ציווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "צווינו": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "תצווינה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "תצווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "נצווה": [
- {
- "word_nikkud": "לְצַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1775-letzavot"
- }
- ],
- "תרצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחתם": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "תרצחו": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "ארצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "ר - צ - ח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחנו": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רוצחים": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "לרצוח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רוצחות": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצח!": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "תרצחי": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "להירצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחו": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחת": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "נרצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רוצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחה": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רוצחת": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחי!": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "ירצח": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחנה!": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "ירצחו": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחתי": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחני": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחתן": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "תרצחנה": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "רצחו!": [
- {
- "word_nikkud": "לִרְצֹחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2091-lirtzoach"
- }
- ],
- "הוסכמו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "יוסכמו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "לסכום": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכמת": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכמה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמתם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכמתן": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכימי!": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "יוסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "נסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "יסכימו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכימו!": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מוסכמה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תוסכמי": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "להסתכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמתי": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכם!": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מסכימה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תסכימו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מסכימות": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תוסכמו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמת": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "לסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מוסכמים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "ס - כ - ם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמנה!": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמנו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מוסכמות": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכמתן": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכימה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מוסכמת": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מסכימים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "נוסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "מוסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכמנו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תוסכמנה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "יסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכמתם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תסכמנה": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "אסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הסכימו": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "סיכום": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "אוסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תסכימי": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "תוסכם": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "סכום": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "הוסכמתי": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "להסכים": [
- {
- "word_nikkud": "לְהַסְכִּים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1354-lehaskim"
- }
- ],
- "התעלמה": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "התעלמו!": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "התעלמת": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "התעלמתן": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "עלום": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "עלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התעלמנו": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "עולמי": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נתעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "תתעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "התעלם!": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "העלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התעלמתי": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "להעלים": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התעלמנה!": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "אתעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "להתעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התעלמי!": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "מתעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "התעלמו": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "יתעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "תתעלמי": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "תתעלמנה": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "עלמה": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "עולם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "מתעלמות": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "מתעלמים": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "תתעלמו": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "היעלמות": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "מתעלמת": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "יתעלמו": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "התעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "ע - ל - ם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "להיעלם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "העלמה": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התעלמתם": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- }
- ],
- "תעלומה": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התעלמות": [
- {
- "word_nikkud": "לְהִתְעַלֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1501-lehitalem"
- },
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "התרכזו": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "תתרכזנה": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזנה!": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "מתרכזת": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזו!": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "מרכזי": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "להתרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזי!": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזת": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזתי": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "תרכיז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "יתרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "נתרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "מרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- },
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ר - כ - ז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזה": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "לרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "רכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "תתרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזתן": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "אתרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "מתרכזים": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "תתרכזי": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "ריכוז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "יתרכזו": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזתם": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "תתרכזו": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "מתרכז": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכזנו": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "התרכז!": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "מתרכזות": [
- {
- "word_nikkud": "לְהִתְרַכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2043-lehitrakez"
- }
- ],
- "תתגברו": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברנה!": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "מתגברות": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברה": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברו": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "תתגברי": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברו!": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "יתגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "נתגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברי!": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגבר!": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "יתגברו": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברתם": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "מתגברים": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "מתגברת": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברתי": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "ג - ב - ר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "תתגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "להתגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברתן": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "תתגברנה": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "להגביר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "אתגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "לגבור": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברת": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "מתגבר": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "התגברנו": [
- {
- "word_nikkud": "לְהִתְגַּבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "294-lehitgaber"
- }
- ],
- "יתכונן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "מתכונן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכונן!": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננו!": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "מתכוננות": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "מתכוננת": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "תתכוננו": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננה": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכונן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננתי": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננתן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "נתכונן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננו": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננתם": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "אתכונן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננה!": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכונני!": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "תתכונן": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "התכוננת": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "יתכוננו": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "תתכוננה": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "תתכונני": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "מתכוננים": [
- {
- "word_nikkud": "לְהִתְכּוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "897-lehitkonen"
- }
- ],
- "כיבדת": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבדו": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדנה!": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכובדו": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדו!": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבדתם": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכובדי": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "נכובד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדת": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכבדת": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכובדנה": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבדי!": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כבד!": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדתי": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדתם": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "יכובד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכבדות": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבדתן": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכבדים": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבדה": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "אכובד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבדתי": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדנו": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכובדת": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדתן": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדו": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובדה": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כובד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכובד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "יכובדו": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכובדות": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "כיבדנו": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכובדים": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "מכבד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "תכובד": [
- {
- "word_nikkud": "לְכַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "877-lechabed"
- }
- ],
- "לכסות": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "מכסים": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכוסו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כסות": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסינו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "מכוסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסתה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "יכוסו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסיתם": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסיתן": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "נכוסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסיתם": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכסו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכסי": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כ - ס - ה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסיתי": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "מכסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "מכוסות": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כסינה!": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכוסי": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כסו!": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסוי": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסיתי": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "מכסות": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסיתן": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכוסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "אכוסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "יכוסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסית": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "מכוסים": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כסי!": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכוסינה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "להתכסות": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כסה!": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כיסית": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "תכסינה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "נכסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסינו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "יכסו": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "יכסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "כוסתה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "אכסה": [
- {
- "word_nikkud": "לְכַסּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "924-lechasot"
- }
- ],
- "אריב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "נריב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "מריבה": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "ריבי!": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבת": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבתן": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "תריבו": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "יריב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "ר - י - ב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבות": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבו": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבתם": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "יריבו": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "ריב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבנו": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "תריבינה": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "לריב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "ריבינה!": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבנה!": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "ריבו!": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "תרבנה": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "ריב!": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "תריב": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבה": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "תריבי": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבתי": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "רבים": [
- {
- "word_nikkud": "לָרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2035-lariv"
- }
- ],
- "גמר": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמור!": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גומרות": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "לגמור": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "נגמור": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "יגמרו": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "לגמר": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "ג - מ - ר": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "תגמרו": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גומרת": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרי!": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרה": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גומרים": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרתן": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "אגמור": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרו": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרנו": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמור": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "תגמרי": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "יגמור": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "תגמור": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "תגמורנה": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמורנה!": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרתם": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "להיגמר": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גומר": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרת": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרתי": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "גמרו!": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "לגמרי": [
- {
- "word_nikkud": "לִגְמֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "351-ligmor"
- }
- ],
- "תנשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "מנשפים": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נשף!": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "מנשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "להתנשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפתן": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נשפו!": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפתי": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "ינשפו": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "תנשפנה": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "מנשפות": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "ינשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפת": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נ - שׁ - ף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "תנשפי": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "תנשפו": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפה": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "לנשוף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "אנשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נשפי!": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפו": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נשפנה!": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפנו": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "מנשפת": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "ינשוף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "ננשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "לנשף": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "נישפתם": [
- {
- "word_nikkud": "לְנַשֵּׁף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5426-lenashef"
- }
- ],
- "מאושרים": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאושרי": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אשר!": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרנו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אשרנה!": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאושרות": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "יאשרו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אשרו!": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאושרו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאשרי": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אאשר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרתם": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאשרו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "לאשר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאשרות": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרת": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרנו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אאושר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרתי": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאשרים": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרה": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאושרנה": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "יאשר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרתי": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאשר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרת": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאשר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאושר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "נאשר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "יאושרו": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאושרת": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרתם": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרה": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אושרתן": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאושר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "יאושר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "א - שׁ - ר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אישרתן": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "תאשרנה": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "נאושר": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "מאשרת": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "אשרי!": [
- {
- "word_nikkud": "לְאַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "164-leasher"
- }
- ],
- "שקלה": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "נשקול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שוקלת": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "ישקלו": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "תשקול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "משוקלל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שוקל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שוקלים": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלו!": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלתן": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "תשקלי": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "משקולת": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלי!": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "אשקול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "תשקולנה": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלנו": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקולנה!": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלת": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "לשקלל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שׁ - ק - ל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "תשקלו": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "להישקל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלו": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שוקלות": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקילה": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקול!": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שיקלול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שיקול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "ישקול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "לשקול": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלתם": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "משקל": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "שקלתי": [
- {
- "word_nikkud": "לִשְׁקֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2300-lishkol"
- }
- ],
- "נחפור": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרתי": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "להתחפר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חופרות": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרתן": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חופר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "מחפיר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "לחפור": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "תחפרי": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "להיחפר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חופרים": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפור!": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "מחפר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפורנה!": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרו!": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרו": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרי!": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "תחפורנה": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "אחפור": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרתם": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "יחפור": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "תחפרו": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרת": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "יחפרו": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "ח - פ - ר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרנו": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חופרת": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפר": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפירה": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "תחפור": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "חפרה": [
- {
- "word_nikkud": "לַחְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "660-lachpor"
- }
- ],
- "השתתפתן": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפתם": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "תשתתפו": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "משתתפות": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפנה!": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "תשתתפי": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפנו": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "ישתתף": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "משתתפים": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתף!": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתף": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפו": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפי!": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "תשתתפנה": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפת": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "נשתתף": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפתי": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפו!": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "אשתתף": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "ישתתפו": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "משתתפת": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "משתתף": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "השתתפה": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "תשתתף": [
- {
- "word_nikkud": "לְהִשְׁתַּתֵּף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2335-lehishtatef"
- }
- ],
- "מקרבים": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "יקורבו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקרב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקורב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "יקרבו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירבתם": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקורב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקרבות": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבה": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירבתן": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "אקורב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקורבי": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקרבנה": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- },
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "קירבו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קרב!": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבתי": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקורבו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קרבי!": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבתם": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבנו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקורבות": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "אקרב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקורבנה": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "יקורב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קרבנה!": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקרבת": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקורבת": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירבת": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבתן": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירבתי": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "נקורב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "יקרב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קרבו!": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירבנו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקרב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקרבי": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קורבת": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "תקרבו": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "נקרב": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "מקורבים": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "קירבה": [
- {
- "word_nikkud": "לְקָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1946-lekarev"
- }
- ],
- "התאמנה!": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מתאמנת": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "מתאמן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמני!": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "מתאמנות": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנה": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "אתאמן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנתם": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמן!": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "תתאמנו": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "תתאמן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנתן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "תתאמני": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנו": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- },
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "יתאמן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנו!": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "נתאמן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "יתאמנו": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "מתאמנים": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמן": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנתי": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "התאמנת": [
- {
- "word_nikkud": "לְהִתְאַמֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "115-lehitamen"
- }
- ],
- "משורתות": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשרתי": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שרתו!": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משרתות": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "ישורתו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משרתים": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורתו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "אשרת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשורתנה": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירתי": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "ישורת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "ישרת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורתנו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "ישרתו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "נשורת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשורתי": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשרתנה": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשרת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירתם": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשורת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורתם": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שׁ - ר - ת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירתו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "נשרת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירתה": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משרת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירות": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשורתו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משרתת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירתנו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שירתן": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משורתים": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורתי": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משורתת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "אשורת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "משורת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שרת!": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורתה": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "תשרתו": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שרתי!": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שרתנה!": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "שורתן": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "לשרת": [
- {
- "word_nikkud": "לְשָׁרֵת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2329-lesharet"
- }
- ],
- "גידלנו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "להגדיל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "תגדלי": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "ג - ד - ל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גודלתן": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "תגדלו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "מגודלת": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גדל!": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "נגודל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "לגדל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גודלתם": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גדול": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "תגודלנה": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גודלתי": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "תגודל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "מגודלות": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גודלו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "לגדול": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "מגודלים": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידלת": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידלתן": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "יגדל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גודלת": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גדלי!": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "תגדלנה": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "יגדלו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "תגודלו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "יגודל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידלו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "תגודלי": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "יגודלו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גדלו!": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "תגדל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גודלה": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידלה": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "מגודל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "נגדל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "אגדל": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גודלנו": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידלתם": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גידלתי": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- }
- ],
- "גדלנה!": [
- {
- "word_nikkud": "לְגַדֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "299-legadel"
- },
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "נאופשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאופשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרתם": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאופשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאופשרו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאופשרנה": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרה": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאופשרים": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "להתאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "א - פ - שׁ - ר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרנו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "יאפשרו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרתי": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרתן": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאפשרו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרי!": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרו!": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאופשרת": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאפשרת": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "נאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרה": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאפשרות": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרת": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "לאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאופשרות": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרת": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרתם": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "יאופשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרתי": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "יאופשרו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "מאפשרים": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאפשרנה": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרנה!": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשרנו": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאופשרי": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אופשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "יאפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשר!": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשרתן": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אאופשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תאפשרי": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "אפשר": [
- {
- "word_nikkud": "לְאַפְשֵׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "145-leafsher"
- }
- ],
- "תיגשי": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשות": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשתן": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ייגשו": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגש": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשה": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשנו": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "תיגשו": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשו": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "גש!": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשתי": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ייגש": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשת": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשתם": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "אגש": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "גשו!": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "גשנה!": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "ניגשים": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "גשי!": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "תיגשנה": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "תיגש": [
- {
- "word_nikkud": "לָגֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1143-lageshet"
- }
- ],
- "לסווג": [
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "להסיג": [
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "נסיגה": [
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "ס - ו - ג": [
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "סוג": [
- {
- "word_nikkud": "לָסֶגֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1323-laseget"
- }
- ],
- "העדנו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תעידי": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "אעיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העדת": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדנו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מעיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תועדו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "לעודד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעידינה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תעיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "עדות": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "העדנה!": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העדתם": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידותם": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידותי": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "נעיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מועדות": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "יעיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדתי": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תועדינה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מעידות": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידותן": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדת": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מועד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "להעיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תועד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "יועדו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "עדה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעדנה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדתן": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידונו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העיד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידי!": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העד!": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "אועד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "ע - ו - ד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעודה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "יעידו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תועדי": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תעידו": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "עד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "מועדת": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מועדים": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "נועד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מעידים": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העידו!": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "העדתי": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "תועדנה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "להתעודד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "העידות": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "עידוד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- },
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "העדתן": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "הועדתם": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "יועד": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "מעידה": [
- {
- "word_nikkud": "לְהָעִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1457-lehaid"
- }
- ],
- "ציינו": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "יציינו": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "יצוינו": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צייני!": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מציינות": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינתם": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תציינו": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוינתם": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינה!": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מציינת": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "נצוין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינתי": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מציינים": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תציינה": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "אציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תצוין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תצויני": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תצייני": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מצוין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מצוינים": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינה": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוינת": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תצוינו": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוינתי": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינו!": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "לציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינת": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוינתן": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תצוינה": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציון": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוינו": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציינתן": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "יצוין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "נציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "יציין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "אצוין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צ - י - ן": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "ציין!": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מצוינות": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "להצטיין": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "צוינה": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "מצוינת": [
- {
- "word_nikkud": "לְצַיֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1790-letzayen"
- }
- ],
- "תשתלטי": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "תשתלטו": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "משתלט": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטי!": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטתן": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטתם": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטנו": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "משתלטות": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "משתלטים": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "אשתלט": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "תשתלט": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטת": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלט": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטו": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלט!": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטה": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "נשתלט": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "תשתלטנה": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "ישתלטו": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטתי": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "משתלטת": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטו!": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "ישתלט": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "השתלטנה!": [
- {
- "word_nikkud": "לְהִשְׁתַּלֵּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2226-lehishtalet"
- }
- ],
- "חייך!": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכנה!": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "מחייכת": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "נחייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "מחייכות": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכתם": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "תחייכי": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכנו": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "מחייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "אחייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חיוך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכי!": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "ח - י - ך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכו!": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "תחייכו": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "מחויך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "תחייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "לחייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "יחייכו": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "מחייכים": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכת": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכתן": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "יחייך": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכה": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכתי": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכו": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "חייכן": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "תחייכנה": [
- {
- "word_nikkud": "לְחַיֵּךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "591-lechayech"
- }
- ],
- "שלמתם": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמתי": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמת": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמנו": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמו": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמה": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמתן": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "שלמים": [
- {
- "word_nikkud": "לִשְׁלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2798-lishlom"
- }
- ],
- "הקיאו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאתן": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תוקאנה": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מקיאים": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "נוקא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "יקיאו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאתי": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאת": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאנו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תוקאו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "יוקא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מוקא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "ק - י - א": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "אקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מוקאים": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאתם": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מקיאות": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "יוקאו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מקיאה": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקאת": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "נקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקאה": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקאתי": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מוקאות": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תוקא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקא!": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקיאו!": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקיאי!": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "אוקא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקאנו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תקאנה": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "מוקאת": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקאתם": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תוקאי": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "יקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקאנה!": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקאתן": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הקיאה": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "להקיא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "הוקא": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תקיאו": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "תקיאי": [
- {
- "word_nikkud": "לְהָקִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1894-lehaki"
- }
- ],
- "ניעלם": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "ייעלמו": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמנו": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "תיעלמו": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "היעלמו!": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "היעלם!": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "איעלם": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמה": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמתן": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמתם": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמים": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלם": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמתי": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמו": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמת": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "היעלמי!": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "היעלמנה!": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "נעלמות": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "ייעלם": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "תיעלם": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "תיעלמנה": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "תיעלמי": [
- {
- "word_nikkud": "לְהֵעָלֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1499-lehealem"
- }
- ],
- "ארזתי": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזי!": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "לארוז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזתם": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "להיארז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזת": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזתן": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "נארוז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "אורזות": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "אורזת": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "תארזי": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארוזנה!": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארוז!": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "יארוז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "א - ר - ז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "אורז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזנו": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "יארזו": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "תארוז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזו!": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזה": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "אורזים": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "אארוז": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "ארזו": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "תארוזנה": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "תארזו": [
- {
- "word_nikkud": "לֶאֱרֹז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "153-leeroz"
- }
- ],
- "לעלוב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבנו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבנה!": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מעליבה": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבה": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבתן": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "אעליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבתי": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבת": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבה": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מעליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבת": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "להיעלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מועלבים": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תעליבו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "יועלבו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מעליבים": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תעליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "להעליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מועלבת": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבתם": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "נועלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תועלבו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העליבו!": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העליבה": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מועלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תועלבי": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העליבי!": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מעליבות": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תועלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבתן": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "יעליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "מועלבות": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבתם": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "יועלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תעליבי": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "יעליבו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "ע - ל - ב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבתי": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העליבו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "עלוב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "נעליב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלב!": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תעלבנה": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "תועלבנה": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "אועלב": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "הועלבו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "עלבון": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "העלבנו": [
- {
- "word_nikkud": "לְהַעֲלִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1494-lehaaliv"
- }
- ],
- "פרוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פורשת": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "תפרשו": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "תפרוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "תפרושנה": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פורשות": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשתי": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "הפרש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "אפרוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרושנה!": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "יפרוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרישה": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרישות": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "הפרשה": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשן": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשת": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשה": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "תפרשי": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "להתפרש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשו!": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "נפרוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "לפרוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשנות": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "יפרשו": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשו": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרוש!": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פירוש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פורש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "להפריש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פורשים": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשתם": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשנו": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "לפרש": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשי!": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פרשתן": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "פ - ר - שׁ": [
- {
- "word_nikkud": "לִפְרֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1726-lifrosh"
- }
- ],
- "נשמעה": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "תישמע": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "יישמעו": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעת": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "הישמענה!": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "תישמעי": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעו": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעתי": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעתם": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "הישמעי!": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "הישמעו!": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נישמע": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "תישמענה": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "יישמע": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "תישמעו": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמענו": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעתן": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "הישמע!": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעים": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "נשמעות": [
- {
- "word_nikkud": "לְהִשָּׁמֵעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2251-lehishamea"
- }
- ],
- "להישרף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "תשרוף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפת": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפנו": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "ישרוף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרוף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שורף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שורפת": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפי!": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "תשרפו": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרוף!": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "נשרוף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שורפות": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "ישרפו": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפתם": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרופנה!": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שורפים": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפו": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "תשרופנה": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "תשרפי": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפו!": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפה": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפתן": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שרפתי": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "אשרוף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "לשרוף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שׂ - ר - ף": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "שריפה": [
- {
- "word_nikkud": "לִשְׂרֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2321-lisrof"
- }
- ],
- "תואכלי": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מאכילים": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכלתי": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "תואכלנה": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "יאכילו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מואכלים": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "אאכיל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכילה": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מאכילות": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "יואכל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "תואכלו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "תאכיל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מאכיל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלנו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלת": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכילי!": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכלת": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "תאכילי": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "אואכל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מואכלת": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "יואכלו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "נאכיל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "יאכיל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכלנו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכיל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכל!": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכלתם": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלתן": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מואכלות": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלתם": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכילו!": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלה": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מאכילה": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מואכל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "תואכל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "הואכלתי": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכלתן": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "תאכילו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכלנה!": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "האכילו": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "נואכל": [
- {
- "word_nikkud": "לְהַאֲכִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "99-lehaachil"
- }
- ],
- "מטווחות": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחת": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "לטווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחנו": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "תטווחי": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחה": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "תטווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "ט - ו - ח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחתן": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחה": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "אטווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "נטווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "מטווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "יטווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "מטווחת": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחתם": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "להטיח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחו": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחנה!": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחת": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "תטווחו": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחנו": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחתי": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחי!": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחתם": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "מטווחים": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחו": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "יטווחו": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טיווחתי": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחתן": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווח": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווח!": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "טווחו!": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "תטווחנה": [
- {
- "word_nikkud": "לְטַוֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "6046-letaveach"
- }
- ],
- "תשכור": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "ישכרו": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרת": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "תשכרו": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שׂ - כ - ר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "להשתכר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "אשכור": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרו!": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרי!": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "תשכורנה": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכור": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכירות": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרתי": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "להישכר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרנו": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכור!": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרו": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרתם": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שוכרת": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "לשכור": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "להשכיר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שוכר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שוכרות": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרה": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכיר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכירה": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכר": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "ישכור": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "תשכרי": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "השכרה": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "נשכור": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "משכורת": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שוכרים": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכרתן": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "שכורנה!": [
- {
- "word_nikkud": "לִשְׂכֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2208-liskor"
- }
- ],
- "הרחנו": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "יריחו": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "להריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הרחנה!": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחונו": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "תרחנה": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחו": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחו!": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "ריחני": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "מריחים": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחה": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "תריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחותן": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "מריחות": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחות": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחותם": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הרחתן": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "יריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחותי": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הרחתי": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "אריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הריחי!": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הרחתם": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "תריחינה": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הרח!": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "נריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "תריחי": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "ריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "תריחו": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "מריח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "הרחת": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "מריחה": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "ר - י - ח": [
- {
- "word_nikkud": "לְהָרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2036-lehariach"
- }
- ],
- "השתחררת": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "ישתחרר": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "משתחרר": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררתם": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "תשתחררנה": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "משתחררת": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררו": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "תשתחררו": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררנו": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "משתחררים": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "משתחררות": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "אשתחרר": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררתי": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחרר": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "ישתחררו": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררתן": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררנה!": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררה": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררי!": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחררו!": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "תשתחררי": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "השתחרר!": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "תשתחרר": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "נשתחרר": [
- {
- "word_nikkud": "לְהִשְׁתַּחְרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2177-lehishtachrer"
- }
- ],
- "מ - ס - פ - ר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמוספרו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספר!": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרי!": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממוספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממוספרת": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ימספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמוספרנה": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמספרו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמספרנה": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרנו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממספרות": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ימוספרו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "אמוספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "נמוספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמוספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמוספרי": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממספרת": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממוספרים": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרתן": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרתן": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרנה!": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרתם": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרה": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרתי": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ימוספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרתם": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממוספרות": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרת": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "למספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ימספרו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "תמספרי": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "נמספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרו!": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מוספרנו": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "אמספר": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "ממספרים": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "מספרתי": [
- {
- "word_nikkud": "לְמַסְפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2431-lemasper"
- }
- ],
- "שׁ - ג - ח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגח!": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחת": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגיחי!": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "אושגח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "מושגחות": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תושגחו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "להשגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "משגיחות": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "נשגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחה": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תשגיחי": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "מושגחים": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "יושגח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תשגחנה": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגיחה": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגיחו!": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "משגיחים": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחתי": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "משגיחה": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחתן": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחנו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחת": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "נושגח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגיחו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תשגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "מושגחת": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחנו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "אשגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחה": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "ישגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תושגח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "הושגחתם": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תושגחנה": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחתם": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "מושגח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תשגיחו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחנה!": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחתן": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "יושגחו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "משגיח": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "תושגחי": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "ישגיחו": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "השגחתי": [
- {
- "word_nikkud": "לְהַשְׁגִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2141-lehashgiach"
- }
- ],
- "יצודו": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צודנה!": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "לצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "תצודנה": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "יצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "נצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "תצודו": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "אצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדתן": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צודי!": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדה": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "מצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צודינה!": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדו": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדות": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "תצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צ - ו - ד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדתם": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדתי": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צודו!": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדים": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "תצודינה": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדנו": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צוד!": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "מצודה": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "צדת": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "תצודי": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "להיצוד": [
- {
- "word_nikkud": "לָצוּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1773-latzud"
- }
- ],
- "התעוררנה!": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "לעור": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עיוורון": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "הערה": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "התעוררנו": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעוררה": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעורר!": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "מתעוררות": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "מתעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "עיוור": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "התעוררו!": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "להיעור": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "יתעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "להתעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "לעוור": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "להעיר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "מתעוררת": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעוררת": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "תתעוררי": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעוררי!": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "אתעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעוררתן": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "תתעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעוררתי": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "ע - ו - ר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "תתעוררנה": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "לעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "תתעוררו": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "להתעוור": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "התעוררו": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "יתעוררו": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "התעוררתם": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "מתעוררים": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "נתעורר": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- }
- ],
- "מערה": [
- {
- "word_nikkud": "לְהִתְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1468-lehitorer"
- },
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- },
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "נזהרתן": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "היזהרו!": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרתם": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "ניזהר": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "היזהר!": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תיזהר": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תיזהרו": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תיזהרנה": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרת": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרו": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "היזהרי!": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרים": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "ייזהר": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "ייזהרו": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "אזהר": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרות": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרנו": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרה": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהר": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "תיזהרי": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "היזהרנה!": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "נזהרתי": [
- {
- "word_nikkud": "לְהִזָּהֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "488-lehizaher"
- }
- ],
- "חוצה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "ח - צ - ה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "יחצה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חציתי": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "אחצה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "יחצו": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חציתן": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "תחצה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצי!": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "לחצות": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "תחצי": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצאית": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצות": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חוצים": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "להיחצות": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצינו": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצו": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חציתם": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "תחצינה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצי": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצית": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצתה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "מחצית": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצינה!": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "יחץ": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "נחצה": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצה!": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חוצות": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "תחצו": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "חצו!": [
- {
- "word_nikkud": "לַחֲצוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "667-lachatzot"
- }
- ],
- "צוירנו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציור": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירת": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מציירת": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צויר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "נצייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "יציירו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "יצויר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צוירתם": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "יצוירו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תצוירנה": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירתי": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צוירתי": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירי!": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צוירה": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תצויר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צ - י - ר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מצוירות": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תצוירי": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מצוירים": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מצייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירנו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "לצייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תציירנה": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מצוירת": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צייר!": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תצוירו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תציירו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מציירים": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירנה!": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צוירת": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "נצויר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירה": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תצייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "להצטייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "אצייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירתם": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "אצויר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צוירתן": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "יצייר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מצויר": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "תציירי": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "צוירו": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "מציירות": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירתן": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "ציירו!": [
- {
- "word_nikkud": "לְצַיֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1794-letzayer"
- }
- ],
- "הורחקה": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחיקו!": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקתי": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מורחק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מרחיקים": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תורחקו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תורחקי": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מרחיקה": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "נרחיק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תורחק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחקת": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקתן": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחקנו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מרחיק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחקו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "ארחיק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תרחיק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחקתי": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תרחיקי": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מורחקת": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחיקי!": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "אורחק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "יורחק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחיקה": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחק!": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקתם": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקת": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחיק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תרחקנה": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תרחיקו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "ירחיק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מורחקים": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "יורחקו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחיקו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקנה!": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הרחקנו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מרחיקות": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "מורחקות": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "נורחק": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תורחקנה": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחקתן": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "הורחקתם": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "ירחיקו": [
- {
- "word_nikkud": "לְהַרְחִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2025-leharchik"
- }
- ],
- "תסוכנה": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סוכנות": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "מסוכנים": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סכנה": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "יסוכנו": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "תסוכני": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סוכנת": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "מסוכנת": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "נסכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "תסכנה": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סכנו!": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סוכנה": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "מסוכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "יסכנו": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "נסוכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "להסתכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "תסכני": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "אסכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "מסכנת": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכנת": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "תסכנו": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סכן!": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכנתן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "תסוכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "ס - כ - ן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "מסכנות": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סוכנתם": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סכין": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "סוכנתן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "אסוכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכנתם": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכנו": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "יסוכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "מסוכנות": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "להסכין": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "לסכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "תסוכנו": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "יסכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכון": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "סוכנו": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סכנה!": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סכני!": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכנה": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "תסכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סוכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- },
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "מסכן": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סיכנתי": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "מסכנים": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "סוכנתי": [
- {
- "word_nikkud": "לְסַכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1356-lesaken"
- }
- ],
- "מנתקים": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נתקי!": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנותקנה": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ינותקו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנתקות": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקנו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ננתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ינתקו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנותק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנתקת": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנותקת": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "הינתקות": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "לנתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "להינתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נתקנה!": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקת": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנתקי": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נ - ת - ק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקתן": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנותק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "אנתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ינתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתוק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקת": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ינותק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקנו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקתם": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "אנותק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ננותק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנותקי": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "להתנתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "התנתקות": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקה": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקתן": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "להתיק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקתם": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נתקו!": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנותקו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתקתי": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנתקו": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקתי": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נתק!": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנותקים": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "תנתקנה": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "מנותקות": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "ניתק": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "נותקה": [
- {
- "word_nikkud": "לְנַתֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1288-lenatek"
- }
- ],
- "רפא!": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "לרפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרפאי": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רפאי!": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "נרופא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרפאים": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאתם": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרפאנה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרופא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאת": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאתן": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ארופא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפוי": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רפואי": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרפאו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ירפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "לרפוא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ירופאו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרופאנה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרפאות": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרופה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רפואה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאנו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "נרפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרופא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ארפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרופאות": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאת": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רפאנה!": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאתי": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאתי": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרופאי": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ריפאתן": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרפאה": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרופאים": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ירופא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרופאת": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "תרופאו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ירפאו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "להתרפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרפאת": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאתם": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רופאנו": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "רפאו!": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "ר - פ - א": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "להירפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "מרפא": [
- {
- "word_nikkud": "לְרַפֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2079-lerape"
- }
- ],
- "הביסותן": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מובסת": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסונו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תובסי": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מביסות": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסות": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מובס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מביסה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תבסנה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסתי": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "להתבוסס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבסתי": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תביסו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסי!": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "יובסו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "להביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסנו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסו!": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבסתן": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "יביסו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסותם": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "נובס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מביסים": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תביסי": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תביסינה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבסנו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "ב - ו - ס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תובסנה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "יביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מובסים": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "יובס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "מובסות": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הביסותי": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבסת": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבסתם": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסתן": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תובסינה": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "נביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסת": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תובסו": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "אביס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבסנה!": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הבס!": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "הובסתם": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "תובס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "אובס": [
- {
- "word_nikkud": "לְהָבִיס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "191-lehavis"
- }
- ],
- "ספורנה!": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "תספור": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סופרים": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרתם": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "אספור": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרתן": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "תספורנה": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרתי": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספור!": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "יספור": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "נספור": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרו": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרת": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "ספרנו": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "סופרות": [
- {
- "word_nikkud": "לִסְפֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1408-lispor"
- }
- ],
- "רשמת": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמו!": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמנו": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "ירשמו": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמתן": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "הרשמה": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תרשמי": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "תרשים": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "רשמה": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמתם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "תרשמו": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשומנה!": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמו": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רושמות": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "תרשום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשום!": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמי": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "רושמת": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "נרשום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשמתי": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "להתרשם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "להרשים": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "רושמים": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "התרשמות": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "רשימה": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תרשומנה": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "מרשם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "ארשום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רישום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "לרשום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "להירשם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "ירשום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "ר - שׁ - ם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "רשמי!": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- }
- ],
- "רשום": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "רושם": [
- {
- "word_nikkud": "לִרְשֹׁם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2103-lirshom"
- },
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "שׁ - פ - ט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטה": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "אשפוט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפוטנה!": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "תשפטו": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטת": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "לשפוט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטו!": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שופטת": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטי!": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "תשפוט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שופט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטתי": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "תשפוטנה": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שיפוט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטו": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שופטים": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "משפטי": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטתן": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "ישפטו": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "להישפט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "ישפוט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטתם": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "תשפטי": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "נשפוט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפוט!": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפטנו": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שופטות": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "שפט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "משפט": [
- {
- "word_nikkud": "לִשְׁפֹּט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2282-lishpot"
- }
- ],
- "נימלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "יימלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "מ - ל - ט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "להמליט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "תימלטנה": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "מילוט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "הימלט!": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "הימלטו!": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטתם": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטתן": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטה": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "אמלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "תימלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "תימלטו": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "להימלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "תימלטי": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "יימלטו": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "מלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "הימלטנה!": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "למלט": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "מליטה": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטתי": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטו": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטים": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטת": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "הימלטי!": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטות": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "נמלטנו": [
- {
- "word_nikkud": "לְהִמָּלֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1056-lehimalet"
- }
- ],
- "תפספסנה": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפוספסו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "יפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפוספסת": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסה": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסנה!": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פיספוס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "לפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "להתפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפוספסות": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסת": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "יפוספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסתי": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "נפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "יפוספסו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "יפספסו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפספסת": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסה": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסתם": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסתם": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפוספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפספסו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסנו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסתן": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספס!": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "נפוספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פוספסנו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסתן": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסו": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסו!": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסתי": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפוספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפוספסנה": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסי!": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פ - ס - פ - ס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפספסים": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפספסות": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפספסי": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "אפוספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "פספסת": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "אפספס": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "מפוספסים": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "תפוספסי": [
- {
- "word_nikkud": "לְפַסְפֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1654-lefasfes"
- }
- ],
- "השפיעה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תשפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפעו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "אשפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "שפעת": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפענה!": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפעתי": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "משופע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "לשפוע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפעתן": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפעת": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפע!": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפעתי": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "שפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "משפיעות": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "מושפעת": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תשפענה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תשפיעו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפעתן": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "יושפעו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תושפעי": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "מושפעות": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפעתם": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "נשפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "מושפעים": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "משפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "שפעה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפעת": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תושפענה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "יושפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "לשפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפעתם": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "שיפוע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "מושפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "משפיעה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפיעי!": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "אושפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפעה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפיעו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "שׁ - פ - ע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "משפיעים": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תשפיעי": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "להשפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "נושפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "ישפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "ישפיעו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפעה": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפענו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תושפעו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפיע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "תושפע": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הושפענו": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "השפיעו!": [
- {
- "word_nikkud": "לְהַשְׁפִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2290-lehashpia"
- }
- ],
- "הוקמה": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הוקמתי": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "יוקם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תוקם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הוקמו": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תוקמי": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תוקמינה": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מוקמים": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הוקמת": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הוקמתן": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "אוקם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מוקם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מוקמות": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הוקם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "הוקמנו": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "נוקם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- },
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "הוקמתם": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "יוקמו": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תוקמנה": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "מוקמת": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "תוקמו": [
- {
- "word_nikkud": "לְהָקִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1877-lehakim"
- }
- ],
- "חסכתן": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "תחסכו": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכתי": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכנות": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכת": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכו!": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכן": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "תחסוך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "יחסכו": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חוסכות": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "נחסוך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "תחסוכנה": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "לחסוך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "אחסוך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכתם": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכי!": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חוסכים": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "תחסכי": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסוך!": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חוסכת": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חוסך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "יחסוך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכה": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "להיחסך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חיסכון": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכנו": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסכו": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "ח - ס - ך": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "חסוכנה!": [
- {
- "word_nikkud": "לַחֲסֹךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "645-lachasoch"
- }
- ],
- "סליק": [
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "ס - ל - ק": [
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "סלק": [
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "להסליק": [
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "סילוק": [
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "לסלק": [
- {
- "word_nikkud": "לְהִסְתַּלֵּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1370-lehistalek"
- }
- ],
- "שולבה": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשלובת": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "נשולב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשלבי": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשולבי": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבתם": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "להשתלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משלבות": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שלב!": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשלבו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולבנו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולבתן": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "ישלבו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "ישולבו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולבתם": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "אשלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולבתי": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "לשלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "ישולב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשולב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משלבים": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבנו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משולבות": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילוב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "ישלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבתן": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שלבנה!": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשולבנה": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולבת": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשלבנה": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משלבת": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבה": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "אשולב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "תשולבו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבת": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שׁ - ל - ב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משולבת": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משולבים": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "נשלב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שלבי!": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "משולב": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שלבו!": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שילבתי": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "שולבו": [
- {
- "word_nikkud": "לְשַׁלֵּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2213-leshalev"
- }
- ],
- "התחברתן": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברו": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחבר": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "מתחברים": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "מתחברות": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "אתחבר": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "יתחברו": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברת": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תתחבר": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תתחברנה": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "נתחבר": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברנה!": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברו!": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברה": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "מתחברת": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברנו": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תתחברו": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברי!": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "מתחבר": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחבר!": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "תתחברי": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "יתחבר": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברתי": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "התחברתם": [
- {
- "word_nikkud": "לְהִתְחַבֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "552-lehitchaber"
- }
- ],
- "גדל": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלתן": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלתם": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלת": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלנו": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלתי": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלו": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלה": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "גדלות": [
- {
- "word_nikkud": "לִגְדֹּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "298-ligdol"
- }
- ],
- "ממרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממורכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמורכזנה": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מ - ר - כ - ז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ימורכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכז!": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "אמורכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזנו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממרכזת": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממורכזים": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזת": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזתן": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממרכזים": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזתן": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמרכזו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "להתמרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזתם": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ימורכזו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזתי": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזו!": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמורכזו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "אמרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ימרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "נמורכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזי!": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזתי": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזה": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "נמרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממרכזות": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזתם": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממורכזת": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזה": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמרכזי": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזנה!": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמורכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מרכזנו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "למרכז": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ממורכזות": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמרכזנה": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "ימרכזו": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "תמורכזי": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "מורכזת": [
- {
- "word_nikkud": "לְמַרְכֵּז",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "3851-lemarkez"
- }
- ],
- "העירי!": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הערתי": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערתי": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מוער": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מעירים": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תעירינה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הערת": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תוער": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "נוער": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערתן": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוער": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מוערים": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תעירי": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "נעיר": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "יעיר": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מעירות": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מוערות": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערת": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תוערי": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערנו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "יוער": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הוערתם": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מעירה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירותן": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תוערו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירו!": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תעירו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תוערינה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הערנה!": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "יוערו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירונו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מעיר": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תוערנה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הערתם": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירות": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "אעיר": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הערתן": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תעיר": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "מוערת": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הערנו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העיר": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "תערנה": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירותם": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "העירותי": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "אוער": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "יעירו": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "הער!": [
- {
- "word_nikkud": "לְהָעִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1466-lehair"
- }
- ],
- "התמקדתם": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדנו": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדת": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדו": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מ - ק - ד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקד!": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "להתמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדתי": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "תתמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מיקוד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "תתמקדו": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מתמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדנה!": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "למקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מתמקדות": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדו!": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מתמקדים": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "יתמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדתן": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדי!": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "תתמקדנה": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "יתמקדו": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "נתמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "התמקדה": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מוקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "מתמקדת": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "תתמקדי": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "אתמקד": [
- {
- "word_nikkud": "לְהִתְמַקֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1092-lehitmaked"
- }
- ],
- "סירבת": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירבתי": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסורבים": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסרבנה": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבתי": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "יסרב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סרבו!": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירבה": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסורבי": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסרבו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירבו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסרבת": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסורבו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסרב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "יסורבו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סרבי!": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבנו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסרבות": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבתן": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסרבים": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסרב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "לסרב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "אסורב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירבתם": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסורבת": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "אסרב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "נסורב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסורבות": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סרבנה!": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירבתן": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסרבי": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירוב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירבנו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבה": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "מסורב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסורבנה": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "יסרבו": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סרב!": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "ס - ר - ב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סירב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "תסורב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבת": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "סורבתם": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "נסרב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "יסורב": [
- {
- "word_nikkud": "לְסָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1417-lesarev"
- }
- ],
- "חושי!": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשנו": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחושו": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחושתי": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשתם": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחושינה": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "יחושו": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשות": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "להחיש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשתן": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חושו!": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "לחוש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחושנה": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשתי": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשת": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחושי": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חושינה!": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "מוחשי": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "אחוש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חושנה!": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשים": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחוש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "מוחש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "יחוש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חיישן": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "ח - ו - שׁ": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "תחושה": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חוש!": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשה": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חוש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חשו": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "חש": [
- {
- "word_nikkud": "לָחוּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "573-lachush"
- }
- ],
- "עורבו": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירב": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תעורבי": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מעורבים": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מערבת": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבי!": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "יעורב": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבת": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערב!": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מערבות": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבתן": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבו": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תעורבנה": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עורבה": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבנה!": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבנו": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "ערבו!": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבתם": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מעורבות": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עורבנו": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבתי": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עורבת": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מערבים": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עורבתן": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עורבתי": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מעורב": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "יעורבו": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "אעורב": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עורבתם": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תעורבו": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "נעורב": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מעורבת": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "תעורב": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "עירבה": [
- {
- "word_nikkud": "לְעָרֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2603-learev"
- }
- ],
- "מסתכן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "יסתכן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנה!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכני!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "יסתכנו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "מסתכנים": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "תסתכני": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "אסתכן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנתן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "תסתכנה": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנו!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנתי": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "מסתכנת": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנתם": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "תסתכן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "נסתכן": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנה": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכן!": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "מסתכנות": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "תסתכנו": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "הסתכנת": [
- {
- "word_nikkud": "לְהִסְתַּכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1357-lehistaken"
- }
- ],
- "להתייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "יתייחסו": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "מתייחסות": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "יחסי": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסתי": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "מתייחסת": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסתן": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחס!": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "יחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסי!": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "תתייחסי": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "יוחסין": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסנה!": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסו": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "יחסות": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "מתייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "לייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "אתייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "נתייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסנו": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "מתייחסים": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסת": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסו!": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "תתייחסנה": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסתם": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסה": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "י - ח - ס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "התייחסות": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "יתייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "תתייחסו": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "תתייחס": [
- {
- "word_nikkud": "לְהִתְיַחֵס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "806-lehityaches"
- }
- ],
- "השבת": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושבה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "תושבו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "להשתובב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "מושבת": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "מושבות": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "מושבים": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושבתם": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "ישיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "נשיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבי!": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "לשוב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "השיבותן": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "להשיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "הושבנו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "תושבינה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "משיבים": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "תושבי": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "אושב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "שוב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשיבי": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "תשובה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבות": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "משיבה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "משיבות": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השב!": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושבתי": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "אשיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושבתן": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "מושב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "יושבו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השבנו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השבתן": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השבתי": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושבת": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "שיבה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשיבינה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השבתם": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "משוב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תושבנה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השבנה!": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבה": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "משיבון": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "השיבותם": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבונו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "שׁ - ו - ב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- },
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשיבו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבו!": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "משיב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "הושבו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "ישיבו": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "השיבותי": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "נושב": [
- {
- "word_nikkud": "לְהָשִׁיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2155-lehashiv"
- }
- ],
- "מ - ח - ק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "נמחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקי!": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחיק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "להימחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחוקנה!": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחיקה": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "ימחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "תמחקו": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "למחוק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מוחקת": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקת": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "תמחוקנה": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחוק!": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקתם": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקתי": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחק!": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקה": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "תמחוק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקו!": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "תמחקי": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקנה!": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקו": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "תמחקנה": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "תמחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקתן": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מוחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מוחקות": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "נמחוק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מוחקים": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "אמחוק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "ימחוק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "מחקנו": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "ימחקו": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "אמחק": [
- {
- "word_nikkud": "לִמְחֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1046-limchok"
- }
- ],
- "ב - ח - ן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "הובחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "יבחינו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "אובחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תבחיני": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "מבחינים": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחינה": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחינו!": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תובחני": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תובחנו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הובחנתן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "מובחנת": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הובחנו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "נובחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "להבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "תבחנה": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "מבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הובחנתם": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחינו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "מבחינות": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "מובחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "מבחינה": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחנתי": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "יבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחנו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הובחנה": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחן!": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחנתן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תובחנה": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחנתם": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הובחנתי": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחנה!": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הבחנת": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "לבחון": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "מובחנים": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "מובחנות": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תבחינו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תובחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "תבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "יובחנו": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "אבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "להיבחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- },
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "הבחיני!": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "יובחן": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "הובחנת": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "נבחין": [
- {
- "word_nikkud": "לְהַבְחִין",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "204-lehavchin"
- }
- ],
- "בוחנת": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "יבחן": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנתן": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "תבחני": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנה!": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנת": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "תבחן": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנו!": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בוחנות": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנו": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "נבחן": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנתם": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנתי": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "יבחנו": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחני!": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחן!": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בוחנים": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחן": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "בחנה": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "אבחן": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "תבחנו": [
- {
- "word_nikkud": "לִבְחֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "202-livchon"
- }
- ],
- "אזרו": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרתי": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזורי": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "יאזרו": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזר": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "להתאזר": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "תאזור": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אאזור": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "תאזרי": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרת": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אוזר": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרנו": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "תאזרו": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אוזרות": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרה": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אוזרת": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אוזרים": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרו!": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "א - ז - ר": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרתן": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזורנה!": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזור!": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "נאזור": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרתם": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "תאזורנה": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "יאזור": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "אזרי!": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "לאזור": [
- {
- "word_nikkud": "לֶאֱזֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "81-leezor"
- }
- ],
- "מוענקות": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "נעניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "העניקו!": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מוענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "העניקו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תוענקנה": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מעניקה": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מעניקים": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תעניקי": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מוענקת": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "אעניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מוענקים": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענק!": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "יוענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "יעניקו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקה": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מעניקות": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "העניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "אוענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "יוענקו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענקתן": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תעניקו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקתי": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענקתם": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענקנה!": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "העניקי!": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקנו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תוענקו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תוענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "נוענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקתן": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "יעניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תענקנה": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תוענקי": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענקת": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "ענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענקנו": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "תעניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקתם": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "העניקה": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "להעניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "ע - נ - ק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענקת": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הענקתי": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "הוענק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "מעניק": [
- {
- "word_nikkud": "לְהַעֲנִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1524-lehaanik"
- }
- ],
- "פצינו": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצה!": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "נפצה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פוצה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצית": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "תפצה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פציתן": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצינה!": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצו!": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פציתי": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "לפצות": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "יפצו": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצתה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "תפצו": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "תפצי": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצו": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פוצות": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצי!": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "אפצה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פצה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "תפצינה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פ - צ - ה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פציתם": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "יפצה": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פיצוי": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "פוצים": [
- {
- "word_nikkud": "לְפַצּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1667-liftzot"
- }
- ],
- "נשומש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שמשי!": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משמש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשומשו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "אשומש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "ישומשו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשנו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שמש!": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שמשו!": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משומשים": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשנו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "אשמש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "ישמש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשה": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "ישומש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משמשת": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שמשנה!": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשומש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשמשנה": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשת": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משומשות": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "ישמשו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשתי": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשתם": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משומש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשה": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשומשנה": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשומשי": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משומשת": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשתי": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשתן": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשמשי": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משמשות": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשמש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "תשמשו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשו": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשת": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "נשמש": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שימשתן": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "שומשתם": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "משמשים": [
- {
- "word_nikkud": "לְשַׁמֵּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2259-leshamesh"
- }
- ],
- "ידחו": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחיתן": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "ד - ח - ה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "אדחה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "תדחה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דוחות": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחו!": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחי!": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דיחוי": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחתה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "נדחה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחוי": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחינו": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחינה!": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "להידחות": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחיתי": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "תדחי": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחה!": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחייה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחיינות": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דוחים": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחיין": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "תדחו": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דוחה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחו": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "תדחינה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחית": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "לדחות": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחיתם": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "דחה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "ידחה": [
- {
- "word_nikkud": "לִדְחוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2516-lidchot"
- }
- ],
- "הגבתן": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תוגבו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "נוגב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תוגבי": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבתי": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מגיבים": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבות": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "יוגבו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מוגבת": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבי!": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "יגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבתם": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תגבנה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "להגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבותם": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מוגב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבו!": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגבתם": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבותן": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תגיבינה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "אוגב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגבת": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תוגב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "נגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבת": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגבתי": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגבנו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מוגבים": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תגיבי": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "יוגב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבותי": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגבנה!": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "ג - ו - ב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תוגבנה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגב!": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "יגיבו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מגיבות": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תגיבו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הגיבונו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "אגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מגיב": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבנו": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "תוגבינה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "הוגבתן": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מוגבות": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "מגיבה": [
- {
- "word_nikkud": "לְהָגִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "311-lehagiv"
- }
- ],
- "ח - ב - א": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאה": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאתי": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאו": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "מתחבאות": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "תתחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "מחבוא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאתן": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "מתחבאה": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "להתחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאתם": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאת": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "נתחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאנה!": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "מתחבאים": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "תתחבאי": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "תתחבאנה": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאי!": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "יתחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "להחביא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאנו": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "מתחבאת": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבאו!": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "התחבא!": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "יתחבאו": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "תתחבאו": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "אתחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "להיחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "מתחבא": [
- {
- "word_nikkud": "לְהִתְחַבֵּא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "542-lehitchabe"
- }
- ],
- "טוילנו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טוילת": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטוילו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "יטיילו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "לטייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטוילת": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "יטויל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטיילים": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טויל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילי!": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טוילתם": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "ט - י - ל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "נטויל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטיילת": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "יטייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטיילו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטיילנה": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילנה!": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילתם": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטוילנה": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילנו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילת": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טוילתן": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטיילי": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טוילתי": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטוילים": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "אטייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טוילה": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "יטוילו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטויל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טייל!": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "אטויל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילתן": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילתי": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טוילו": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטוילות": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטוילי": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תטויל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "נטייל": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילה": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיילו!": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "מטיילות": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "טיול": [
- {
- "word_nikkud": "לְטַיֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "743-letayel"
- }
- ],
- "תתוכנני": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננתי": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתכננות": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתוכננת": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתכנני": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכננתם": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "יתוכננו": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכננו": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתוכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "יתכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכננתן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתוכננות": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתכננה": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננתם": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכנן!": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננת": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננו!": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכננת": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "לתכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננתן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכננתי": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתוכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "ת - כ - נ - ן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "אתוכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתוכננה": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתכננים": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתכננת": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננה": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננו": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "מתוכננים": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תוכננה": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "נתכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכנני!": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "נתוכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתוכננו": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכננה!": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתכננו": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "יתוכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "יתכננו": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "אתכנן": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תכנון": [
- {
- "word_nikkud": "לְתַכְנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2363-letachnen"
- }
- ],
- "תתלה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תולה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "להיתלות": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלינו": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "יתלה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "אתלה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלו": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תליתי": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלינה!": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "נתלה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלות": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "להתלות": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלה!": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלית": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "לתלות": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "יתלו": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תתלינה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תליתן": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תליתם": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תולות": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלתה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלייה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלוי": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תתלי": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "ת - ל - ה": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תליון": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תולים": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תתלו": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלי!": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "תלו!": [
- {
- "word_nikkud": "לִתְלוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2365-litlot"
- }
- ],
- "התאמת": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמתי": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "יתאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "נותאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאימו!": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תותאמו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מתאימים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תאום": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מותאמים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מותאמות": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "יתאימו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תתאימי": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאם!": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "לתאום": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "נתאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מותאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמה": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמתם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מתאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "יותאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "אותאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאמה": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "אתאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאימי!": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאמתם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מותאמת": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תותאמי": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תותאמנה": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמתן": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "ת - א - ם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאימה": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמנו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תותאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "יותאמו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תיאום": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תתאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "תתאימו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מתאימה": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאם": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאמתי": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאימו": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "מתאימות": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "התאמתן": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "להתאים": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "הותאמת": [
- {
- "word_nikkud": "לְהַתְאִים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2345-lehatim"
- }
- ],
- "לווינו": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "ילוו": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוו": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוויתן": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוותה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "להילוות": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "ילווה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "הלוואה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "להלוות": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "תלווינה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוו!": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווים": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווי!": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "ללוות": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "הלוויה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "נלווה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "להתלוות": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוויתם": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "תלווי": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווית": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוואי": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוויין": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווה!": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "ליווי": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לוויתי": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווות": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "ל - ו - ה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "אלווה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "תלווה": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "לווינה!": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "תלוו": [
- {
- "word_nikkud": "לְלַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "983-lilvot"
- }
- ],
- "נעולנה!": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעלו": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "לנעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעילה": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "ננעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "אנעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלו!": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעלי": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נ - ע - ל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נועלת": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נועלות": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלתן": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "מנעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלו": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "ינעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעול": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלת": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נועלים": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "להינעל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעולת": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "ינעל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלי!": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלתי": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלתם": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעולנה": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלנו": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "ינעלו": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעלנה!": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נועל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "אנעל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעול!": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "נעל!": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "להנעיל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "ננעל": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "תנעלנה": [
- {
- "word_nikkud": "לִנְעֹל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2627-linol"
- }
- ],
- "הטרידו!": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תוטרדי": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מטרידים": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תוטרדנה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "ט - ר - ד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "אטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדתם": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדתם": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדנה!": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מטרידות": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "לטרוד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדתי": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדנו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מוטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרידה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדת": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "יטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "טרוד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרידו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרד!": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדנו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מוטרדת": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרידי!": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "נוטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "נטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדתי": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרדתן": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "אוטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הוטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "יוטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מטרידה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תטרידי": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תוטרד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "יטרידו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "יוטרדו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדתן": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תטרידו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תטרדנה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדת": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "להטריד": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "תוטרדו": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הטרדה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מוטרדות": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "טרדה": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "מוטרדים": [
- {
- "word_nikkud": "לְהַטְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "764-lehatrid"
- }
- ],
- "הבהירה": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהירו!": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "נבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרנו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תבהירו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תבהרנה": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "אובהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "בהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהרתן": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "יובהרו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהרנו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "להתבהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תובהרנה": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תובהרו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תובהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "יובהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרתם": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מובהרות": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהרת": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "יבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מובהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהירו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהרתם": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהרנה!": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהרתי": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מבהירה": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מובהרים": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "להבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרתי": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "ב - ה - ר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "אבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהירי!": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרה": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "יבהירו": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תובהרי": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "תבהירי": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מבהיר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרת": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מובהרת": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מבהירות": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "נובהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהרתן": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הבהר!": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "מבהירים": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "הובהר": [
- {
- "word_nikkud": "לְהַבְהִיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "186-lehavhir"
- }
- ],
- "כווני!": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונו": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כיוונה": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "תכוונו": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכוונים": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כיוונתי": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "נכוון": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונתי": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכוונות": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כיוונתם": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כיוונתן": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "תכווני": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוון": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונה!": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כיוונו": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "תכוונה": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "אכוון": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כיוונת": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "תכוון": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכוון": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "מכוונת": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "יכוון": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונת": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוון!": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונו!": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונתן": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "יכוונו": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "כוונתם": [
- {
- "word_nikkud": "לְכַוֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "894-lechaven"
- }
- ],
- "דגתם": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דוגו!": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגת": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דייג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "תדוגינה": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דוגי!": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "תדוגי": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "אדוג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דוגינה!": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "ד - ו - ג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "תדוגנה": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "תדוג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "ידוג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דוגנה!": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגים": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגה": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגתן": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "לדוג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגתי": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגות": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגו": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דגנו": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "ידוגו": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "נדוג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דג": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "דוג!": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "תדוגו": [
- {
- "word_nikkud": "לָדוּג",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "409-ladug"
- }
- ],
- "ממרות": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "תמירינה": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרתם": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "תמרו": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "ממר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "מריר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "להמר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המירותי": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המירותם": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרנו": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרו": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "תמרנה": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "למרר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "מרור": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "נמר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המירות": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרתי": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרי!": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "ימר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "תמר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "מר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "מ - ר - ר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרו!": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרנה!": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "ממרים": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרת": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרה": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "ימרו": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "ממרה": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "תמרי": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המרתן": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המר!": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המר": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המירותן": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "המירונו": [
- {
- "word_nikkud": "לְהַמֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2555-lehamer"
- }
- ],
- "תיזכרי": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "היזכרי!": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרתם": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "היזכר!": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרו": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "ייזכרו": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרתן": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "תיזכרו": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "היזכרנה!": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרתי": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרת": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרנו": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרה": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "ייזכר": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "תיזכר": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרות": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "אזכר": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "היזכרו!": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכרים": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "נזכר": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "ניזכר": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "תיזכרנה": [
- {
- "word_nikkud": "לְהִזָּכֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "504-lehizacher"
- }
- ],
- "אתבע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעו!": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעו": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תתבע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעת": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "להיתבע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תביעה": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעתי": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "לתבוע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבענו": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תתבעו": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעתן": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעתם": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "יתבעו": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעי!": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבע!": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבענה!": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תתבעי": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תתבענה": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תבעה": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "ת - ב - ע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תובעת": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תובעים": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "תובעות": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "יתבע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "נתבע": [
- {
- "word_nikkud": "לִתְבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2348-litboa"
- }
- ],
- "מעריכות": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערך!": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מעריכים": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכתן": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מוערכים": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תוערכי": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכת": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "יעריכו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "יוערך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכת": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מוערכת": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכנו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכתן": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכתי": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "נעריך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכנו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "אעריך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "העריכו!": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "נוערך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "העריכי!": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "העריכה": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכנה!": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תוערכו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תוערכנה": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכתם": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "אוערך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "העריך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מוערך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תעריכו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מעריכה": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תערכנה": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תעריך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכה": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תעריכי": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הוערכתם": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "הערכתי": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "מוערכות": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "העריכו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תוערך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "יעריך": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "יוערכו": [
- {
- "word_nikkud": "לְהַעֲרִיךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1563-lehaarich"
- }
- ],
- "תולדה": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "לדי!": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "אלד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "לדנה!": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדות": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "לידה": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "תלדנה": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדו": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "יולד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "יולדת": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילודה": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדתי": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדנו": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדה": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "תלדי": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדתם": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "לד!": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "יולדות": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדותי": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "נלד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "מולדת": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "הולדת": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ליילד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "י - ל - ד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "לדו!": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "להוליד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ללדת": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "יולדים": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדתן": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "להתיילד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "ילדת": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "תלדו": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "יליד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "תלד": [
- {
- "word_nikkud": "לָלֶדֶת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "808-laledet"
- }
- ],
- "יתפוצץ": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצנו": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "תתפוצצנה": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "מתפוצץ": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצץ": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצתי": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצנה!": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "תתפוצצי": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצה": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "מתפוצצים": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "נתפוצץ": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "תתפוצץ": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצו": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "מתפוצצות": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "מתפוצצת": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "יתפוצצו": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצתן": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "תתפוצצו": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "אתפוצץ": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצתם": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצי!": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצץ!": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצת": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "התפוצצו!": [
- {
- "word_nikkud": "לְהִתְפּוֹצֵץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1675-lehitpotzetz"
- }
- ],
- "שתוק!": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שותקות": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתוקנה!": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שותק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקה": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתיקה": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקת": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "תשתוקנה": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקו!": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "תשתקי": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שותקים": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקתן": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקו": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקי!": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקתם": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקנו": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "נשתוק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "אשתוק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "לשתק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "תשתוק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "תשתקו": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "להשתיק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "לשתוק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שתקתי": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "ישתוק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שיתוק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שׁ - ת - ק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "שותקת": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "ישתקו": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "להשתתק": [
- {
- "word_nikkud": "לִשְׁתֹּק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2336-lishtok"
- }
- ],
- "תשבע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "ישבע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעתן": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "נשבע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעות": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "ישבעו": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעה": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "תשבעי": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "אשבע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעי!": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעת": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "תשבענה": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעתם": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבענו": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שׂ - ב - ע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "לשבוע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעתי": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבע!": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "להשביע": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבענה!": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעו": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעים": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שבעו!": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "תשבעו": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "שביעה": [
- {
- "word_nikkud": "לִשְׂבֹּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2130-lisboa"
- }
- ],
- "תקרע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרענה!": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "אקרע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "תקרעו": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "יקרעו": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעו!": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "נקרע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעת": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעי!": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קורע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרע!": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "לקרוע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "ק - ר - ע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעתן": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעתם": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קורעת": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעה": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "תקרענה": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרענו": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעתי": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "להיקרע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרוע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "תקרעי": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "יקרע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרעו": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קרע": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קורעות": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קורעים": [
- {
- "word_nikkud": "לִקְרֹעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1954-likroa"
- }
- ],
- "קבור!": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "תקברי": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברתי": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברנו": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברתם": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "אקבור": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברו!": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברי!": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "תקבורנה": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברת": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קבר": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "יקבור": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קוברת": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "יקברו": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "תקבור": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "ק - ב - ר": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קוברות": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "נקבור": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברו": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "לקבור": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קוברים": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברתן": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קברה": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קבור": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קבורה": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "תקברו": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "להיקבר": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קובר": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "קבורנה!": [
- {
- "word_nikkud": "לִקְבֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1858-likbor"
- }
- ],
- "חרון": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "יתחרה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחריתם": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרות": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרית": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחריתן": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "תתחרי": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "מתחרה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "אתחרה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרי!": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "מתחרות": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "להתחרות": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "ח - ר - ה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "נתחרה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "יתחרו": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "תחרות": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרה!": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "תתחרו": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרו": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "תתחרינה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרתה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרינה!": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "מתחרים": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "להחרות": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרינו": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחרו!": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "תתחרה": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "התחריתי": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "לחרות": [
- {
- "word_nikkud": "לְהִתְחָרוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "683-lehitcharot"
- }
- ],
- "חולמת": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "יחלמו": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "תחלמי": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמה": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "יחלום": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חולמות": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "לחלום": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "ח - ל - ם": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמתן": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמו!": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "להחלים": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "תחלומנה": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלום!": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלום": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "תחלמו": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חולם": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "החלמה": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלומנה!": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלם": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "אחלום": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמתי": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמנו": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמו": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "נחלום": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "תחלום": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמי!": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמון": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמתם": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חולמים": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "חלמת": [
- {
- "word_nikkud": "לַחְלֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2419-lachlom"
- }
- ],
- "יקשרו": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשור!": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קשורנה!": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "נקשור": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "תקשרו": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשרתם": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "תקשורנה": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קשרו!": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשרה": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קשרי!": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרת": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרות": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "יקשור": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קושר": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשרו": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "תקשור": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קשרת": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "אקשור": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קשרתן": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קושרים": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "קשרתי": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "תקשרי": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- },
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשרנו": [
- {
- "word_nikkud": "לִקְשֹׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1968-likshor"
- }
- ],
- "ננשאו": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאים": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאתם": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאתן": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "הינשאנה!": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "תינשאו": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאתן": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאנו": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאה": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשא": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאו": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "תינשאי": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאת": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאות": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "הינשאו!": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאתי": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "יינשא": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "יינשאו": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "אנשא": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאה": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאתם": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאנו": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "תינשא": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאים": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאתי": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נישאות": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "הינשא!": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "ננשאת": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "הינשאי!": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "נינשא": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "תינשאנה": [
- {
- "word_nikkud": "לְהִנָּשֵׂא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1266-lehinase"
- }
- ],
- "קילוח": [
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "לקלח": [
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "מקלחת": [
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "ק - ל - ח": [
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "לקלוח": [
- {
- "word_nikkud": "לְהִתְקַלֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1896-lehitkaleach"
- }
- ],
- "תשדדי": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדת": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "ישדדו": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שודד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדתי": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "להישדד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "תשדודנה": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדנו": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדוד!": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדי!": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדתן": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "תשדדו": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדו": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שודדת": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדה": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שודדים": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שודדות": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "אשדוד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שוד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "נשדוד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדודנה!": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "תשדוד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "ישדוד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שׁ - ד - ד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדו!": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "שדדתם": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "לשדוד": [
- {
- "word_nikkud": "לִשְׁדֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2145-lishdod"
- }
- ],
- "גלתי": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גילינה!": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "אגיל": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "יגיל": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "תגילו": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גלת": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גלתן": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "תגילי": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "נגיל": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "תגלנה": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גיל!": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גלנה!": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גלתם": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גילו!": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "ג - י - ל": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גלנו": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "לגיל": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "גילי!": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "תגיל": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "תגילינה": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "יגילו": [
- {
- "word_nikkud": "לָגִיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2452-lagil"
- }
- ],
- "כעוס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "נכעס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסתי": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסנה!": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כ - ע - ס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כועסים": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "תכעסנה": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסי!": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסת": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעס!": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסנו": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "יכעס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כועסת": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כועסות": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסו": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסתן": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "תכעסו": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "לכעוס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "להכעיס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "אכעס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "תכעס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "תכעסי": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כועס": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "יכעסו": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסתם": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסה": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "כעסו!": [
- {
- "word_nikkud": "לִכְעֹס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "930-lichos"
- }
- ],
- "תוהים": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהינה!": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהתה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תתהינה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהיתן": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "ת - ה - ה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהי!": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהו!": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תתהה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "לתהות": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תוהה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "נתהה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהה!": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תוהות": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תתהו": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תתהי": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "יתהה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהיתם": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהינו": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהית": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהיתי": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "אתהה": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תהו": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "יתהו": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "תוהו": [
- {
- "word_nikkud": "לִתְהוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2353-lithot"
- }
- ],
- "מתווכחת": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "מתווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחו!": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "נתווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "תתווכחו": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכח!": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחת": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "תוכחה": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחנו": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחו": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחנה!": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "יתווכחו": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "תתווכחי": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "יתווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחתי": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "ו - כ - ח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחה": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחי!": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "תתווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "תתווכחנה": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "מתווכחים": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "ויכוח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחתם": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "להתווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "התווכחתן": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "אתווכח": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "מתווכחות": [
- {
- "word_nikkud": "לְהִתְוַכֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "798-lehitvakeach"
- }
- ],
- "חולצה": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "נחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחלצים": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחולץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חלוץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצתן": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחולצת": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חלצי!": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חלץ!": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולצתן": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולצתם": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חלצו!": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חלצנה!": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחולצי": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "לחלוץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "יחולצו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "אחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחולצנה": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצה": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילוץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולצת": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצתי": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "יחלצו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולצתי": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחלצי": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "יחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "אחולץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולצו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחלצת": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחלצו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחולצים": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחלצות": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "לחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחולצו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "מחולצות": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצתם": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "נחולץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "יחולץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "ח - ל - ץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "להיחלץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצת": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חילצנו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "חולצנו": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחלצנה": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "תחולץ": [
- {
- "word_nikkud": "לְחַלֵּץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "610-lechaletz"
- }
- ],
- "אטופס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסת": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "נטופס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטופסנה": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטופס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסתי": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טפס!": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטופסת": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסתם": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטופסו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטפסת": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטופסי": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסת": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסתם": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "יטפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסנו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסתן": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסה": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטפסו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "יטופסו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "ט - פ - ס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטפסי": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטופסות": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטפסות": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטופסים": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טפסו!": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסתן": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטופס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "יטופס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "אטפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "לטפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "תטפסנה": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טפסנה!": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסתי": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "מטפסים": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסנו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפסה": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "יטפסו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טיפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טפסי!": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "נטפס": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "טופסו": [
- {
- "word_nikkud": "לְטַפֵּס",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "763-letapes"
- }
- ],
- "יתאבד": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדת": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבד": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תתאבדנה": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדנה!": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדה": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תתאבדו": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדתי": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדי!": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדנו": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "מתאבד": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדתן": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "יתאבדו": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדו!": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "נתאבד": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תתאבדי": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "מתאבדות": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תתאבד": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדו": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "מתאבדים": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבד!": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "התאבדתם": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "אתאבד": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "מתאבדת": [
- {
- "word_nikkud": "לְהִתְאַבֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "59-lehitabed"
- }
- ],
- "תשפרו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שפרי!": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "אשופר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשופרי": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משופרים": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרנו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרתם": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפור": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שׁ - פ - ר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשפרנה": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשופרו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "ישפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "אשפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרנו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שפרו!": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משופרת": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשופרנה": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "ישופר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "להשתפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "נשפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משופר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משופרות": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "ישופרו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משפרים": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שפר!": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשפרי": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שפרנה!": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "לשפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "נשופר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרתי": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרה": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שפירית": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "תשופר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרת": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרתם": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משפרת": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרתן": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משפרות": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרתן": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שופרת": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרתי": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "ישפרו": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שיפרה": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "משפר": [
- {
- "word_nikkud": "לְשַׁפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2292-leshaper"
- }
- ],
- "שוטפת": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "תשטוף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "לשטוף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "להישטף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שוטף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "נשטוף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שוטפות": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "תשטפו": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפי!": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפתן": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שׁ - ט - ף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "תשטפי": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפתם": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפו!": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפתי": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "ישטפו": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטוף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפה": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטופנה!": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שוטפים": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפת": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "אשטוף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "ישטוף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטוף!": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפנו": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטיפה": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "תשטופנה": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שיטפון": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטף": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "שטפו": [
- {
- "word_nikkud": "לִשְׁטֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2183-lishtof"
- }
- ],
- "סויע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסויע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "נסויע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "יסויע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייע!": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעו!": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "יסייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעה": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "להסתייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייענו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "אסויע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעתן": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסויעות": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויעה": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייען": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "נסייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "ס - י - ע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויעת": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעי!": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעתם": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסויעי": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סיוע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "יסייעו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסויע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויעתי": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסייעו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסייענה": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "לסייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסויעת": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "יסויעו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "אסייע": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעתי": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסייעים": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויענו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסייעות": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייענה!": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסויענה": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסויעו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויעו": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סייעת": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסויעים": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "מסייעת": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויעתם": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "תסייעי": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "סויעתן": [
- {
- "word_nikkud": "לְסַיֵּעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1345-lesayea"
- }
- ],
- "התרגל!": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "להתרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ר - ג - ל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "התרגלה": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "ריגול": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תתרגלי": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "לרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "התרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "מתרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "אתרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "הרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "התרגלת": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "התרגלו!": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "מתרגלת": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "התרגלי!": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "יתרגלו": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "התרגלנה!": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "תתרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "התרגלתן": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "תתרגלנה": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "מתרגלים": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "מתרגלות": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "להרגיל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "נתרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "יתרגל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "רגיל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "התרגלתם": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "תתרגלו": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "תרגיל": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- },
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "התרגלתי": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "התרגלו": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "התרגלנו": [
- {
- "word_nikkud": "לְהִתְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1988-lehitragel"
- }
- ],
- "תקווי": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווי!": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווה!": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "מקווות": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "מקוות": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווינה!": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "ק - ו - ה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "תקוו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "תקווו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "מקווים": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיווית": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קוויתי": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קוויתם": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיוויתי": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קוויתן": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "לקוות": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "יקווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיוויתן": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "אקווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווינו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווית": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיוותה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קוו!": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "יקווו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "להיקוות": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיוו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "תקווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "מקווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קווו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "נקווה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיוויתם": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קיווינו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "יקוו": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "קוותה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "תקווינה": [
- {
- "word_nikkud": "לְקַוּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1874-lekavot"
- }
- ],
- "מכופר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "לכפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכופרי": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "יכופר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כפרנה!": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "יכפרו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכפרות": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כ - פ - ר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכופרנה": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכופרים": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרנו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרנו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "אכופר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "יכופרו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכפרים": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרתי": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכופר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרה": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכופרת": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרת": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכופרות": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כפרי!": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכופרו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכפרנה": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "נכופר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כפר!": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "אכפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כפרו!": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפור": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרה": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרתן": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכפרו": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כפרה": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "יכפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרתן": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "לכפור": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכפרי": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כופרתם": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרתם": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכפרת": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרתי": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "תכפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "כיפרת": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "נכפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "מכפר": [
- {
- "word_nikkud": "לְכַפֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "940-lechaper"
- }
- ],
- "ישנא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאה": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "נשנא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "אשנא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "תשנאו": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאנה!": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "להשניא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שׂ - נ - א": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאנו": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "תשנאנה": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאתן": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שונאת": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנוא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאת": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנא!": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "לשנוא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שונא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שונאים": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאי!": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "תשנא": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאו": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאו!": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "תשנאי": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "ישנאו": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאתי": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שונאות": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "שנאתם": [
- {
- "word_nikkud": "לִשְׂנֹא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2261-lisno"
- }
- ],
- "הסע!": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תסיעו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "אוסע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסיעה": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסענה!": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסיע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "יוסעו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסענו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מסיעה": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מוסעת": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תסיע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "יסיע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מסיעים": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסעתן": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסעת": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסענו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מוסעות": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תסיעי": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תסענה": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסעתי": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסעתי": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסעתם": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תוסענה": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תוסעי": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסיעו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסעתם": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "יוסע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מוסע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מוסעים": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסיעו!": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מסיע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסעת": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "יסיעו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מסיעות": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "אסיע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תוסע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסעתן": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "תוסעו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הסיעי!": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסעה": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "נסיע": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "הוסעו": [
- {
- "word_nikkud": "לְהַסִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2483-lehasia"
- }
- ],
- "מסתתר": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "יסתתרו": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרתן": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתר!": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "מסתתרת": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתר": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "יסתתר": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרתי": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרת": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרתם": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "מסתתרים": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "נסתתר": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "תסתתרי": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "תסתתר": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "מסתתרות": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרי!": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "תסתתרו": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "אסתתר": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרו": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרה": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרנו": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרנה!": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "תסתתרנה": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "הסתתרו!": [
- {
- "word_nikkud": "לְהִסְתַּתֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1434-lehistater"
- }
- ],
- "מוכרחות": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחנה!": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחנו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "כ - ר - ח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחת": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרח!": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחי": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחה": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחתי": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכריחו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכריחו!": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מכריחה": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "להכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכריחי!": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תכריחי": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "יכריחו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחתן": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מוכרחה": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תוכרחו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "כורח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "אכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "נכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחתן": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "אוכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחתם": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחת": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תכרחנה": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הוכרחתי": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תוכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מוכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תוכרחנה": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכריחה": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מוכרחת": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "יכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מכריח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תוכרחי": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מכריחות": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "יוכרחו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחנו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "נוכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "הכרחתם": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "יוכרח": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מכריחים": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מוכרחים": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "תכריחו": [
- {
- "word_nikkud": "לְהַכְרִיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "946-lehachriach"
- }
- ],
- "מפרידות": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מופרדות": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תופרדי": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תפריד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "אפריד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפריד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תפרדנה": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרידו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מפרידה": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מפרידים": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרד!": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מפריד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרידי!": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדת": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרידו!": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מופרדים": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "אופרד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרדתם": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "יופרדו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדתן": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדה": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מופרד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדנו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרדתי": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "נפריד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "נופרד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תופרדו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תפרידי": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרדנו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרדת": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרדתן": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדתם": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תופרדנה": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "מופרדת": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "יפריד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרדנה!": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תופרד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "יופרד": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הופרדתי": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "הפרידה": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תפרידו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "יפרידו": [
- {
- "word_nikkud": "לְהַפְרִיד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1692-lehafrid"
- }
- ],
- "תבעטנה": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטה": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בועט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "אבעט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "תבעט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "תבעטו": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בועטת": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "יבעט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטנה!": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטתם": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטתי": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בועטות": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "לבעוט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "יבעטו": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטו!": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטתן": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "תבעטי": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בועטים": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעט!": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטי!": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "נבעט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטת": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "להיבעט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטו": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "בעטנו": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "ב - ע - ט": [
- {
- "word_nikkud": "לִבְעֹט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "239-livot"
- }
- ],
- "להידלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "נדליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדליקו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקת": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקנה!": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "דליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "להדליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מודלקת": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "אודלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תודלקו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקתי": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "ידליקו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תדליקי": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדליקי!": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "יודלקו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "נודלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תדלקנה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקנו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "דליקות": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקתם": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקתן": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "אדליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלקתי": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תדליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תדליקו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "דלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "לדלוק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "דלקה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "לתדלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מדליקה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מודלקות": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תודלקי": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקנו": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקתם": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדליקה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מדליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "דלוק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מודלקים": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מודלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תודלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקת": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הודלקתן": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדלק!": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "ידליק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "יודלק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "דלקת": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מדליקות": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "הדליקו!": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "תודלקנה": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "ד - ל - ק": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מדליקים": [
- {
- "word_nikkud": "לְהַדְלִיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "423-lehadlik"
- }
- ],
- "מורגעים": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגענה!": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מרגיעה": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תורגע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "ארגיע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תרגיע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תרגענה": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגיעו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מרגיע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגעתם": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "ירגיעו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגענו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגעת": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "ירגיע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגע!": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מורגעת": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגיע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מרגיעות": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "נורגע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגעת": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגעתם": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגעתן": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגענו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תורגענה": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מורגע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגעה": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תרגיעו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגעו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מרגיעים": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגיעי!": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "מורגעות": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תרגיעי": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגיעו!": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "יורגעו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "נרגיע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "יורגע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "אורגע": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תורגעו": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגעתן": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "תורגעי": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגיעה": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הורגעתי": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "הרגעתי": [
- {
- "word_nikkud": "לְהַרְגִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1991-lehargia"
- }
- ],
- "פלילי": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "מתפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "תפילה": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללתם": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "אתפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "יתפללו": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפלל!": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "נתפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללה": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "פ - ל - ל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללי!": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "מתפללת": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "להפליל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללנה!": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "מתפללות": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללנו": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "תתפללנה": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "להתפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללת": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "תתפללו": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "תתפללי": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "תתפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללתן": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללו": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "לפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "מתפללים": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללו!": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "התפללתי": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "יתפלל": [
- {
- "word_nikkud": "לְהִתְפַּלֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2435-lehitpalel"
- }
- ],
- "תרמו": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמיתי": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "לרמות": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמייה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמה!": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמו!": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "תרמה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "מרמה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רומה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמאי": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "תרמינה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "ארמה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "ירמה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמו": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמי!": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמינה!": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמינו": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמיתם": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "תרמית": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "ר - מ - ה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "ירמו": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמתה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רומות": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמיתן": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "נרמה": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "תרמי": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רמית": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "רומים": [
- {
- "word_nikkud": "לְרַמּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2790-lirmot"
- }
- ],
- "תטעמנה": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "לטעום": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעם!": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טועמים": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמו": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "יטעם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמנה!": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "מטעם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעימה": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טועמת": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמתי": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמתם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "להטעים": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמנו": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמי!": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמו!": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טועמות": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעים": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "נטעם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "תטעם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמה": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "תטעמו": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טועם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "ט - ע - ם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמתן": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "אטעם": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "יטעמו": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "טעמת": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "תטעמי": [
- {
- "word_nikkud": "לִטְעֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "755-litom"
- }
- ],
- "נקמתם": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תיקומנה": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמה": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "ננקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקומנה!": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקם": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תיקמי": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "לנקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמי!": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "ינקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמנו": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תנקמו": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תנקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תיקמו": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נוקמות": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "ינקמו": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמתי": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "אנקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "להינקם": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמו!": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תנקמי": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "ייקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמתן": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נ - ק - ם": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תיקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נוקמים": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "ייקמו": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "ניקום": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקום!": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמת": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "תנקומנה": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "להתנקם": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נוקמת": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "נקמו": [
- {
- "word_nikkud": "לִנְקֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1256-linkom"
- }
- ],
- "טיעון": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "לטעון": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טען!": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענה!": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "יטען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טוען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענו!": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טעינה": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענת": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "מטען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טוענים": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "תטען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טוענת": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "תטענו": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "תטענה": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טעון": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "תטעני": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענתן": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "להטעין": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענתם": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "נטען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "להיטען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "יטענו": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענו": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טוענות": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "אטען": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "ט - ע - ן": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענתי": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טענה": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "טעני!": [
- {
- "word_nikkud": "לִטְעֹן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "757-liton"
- }
- ],
- "הקריבו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרבתי": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מקריבות": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מקריבים": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרבנה!": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקריב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מקריב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "יוקרב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "אוקרב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרבנו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרבת": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "תוקרב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "יקריבו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מוקרבת": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקריבו!": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבתן": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבה": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מוקרב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "נקריב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מוקרבים": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "תוקרבי": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרבתם": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "נוקרב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבנו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מקריבה": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקריבה": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "אקריב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקריבי!": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרבתן": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבת": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "יקריב": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "תקריבו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "מוקרבות": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "תקריבי": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הקרב!": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבתי": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "יוקרבו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "הוקרבתם": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "תוקרבו": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "תוקרבנה": [
- {
- "word_nikkud": "לְהַקְרִיב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1948-lehakriv"
- }
- ],
- "א - מ - ת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימתם": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אמיתי": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאומתת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אומתו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימתי": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימתנו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אומת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימתו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאומתו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אומתה": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאומתנה": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאמתי": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "יאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אמתנה!": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "יאמתו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אמתי!": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אמת!": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "לאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אאומת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאמתו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "להתאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאומתים": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אומתי": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימתן": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאמתים": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאומת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאמתת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאומת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אומתנו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "נאומת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אומתם": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "יאומת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "יאומתו": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאמתות": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאמתנה": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אימתה": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "תאומתי": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "אמתו!": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מאומתות": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "נאמת": [
- {
- "word_nikkud": "לְאַמֵּת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "120-leamet"
- }
- ],
- "מבורכים": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ברוך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ברכה": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכתם": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכנו": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תבורכנה": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "להתברך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "יבורכו": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכתן": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכו": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכה": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מבורכת": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "אבורך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תבורך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מבורכות": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "נבורך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ב - ר - ך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תבורכי": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכתי": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "תבורכו": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "יבורך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "בורכת": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "מבורך": [
- {
- "word_nikkud": "לְבָרֵךְ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "265-levarech"
- }
- ],
- "ירוגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרגלנה": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלתן": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רגלנה!": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרוגלת": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרגלו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רגלי!": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרגלת": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרגלים": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרוגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרגלות": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלתם": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלתן": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלת": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרוגלו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלה": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרוגלי": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרוגלות": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ירגלו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלתי": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלתם": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלתי": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "נרוגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רוגלנו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלת": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רגלו!": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרוגלנה": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "נרגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרוגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלנו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרוגלים": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגלה": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "רגל!": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ארוגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ארגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ריגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "תרגלי": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ירגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מרגל": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "ירוגלו": [
- {
- "word_nikkud": "לְרַגֵּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1986-leragel"
- }
- ],
- "מגדירות": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדרתי": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מוגדרים": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדרתן": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרת": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדירו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "לגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מגדירה": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תגדרנה": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מוגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תגדירו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "נוגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדרנו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "להגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תוגדרי": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מוגדרות": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תוגדרו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרתי": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "יוגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדרנה!": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרתן": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדירי!": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדר!": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מוגדרת": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "יוגדרו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "יגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תגדירי": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "לגדור": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרה": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרנו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדרתם": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "מגדירים": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "אוגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "ג - ד - ר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "אגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדירה": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "יגדירו": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הוגדרתם": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תוגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "להתגדר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדירו!": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדרת": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "תוגדרנה": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "הגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "נגדיר": [
- {
- "word_nikkud": "לְהַגְדִּיר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "306-lehagdir"
- }
- ],
- "יעודד": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "יעודדו": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדנה!": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודד": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודד!": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "אעודד": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדו!": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדתי": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעודדי": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדנו": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדתן": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדתם": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדה": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "מעודדת": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "מעודדים": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעודדנה": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעודדו": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדת": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדי!": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "עודדו": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "מעודדות": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "נעודד": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "מעודד": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "תעודד": [
- {
- "word_nikkud": "לְעוֹדֵד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1458-leoded"
- }
- ],
- "מורשמת": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מרשימים": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תורשם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמת": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "ארשים": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשים": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמתי": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמנו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תרשמנה": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מורשמות": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תורשמי": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "יורשם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "ירשימו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמה": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תורשמנה": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "אורשם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשמתי": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשמנה!": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשמת": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשימו!": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשם!": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשמתן": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "ירשים": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשמנו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מרשימות": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "נרשים": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמתן": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מורשמים": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "יורשמו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תורשמו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תרשימי": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשימי!": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מרשימה": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשמתם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הורשמתם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "מורשם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשימו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "הרשימה": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "תרשימו": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "נורשם": [
- {
- "word_nikkud": "לְהַרְשִׁים",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2106-leharshim"
- }
- ],
- "פריקה": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקתי": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "יפורק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפורקת": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירוק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקתם": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקתן": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "לפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפורקות": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקה": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פריק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפרקו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפרקי": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקה": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקתי": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פרק!": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פרקנה!": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפורקי": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקנו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפורקנה": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפרקות": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקתם": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "לפרוק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפרקים": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפורק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "אפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפורק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפורקים": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפורקו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "אפורק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "נפורק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקנו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "יפורקו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פ - ר - ק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פרקו!": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "להתפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "יפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקת": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "נפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פירקת": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פורקתן": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "יפרקו": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "תפרקנה": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "פרקי!": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "מפרקת": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "להיפרק": [
- {
- "word_nikkud": "לְפָרֵק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1722-lefarek"
- }
- ],
- "התנגדת": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תתנגדנה": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מתנגדים": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מתנגדות": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדתם": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדו!": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תתנגדו": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדנו": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדה": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדי!": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תתנגד": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדו": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "יתנגדו": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדתי": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מתנגד": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדתן": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "מתנגדת": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגד": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "נתנגד": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "יתנגד": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגד!": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "תתנגדי": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "התנגדנה!": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "אתנגד": [
- {
- "word_nikkud": "לְהִתְנַגֵּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2434-lehitnaged"
- }
- ],
- "א - ט - ט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האיטותי": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האט!": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "איטי": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "להאט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תואטינה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "אט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטתי": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטתם": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מאיטה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "יאט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטתן": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטי!": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מואטה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "נואט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תאיטינה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "אואט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תואט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מואט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תאט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מואטות": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האיטות": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מאיטים": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תואטו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האיטונו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תואטנה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מאט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "יאטו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תאטו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטו!": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "יואטו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "נאט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מאיטות": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטנו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תואטי": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטת": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תאטנה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטתם": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "יואט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האיטותם": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטתי": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטנה!": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "אאט": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "מואטים": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטת": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "תאטי": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "הואטתן": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטנו": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האיטותן": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "האטה": [
- {
- "word_nikkud": "לְהָאֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "89-lehaet"
- }
- ],
- "יתוודו": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודו": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודיתם": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "וידוי": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "אתוודה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודי!": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "תתוודי": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודית": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "מתוודים": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "יתוודה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודינה!": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודו!": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "תתוודו": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודיתן": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "להתוודות": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "תתוודינה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודיתי": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "מתוודה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "נתוודה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודינו": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "תתוודה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודתה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "התוודה!": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "ו - ד - ה": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "מתוודות": [
- {
- "word_nikkud": "לְהִתְוַדּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "789-lehitvadot"
- }
- ],
- "דללת": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלונו": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "יידל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דליל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דללתן": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלותן": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלים": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "תידלי": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלותם": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלותי": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלו": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דללו": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלה": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "נידל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דללתי": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלות": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "תידלנה": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "לדלל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "תידלו": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "אדל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דלל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דללנו": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "ד - ל - ל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "יידלו": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דללה": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "דללתם": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "תידל": [
- {
- "word_nikkud": "דַּל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2745-dal"
- }
- ],
- "תיוצרי": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מייצרת": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרתם": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ניוצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יוצרנו": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרה": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תיוצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מיוצרים": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תיוצרו": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייוצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרת": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יוצרו": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרתי": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייוצרו": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מייצרות": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצר!": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "אייצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מייצרים": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מיוצרות": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יוצרתן": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "איוצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יוצרתם": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יצרנה!": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "נייצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מייצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מיוצרת": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "מיוצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרנו": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יוצרה": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "יוצרתי": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תייצרו": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תייצרי": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תייצרנה": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תיוצרנה": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "תייצר": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "ייצרתן": [
- {
- "word_nikkud": "לְיַצֵּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2433-leyatzer"
- }
- ],
- "להיגבות": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "תגבו": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבי!": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גובים": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבתה": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבו": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "ג - ב - ה": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבינו": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "יגבו": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "תגבינה": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "תגבי": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "לגבות": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גביתם": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבו!": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גביתי": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גביתן": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבית": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גובות": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "גבינה!": [
- {
- "word_nikkud": "לְגַבּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "287-ligbot"
- }
- ],
- "שבו": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שובו!": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שובינה!": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שובי!": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבנו": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "אשוב": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבות": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשובי": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "נשוב": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשובינה": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבת": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבתן": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבתי": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבים": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שובנה!": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבתם": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שבה": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשוב": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שב": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשובנה": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "ישובו": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "שוב!": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "תשובו": [
- {
- "word_nikkud": "לָשׁוּב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2154-lashuv"
- }
- ],
- "להיוורש": [
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "ירושה": [
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "י - ר - שׁ": [
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "להוריש": [
- {
- "word_nikkud": "לָרֶשֶׁת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "856-lareshet"
- }
- ],
- "נפותח": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפותח": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחה": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפתחות": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחתי": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחתי": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחתן": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחתם": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפותחת": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחתן": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "תפותח": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחו": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "יפותחו": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחת": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחנו": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפותחות": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחה": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפותחים": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפתחת": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "תפותחנה": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "יפותח": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתח": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "תפותחו": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "תפותחי": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פותחתם": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחנו": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "אפותח": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "פיתחו": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "מפתחים": [
- {
- "word_nikkud": "לְפַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1749-lefateach"
- }
- ],
- "להתפרסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמה": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמנו": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפורסמנה": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפורסמי": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "יפורסמו": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "אפורסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפורסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפורסמים": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפורסמות": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "יפורסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפורסמת": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמתן": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פירסומת": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "מפורסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמת": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמו": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פירסום": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "נפורסם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פ - ר - ס - ם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמתי": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "תפורסמו": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "פורסמתם": [
- {
- "word_nikkud": "לְפַרְסֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1710-lefarsem"
- }
- ],
- "עוררו": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "תעורר": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררנה!": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "מעוררות": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררתי": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "יעוררו": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררה": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררתן": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "תעוררנה": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "מעורר": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררת": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "אעורר": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "מעוררת": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עורר!": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "מעוררים": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררי!": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "תעוררו": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררתם": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "יעורר": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררנו": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "תעוררי": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עורר": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "נעורר": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "עוררו!": [
- {
- "word_nikkud": "לְעוֹרֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1467-leorer"
- }
- ],
- "רכשו!": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשת": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "תרכוש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשתי": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "להירכש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "תרכשו": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכושנה!": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכוש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשתם": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "ירכוש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשה": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשי!": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רוכשות": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "נרכוש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "ארכוש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רוכשת": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשתן": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "תרכושנה": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "ירכשו": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכוש!": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשנו": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רוכשים": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכשו": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "ר - כ - שׁ": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "תרכשי": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "לרכוש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רכישה": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "רוכש": [
- {
- "word_nikkud": "לִרְכֹּשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2048-lirkosh"
- }
- ],
- "עקפתי": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפתן": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "לעקוף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "ע - ק - ף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "יעקוף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עוקפות": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "תעקופנה": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפו!": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עוקפים": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפנו": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפתם": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפו": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקופנה!": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפת": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "תעקפי": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפה": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "תעקפו": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "יעקפו": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקפי!": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקוף!": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עוקפת": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עקיפה": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "נעקוף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "אעקוף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "להיעקף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "תעקוף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "עוקף": [
- {
- "word_nikkud": "לַעֲקֹף",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1550-laakof"
- }
- ],
- "הפתענו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "להפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתעה": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מופתעות": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תפתענה": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתיעה": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "נופתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תופתענה": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתעת": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מפתיעה": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתעתם": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "פתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתענו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתעו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תופתעו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "אפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מופתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתעתן": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתעתן": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "פ - ת - ע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתעתם": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתיעו!": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתע!": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "יופתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתעה": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "יפתיעו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתענה!": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מופתעים": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתיעו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "אופתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תופתעי": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תפתיעו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הופתעתי": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתעת": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "יופתעו": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "נפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תפתיעי": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מופתעת": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתעתי": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מפתיעות": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "הפתיעי!": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "מפתיעים": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "יפתיע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "תופתע": [
- {
- "word_nikkud": "לְהַפְתִּיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1753-lehaftia"
- }
- ],
- "שיערה": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשוערי": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשערנה": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "לשער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיערתם": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "ישער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "ישוער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "נשער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערתי": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערתן": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערת": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיערתן": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משערים": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משוערים": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שערו!": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיערתי": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערה": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיעור": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשערי": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משערת": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "נשוער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שערנה!": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיערנו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משוערות": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משוערת": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שׁ - ע - ר": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שער!": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "השערה": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משערות": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערתם": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "משוער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "אשוער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשוערו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שוערנו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שערי!": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשוער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיערת": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "אשער": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשוערנה": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "ישוערו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תשערו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "ישערו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "שיערו": [
- {
- "word_nikkud": "לְשַׁעֵר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2279-leshaer"
- }
- ],
- "תקושרנה": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תקושר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקושר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרנו": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "נקושר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשרנה!": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרתם": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "יקושרו": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרתם": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקשרים": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תקושרו": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקשרות": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרתי": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרו": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקשר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרת": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרתי": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרה": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרה": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תקשרנה": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרתן": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קשר!": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקשרת": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקושרת": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תקשר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "אקושר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "אקשר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "נקשר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקושרות": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרנו": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קישרו": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "יקושר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "מקושרים": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "קושרתן": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "תקושרי": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "יקשר": [
- {
- "word_nikkud": "לְקַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1970-lekasher"
- }
- ],
- "חודר": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "תחדרו": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרתם": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חודרת": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדר": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרתן": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרתי": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדור!": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "תחדורנה": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "יחדרו": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרו!": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרו": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרה": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חודרות": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "תחדור": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "ח - ד - ר": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "יחדור": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרי!": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרנו": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "להחדיר": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "נחדור": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "תחדרי": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדרת": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חודרים": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "אחדור": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "חדורנה!": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "לחדור": [
- {
- "word_nikkud": "לַחְדֹּר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "559-lachdor"
- }
- ],
- "תספיקי": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מספיקות": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספיקה": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "יספיק": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספקתם": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "אספיק": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "יספיקו": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספקנו": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "נספיק": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "תספיקו": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספקנה!": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספק!": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "תספיק": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספיקו!": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מספיקים": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספקת": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספיק": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מספיק": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "מספיקה": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספקתן": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספיקי!": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספקתי": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "הספיקו": [
- {
- "word_nikkud": "לְהַסְפִּיק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1406-lehaspik"
- }
- ],
- "תחם!": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמתם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תתחמו": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמתן": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמה": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמנו": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמנה!": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחום": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "ת - ח - ם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "נתחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמתי": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "אתחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמו!": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תתחמנה": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "יתחמו": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמת": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תוחמים": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "מתחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תוחמת": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "יתחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמי!": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תוחמות": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "לתחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תחמו": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תתחמי": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "לתחום": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תתחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "תוחם": [
- {
- "word_nikkud": "לִתְחֹם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2360-litchom"
- }
- ],
- "נטשו!": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "להינטש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשו": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשתי": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשתן": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תנטשו": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשתם": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ינטשו": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נוטשת": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נוטשות": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ייטשו": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תיטשי": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "לנטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ננטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תנטושנה": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "אטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ינטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשה": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "אנטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשי!": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נ - ט - שׁ": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תיטשו": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשת": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תנטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטשנו": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נוטש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תנטשי": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטוש!": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטושנה!": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תיטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "תיטושנה": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ייטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נוטשים": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "נטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ניטוש": [
- {
- "word_nikkud": "לִנְטֹשׁ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1199-lintosh"
- }
- ],
- "ללכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדתם": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "להתלכד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לוכדים": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "תלכדי": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "נלכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "ל - כ - ד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדה": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "תלכודנה": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכודנה!": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדו": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לוכדות": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדו!": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לוכד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "להילכד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "תלכדו": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "תלכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "ילכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדת": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "מלכודת": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדתי": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדנו": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדי!": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכוד!": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "אלכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לכדתן": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "ללכד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "ליכוד": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "ילכדו": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "לוכדת": [
- {
- "word_nikkud": "לִלְכֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2512-lilkod"
- }
- ],
- "נתח!": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחתי": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחתן": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנתחו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נתחנה!": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחת": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנותחים": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנותחנה": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ננותח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנותחת": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנותח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחת": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנתחות": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נ - ת - ח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ננתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "אנותח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנותחו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נתחו!": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחנו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחה": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנתחים": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנתחנה": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחתם": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "לנתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנותחי": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחה": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחתם": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחתן": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ינותח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנתחת": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנותחות": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחנו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ינותחו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נותחו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ינתחו": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "מנותח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "אנתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "תנתחי": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "נתחי!": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ינתח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתוח": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "ניתחתי": [
- {
- "word_nikkud": "לְנַתֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1283-lenateach"
- }
- ],
- "הומצאת": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תומצא": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מומצאת": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצאנו": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "אומצא": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "נומצא": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "יומצא": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצאה": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצאתי": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצא": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מומצאות": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תומצאו": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תומצאי": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מומצא": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצאתם": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "יומצאו": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצאתן": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "תומצאנה": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "מומצאים": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "הומצאו": [
- {
- "word_nikkud": "לְהַמְצִיא",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1085-lehamtzi"
- }
- ],
- "פיתיון": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפותי": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותית": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "לפתות": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "נפותה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פתיין": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתוי": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתיתן": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "מפותים": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "יפתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "נפתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פ - ת - ה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפותינה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתיתי": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותיתי": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "מפותה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפתינה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפתי": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "יפותה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותיתם": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "יפותו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותינו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתית": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פתו!": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "מפתות": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "מפתים": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פתה!": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "להתפתות": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפתו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפותה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתינו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתיתם": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "יפתו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פיתתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותיתן": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "אפתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "אפותה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "מפותות": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פתינה!": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פותה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "פתי!": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "מפתה": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תפותו": [
- {
- "word_nikkud": "לְפַתּוֹת",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1745-lefatot"
- }
- ],
- "תגשרנה": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גושרתם": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גושרו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישרנו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "מגשרות": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישרתם": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גושרתן": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גשרנה!": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "לגשור": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "אגשר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "מגשר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "ג - שׁ - ר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גשר!": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישרתן": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "לגשר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "יגשר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "תגושרי": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "תגושרו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישרת": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישרה": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "תגשר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "מגושרת": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "נגושר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גושרנו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גישרו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "מגושרות": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גושרת": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "יגושר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "נגשר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "תגשרו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "תגושר": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "מגשרת": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "מגשרים": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גשרי!": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "יגושרו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "גושרה": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
- }
- ],
- "יגשרו": [
- {
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "הַגְשָׁמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7586-hagshama",
+ "gender": "feminine"
}
],
- "אגושר": [
+ "הגשמות": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "הַגְשָׁמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7586-hagshama",
+ "gender": "feminine"
}
],
- "מגושר": [
+ "הגשמת־": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "הַגְשָׁמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7586-hagshama",
+ "gender": "feminine"
}
],
- "גישרתי": [
+ "הגשמות־": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "הַגְשָׁמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7586-hagshama",
+ "gender": "feminine"
}
],
"גשר": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גֶּשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3108-gesher",
+ "gender": "masculine"
}
],
- "תגושרנה": [
+ "גשרים": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גֶּשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3108-gesher",
+ "gender": "masculine"
}
],
- "תגשרי": [
+ "גשר־": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גֶּשֶׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3108-gesher",
+ "gender": "masculine"
}
],
- "גושר": [
+ "גשרי־": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גֶּשֶׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3108-gesher",
+ "gender": "masculine"
}
],
- "גשרו!": [
+ "גישוש": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גִּשּׁוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6966-gishush",
+ "gender": "masculine"
}
],
- "מגושרים": [
+ "גישושים": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גִּשּׁוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6966-gishush",
+ "gender": "masculine"
}
],
- "גושרתי": [
+ "גישוש־": [
{
- "word_nikkud": "לְגַשֵּׁר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "390-legasher"
+ "word_nikkud": "גִּשּׁוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6966-gishush",
+ "gender": "masculine"
}
],
- "ישקיע": [
+ "גישושי־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "גִּשּׁוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6966-gishush",
+ "gender": "masculine"
}
],
- "השקיע": [
+ "גשש": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "גַּשָּׁשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6964-gashash",
+ "gender": "masculine"
}
],
- "שקיעה": [
+ "גששים": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "גַּשָּׁשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6964-gashash",
+ "gender": "masculine"
}
],
- "השקענה!": [
+ "גשש־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "גַּשָּׁשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6964-gashash",
+ "gender": "masculine"
}
],
- "תשקיעו": [
+ "גששי־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "גַּשָּׁשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6964-gashash",
+ "gender": "masculine"
}
],
- "להשתקע": [
+ "דאגה": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דְּאָגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2847-deaga",
+ "gender": "feminine"
}
],
- "משקיעות": [
+ "דאגות": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דְּאָגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2847-deaga",
+ "gender": "feminine"
}
],
- "מושקעים": [
+ "דאגת־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דְּאָגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2847-deaga",
+ "gender": "feminine"
}
],
- "משקיעים": [
+ "דאגות־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דְּאָגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2847-deaga",
+ "gender": "feminine"
}
],
- "אושקע": [
+ "דאון": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דָּאוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3779-daon",
+ "gender": "masculine"
}
],
- "תושקע": [
+ "דאונים": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דָּאוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3779-daon",
+ "gender": "masculine"
}
],
- "השקענו": [
+ "דאון־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דָּאוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3779-daon",
+ "gender": "masculine"
}
],
- "הושקענו": [
+ "דאוני־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דָּאוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3779-daon",
+ "gender": "masculine"
}
],
- "השקעתי": [
+ "דואר": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֹּאַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5727-doar",
+ "gender": "masculine"
}
],
- "מושקעת": [
+ "דואר־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֹּאַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5727-doar",
+ "gender": "masculine"
}
],
- "הושקע": [
+ "דיבה": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8110-diba",
+ "gender": "feminine"
}
],
- "יושקע": [
+ "דיבות": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8110-diba",
+ "gender": "feminine"
}
],
- "משקיעה": [
+ "דיבת־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8110-diba",
+ "gender": "feminine"
}
],
- "הושקעתם": [
+ "דיבות־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8110-diba",
+ "gender": "feminine"
}
],
- "שקע": [
+ "דוב": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֹּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2690-dov",
+ "gender": "masculine"
}
],
- "תשקיע": [
+ "דובים": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֹּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2690-dov",
+ "gender": "masculine"
}
],
- "השקיעו!": [
+ "דוב־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֹּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2690-dov",
+ "gender": "masculine"
}
],
- "הושקעת": [
+ "דובי־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֹּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2690-dov",
+ "gender": "masculine"
}
],
- "לשקוע": [
+ "דיבוב": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7477-dibuv",
+ "gender": "masculine"
}
],
- "תשקענה": [
+ "דיבובים": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7477-dibuv",
+ "gender": "masculine"
}
],
- "נשקיע": [
+ "דיבוב־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7477-dibuv",
+ "gender": "masculine"
}
],
- "השקיעי!": [
+ "דיבובי־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דִּבּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7477-dibuv",
+ "gender": "masculine"
}
],
- "השקעה": [
+ "דובון": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֻּבּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8543-dubon",
+ "gender": "masculine"
}
],
- "שקוע": [
+ "דובונים": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֻּבּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8543-dubon",
+ "gender": "masculine"
}
],
- "השקעתם": [
+ "דובון־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֻּבּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8543-dubon",
+ "gender": "masculine"
}
],
- "יושקעו": [
+ "דובוני־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דֻּבּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8543-dubon",
+ "gender": "masculine"
}
],
- "הושקעה": [
+ "דבוראי": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דְּבוֹרַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7251-dvoray",
+ "gender": "masculine"
}
],
- "תושקעי": [
+ "דבוראים": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
+ "word_nikkud": "דְּבוֹרַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7251-dvoray",
+ "gender": "masculine"
}
],
- "השקע!": [
+ "דבוראי־": [
{
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "שׁ - ק - ע": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "תושקענה": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "השקעת": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "מושקע": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "הושקעתי": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "הושקעו": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "מושקעות": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "תשקיעי": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "ישקיעו": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "נושקע": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "משקיע": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "להשקיע": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "הושקעתן": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "השקיעו": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "אשקיע": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "תושקעו": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "השקיעה": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "השקעתן": [
- {
- "word_nikkud": "לְהַשְׁקִיעַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2305-lehashkia"
- }
- ],
- "מצצה": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מוצצת": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצו!": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מוצצים": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "נמצוץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "אמצוץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "תמצצי": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצתן": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "ימצצו": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצנו": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "למצוץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצי!": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצוצנה!": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצה": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מוצצות": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מציצה": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "להימצץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצוץ!": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצתי": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "תמצצו": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצוץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצו": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצתם": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מוצץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מ - צ - ץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "תמצוצנה": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "תמצוץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "ימצוץ": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "מצצת": [
- {
- "word_nikkud": "לִמְצֹץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1089-limtzotz"
- }
- ],
- "הרבצתן": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מרביצים": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרביצה": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצה": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "יורבצו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "נרביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מורבצת": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרבצתי": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרביצו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "אורבץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מורבץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מורבצות": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "ירביצו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרבצנה!": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תורבצנה": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תרבצנה": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "יורבץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצתן": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תורבצי": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מורבצים": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "ר - ב - ץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרבץ!": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרביצי!": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרבצת": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "להרביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תרביצו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצת": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרבצתם": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרביצו!": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מרביצה": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הרבצנו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "נורבץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תורבצו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "לרבוץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "ירביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תרביצי": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצנו": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תרביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "ארביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מרביץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצתם": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "תורבץ": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "מרביצות": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הורבצתי": [
- {
- "word_nikkud": "לְהַרְבִּיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1980-leharbitz"
- }
- ],
- "הירדמות": [
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "רדום": [
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "ר - ד - ם": [
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "תרדמה": [
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "להרדים": [
- {
- "word_nikkud": "לְהֵרָדֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1996-leheradem"
- }
- ],
- "ביטחתי": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "תבוטח": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטחתם": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מבוטחים": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטחו": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטחת": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "תבוטחנה": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטחה": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחתן": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מבוטח": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחו": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "תבוטחו": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מבטחות": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "תבוטחי": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחתי": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "נבוטח": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מבטחת": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחה": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מבוטחות": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטחנו": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "אבוטח": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "יבוטח": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחנו": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטחתן": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "יבוטחו": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "בוטחתם": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "ביטח": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מבוטחת": [
- {
- "word_nikkud": "לְבַטֵּחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "212-levateach"
- }
- ],
- "מפוענחים": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "יפענחו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחתם": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפענחי": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפענחות": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחתם": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחת": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחתי": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחתן": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "יפוענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פיענוח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפוענחות": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "להתפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחתן": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפוענחנה": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפוענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחה": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פ - ע - נ - ח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפענחים": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפענחו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "נפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענח!": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחי!": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפוענחו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "נפוענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחת": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "יפוענחו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחנה!": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחה": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "יפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחו!": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "אפוענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "לפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחתי": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פוענחנו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפענחנה": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "אפענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפוענחת": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "פענחנו": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "מפענחת": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפוענחי": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "תפוענח": [
- {
- "word_nikkud": "לְפַעְנֵחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1663-lefaaneach"
- }
- ],
- "ל - ו - ן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננת": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "תתלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "יתלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מלונה": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "להתלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלונני!": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "תתלוננו": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "יתלוננו": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "ללון": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "לינה": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "נתלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננתן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מתלוננים": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננה": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "תלונה": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "להלין": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מתלוננות": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "אתלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מתלוננת": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלונן!": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננתם": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננו!": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננה!": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מתלונן": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננתי": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "תתלוננה": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מלון": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "התלוננו": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "תתלונני": [
- {
- "word_nikkud": "לְהִתְלוֹנֵן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "988-lehitlonen"
- }
- ],
- "מוקלה": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "יוקלו": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תוקלנה": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלתן": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "יוקל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "ק - ל - ל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלתם": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "נוקל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "מוקלות": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "קלות": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "אוקל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תוקלי": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלה": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "לקלל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלתי": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תוקלינה": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "מוקל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלת": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "קל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "קללה": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תוקל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלו": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "תוקלו": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקלנו": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "מוקלים": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "הוקל": [
- {
- "word_nikkud": "לְהָקֵל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1901-lehakel"
- }
- ],
- "גררת": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גרורנה!": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררנו": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גוררים": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררתן": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "תגררי": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררו": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "יגרור": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "תגרור": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גוררות": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גוררת": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "אגרור": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גרור!": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גורר": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "תגרורנה": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררו!": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "תגררו": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "לגרור": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "ג - ר - ר": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררי!": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "יגררו": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררתם": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "לגרר": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "נגרור": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררתי": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "גררה": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "להיגרר": [
- {
- "word_nikkud": "לִגְרֹר",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "384-ligror"
- }
- ],
- "יאוכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "יאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאוכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "להתאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבתי": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "יאכזבו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבתן": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאכזבים": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאוכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאכזבו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזב!": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאכזבי": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאוכזבים": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאוכזבות": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבת": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אאוכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבת": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבתי": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאכזבנה": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבתן": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאכזבות": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאכזבת": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבנו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבתם": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאוכזבו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "א - כ - ז - ב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "מאוכזבת": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "נאוכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבנו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "לאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאוכזבי": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "יאוכזבו": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבתם": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבו!": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזבה": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבנה!": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אוכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "תאוכזבנה": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "אכזבי!": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "נאכזב": [
- {
- "word_nikkud": "לְאַכְזֵב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "94-leachzev"
- }
- ],
- "בוגדני": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בוגד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "תבגדו": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדה": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "יבגדו": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "אבגוד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדתי": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "יבגוד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בוגדת": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בוגדים": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדת": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "נבגוד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדתם": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגודנה!": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בוגדות": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "תבגוד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "תבגדי": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "לבגוד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדו!": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בוגדנות": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדי!": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדתן": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "להיבגד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "תבגודנה": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "ב - ג - ד": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדו": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגדנו": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "בגוד!": [
- {
- "word_nikkud": "לִבְגֹּד",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "167-livgod"
- }
- ],
- "מוחשבתי": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבנו": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "תמוחשבי": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממוחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבת": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "תמוחשבו": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממוחשבת": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מוחשבתם": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבו": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבתם": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממוחשבות": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממחשבים": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "למחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבו!": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מ - ח - שׁ - ב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ימחשבו": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממוחשבים": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממחשבות": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "תמחשבי": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מוחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבי!": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "תמחשבנה": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשב!": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "אמוחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מחשבתי": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "תמחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "מוחשבה": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "תמוחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "ממחשב": [
- {
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
- }
- ],
- "נמחשב": [
+ "word_nikkud": "דְּבוֹרַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7251-dvoray",
+ "gender": "masculine"
+ },
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבוֹרַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7251-dvoray",
+ "gender": "masculine"
}
],
- "ימוחשבו": [
+ "דבורה": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבוֹרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6774-dvora",
+ "gender": "feminine"
}
],
- "נמוחשב": [
+ "דבורים": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבוֹרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6774-dvora",
+ "gender": "feminine"
}
],
- "מוחשבתן": [
+ "דבורת־": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבוֹרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6774-dvora",
+ "gender": "feminine"
}
],
- "תמוחשבנה": [
+ "דבורי־": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבוֹרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6774-dvora",
+ "gender": "feminine"
}
],
- "מוחשבנו": [
+ "מדבקה": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "מַדְבֵּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3556-madbeka",
+ "gender": "feminine"
}
],
- "מחשבנה!": [
+ "מדבקות": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "מַדְבֵּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3556-madbeka",
+ "gender": "feminine"
}
],
- "מוחשבו": [
+ "מדבקת־": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "מַדְבֵּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3556-madbeka",
+ "gender": "feminine"
}
],
- "תמחשבו": [
+ "מדבקות־": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "מַדְבֵּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3556-madbeka",
+ "gender": "feminine"
}
],
- "ממחשבת": [
+ "דביקות": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבִיקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6385-dvikut",
+ "gender": "feminine"
}
],
- "מחשבתן": [
+ "דביקויות": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבִיקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6385-dvikut",
+ "gender": "feminine"
}
],
- "אמחשב": [
+ "דביקות־": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבִיקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6385-dvikut",
+ "gender": "feminine"
}
],
- "ימחשב": [
+ "דביקויות־": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דְּבִיקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6385-dvikut",
+ "gender": "feminine"
}
],
- "ימוחשב": [
+ "דבק": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דֶּבֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3109-devek",
+ "gender": "masculine"
}
],
- "מוחשבת": [
+ "דבקים": [
{
- "word_nikkud": "לְמַחְשֵׁב",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4073-lemachshev"
+ "word_nikkud": "דֶּבֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3109-devek",
+ "gender": "masculine"
}
],
- "הוטל": [
+ "דבק־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דֶּבֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3109-devek",
+ "gender": "masculine"
}
],
- "הטילותי": [
+ "דבקי־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דֶּבֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3109-devek",
+ "gender": "masculine"
}
],
- "יוטלו": [
+ "דיבוק": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8006-dibuk",
+ "gender": "masculine"
}
],
- "מוטלת": [
+ "דיבוקים": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8006-dibuk",
+ "gender": "masculine"
}
],
- "תטיל": [
+ "דיבוק־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8006-dibuk",
+ "gender": "masculine"
}
],
- "הוטלתם": [
+ "דיבוקי־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8006-dibuk",
+ "gender": "masculine"
}
],
- "תטלנה": [
+ "הידבקות": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "הִדָּבְקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6681-hidavkut",
+ "gender": "feminine"
}
],
- "אוטל": [
+ "הידבקויות": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "הִדָּבְקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6681-hidavkut",
+ "gender": "feminine"
}
],
- "הטילי!": [
+ "הידבקות־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "הִדָּבְקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6681-hidavkut",
+ "gender": "feminine"
}
],
- "הטילותן": [
+ "הידבקויות־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "הִדָּבְקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6681-hidavkut",
+ "gender": "feminine"
}
],
- "הטילונו": [
+ "דיבר": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8032-diber",
+ "gender": "masculine"
}
],
- "מוטל": [
+ "דיברות": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8032-diber",
+ "gender": "masculine"
}
],
- "מוטלים": [
+ "דיבר־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8032-diber",
+ "gender": "masculine"
}
],
- "הוטלנו": [
+ "דיברות־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8032-diber",
+ "gender": "masculine"
}
],
- "נוטל": [
+ "מדבר": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "מִדְבָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5299-midbar",
+ "gender": "masculine"
}
],
- "יוטל": [
+ "מדבריות": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "מִדְבָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5299-midbar",
+ "gender": "masculine"
}
],
- "הוטלו": [
+ "מדבר־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "מִדְבָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5299-midbar",
+ "gender": "masculine"
}
],
- "תוטלו": [
+ "מדבריות־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "מִדְבָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5299-midbar",
+ "gender": "masculine"
}
],
- "הוטלה": [
+ "דביר": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דְּבִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4277-dvir",
+ "gender": "masculine"
}
],
- "נטיל": [
+ "דבירים": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דְּבִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4277-dvir",
+ "gender": "masculine"
}
],
- "תוטלינה": [
+ "דביר־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דְּבִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4277-dvir",
+ "gender": "masculine"
}
],
- "הטילה": [
+ "דבירי־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דְּבִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4277-dvir",
+ "gender": "masculine"
}
],
- "הטלתם": [
+ "דיבור": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6000-dibur",
+ "gender": "masculine"
}
],
- "הטילותם": [
+ "דיבורים": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6000-dibur",
+ "gender": "masculine"
}
],
- "תטילו": [
+ "דיבור־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6000-dibur",
+ "gender": "masculine"
}
],
- "הטלנה!": [
+ "דיבורי־": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
+ "word_nikkud": "דִּבּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6000-dibur",
+ "gender": "masculine"
}
],
- "הוטלתן": [
+ "הידברות": [
{
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "טיל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטלתי": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "מטיל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "מוטלות": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "תטילי": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "ט - ו - ל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "מטילים": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטיל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטילות": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטלתן": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "תטילינה": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטלנו": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "תוטל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטל!": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "יטילו": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטילו!": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "תוטלי": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "יטיל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "מטילות": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הוטלת": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "תוטלנה": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "מטילה": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הוטלתי": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטלת": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "הטילו": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "אטיל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "להטיל": [
- {
- "word_nikkud": "לְהַטִּיל",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "739-lehatil"
- }
- ],
- "חמקו!": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "נחמוק": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חומקים": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "תחמוק": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקה": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חומק": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמוק!": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקת": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקתן": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקו": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "יחמוק": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חומקות": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקתם": [
- {
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "תחמקי": [
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
+ },
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
}
],
- "יחמקו": [
+ "הידברויות": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חומקת": [
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
+ },
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
}
],
- "חמק": [
+ "הידברות־": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקתי": [
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
+ },
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
}
],
- "אחמוק": [
+ "הידברויות־": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
- }
- ],
- "חמקנו": [
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
+ },
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "הִדָּבְרוּת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4966-hidavrut",
+ "gender": "feminine"
}
],
- "תחמקו": [
+ "דובר": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "דּוֹבֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6178-dover",
+ "gender": "masculine"
}
],
- "תחמוקנה": [
+ "דוברים": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "דּוֹבֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6178-dover",
+ "gender": "masculine"
}
],
- "חמוקנה!": [
+ "דובר־": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "דּוֹבֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6178-dover",
+ "gender": "masculine"
}
],
- "חמקי!": [
+ "דוברי־": [
{
- "word_nikkud": "לַחְמֹק",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "626-lachmok"
+ "word_nikkud": "דּוֹבֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6178-dover",
+ "gender": "masculine"
}
],
- "מריץ": [
+ "דוברת": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דּוֹבֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6179-doveret",
+ "gender": "feminine"
}
],
- "הורצו": [
+ "דוברות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דּוֹבֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6179-doveret",
+ "gender": "feminine"
}
],
- "הריצו!": [
+ "דוברת־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דּוֹבֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6179-doveret",
+ "gender": "feminine"
}
],
- "מורצת": [
+ "דוברות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דּוֹבֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6179-doveret",
+ "gender": "feminine"
}
],
- "הריצה": [
+ "הדברה": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְבָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6418-hadbara",
+ "gender": "feminine"
}
],
- "מורץ": [
+ "הדברות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְבָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6418-hadbara",
+ "gender": "feminine"
}
],
- "יריץ": [
+ "הדברת־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְבָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6418-hadbara",
+ "gender": "feminine"
}
],
- "יורצו": [
+ "הדברות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְבָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6418-hadbara",
+ "gender": "feminine"
}
],
- "תורצו": [
+ "מדביר": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "מַדְבִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6419-madbir",
+ "gender": "masculine"
}
],
- "תורצי": [
+ "מדבירים": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "מַדְבִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6419-madbir",
+ "gender": "masculine"
}
],
- "הריץ": [
+ "מדביר־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "מַדְבִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6419-madbir",
+ "gender": "masculine"
}
],
- "מריצים": [
+ "מדבירי־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "מַדְבִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6419-madbir",
+ "gender": "masculine"
}
],
- "הרצנה!": [
+ "דבש": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דְּבַשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3054-dvash",
+ "gender": "masculine"
}
],
- "נורץ": [
+ "דבש־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דְּבַשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3054-dvash",
+ "gender": "masculine"
}
],
- "הורצתן": [
+ "דגל": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6103-degel",
+ "gender": "masculine"
}
],
- "נריץ": [
+ "דגלים": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6103-degel",
+ "gender": "masculine"
}
],
- "הורצנו": [
+ "דגל־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6103-degel",
+ "gender": "masculine"
}
],
- "הרצתי": [
+ "דגלי־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6103-degel",
+ "gender": "masculine"
}
],
- "הרץ!": [
+ "דגם": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5134-degem",
+ "gender": "masculine"
}
],
- "תורצינה": [
+ "דגמים": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5134-degem",
+ "gender": "masculine"
}
],
- "תריצו": [
+ "דגם־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5134-degem",
+ "gender": "masculine"
}
],
- "הריצי!": [
+ "דגמי־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֶּגֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5134-degem",
+ "gender": "masculine"
}
],
- "הורצתם": [
+ "דוגמה": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5135-dugma",
+ "gender": "feminine"
}
],
- "הורצתי": [
+ "דוגמא": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5135-dugma",
+ "gender": "feminine"
}
],
- "תריץ": [
+ "דוגמאות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5135-dugma",
+ "gender": "feminine"
}
],
- "הרצתן": [
+ "דוגמת־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5135-dugma",
+ "gender": "feminine"
}
],
- "הרצת": [
+ "דוגמות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5135-dugma",
+ "gender": "feminine"
}
],
- "מורצות": [
+ "דוגמן": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6277-dugman",
+ "gender": "masculine"
}
],
- "הריצות": [
+ "דוגמנים": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6277-dugman",
+ "gender": "masculine"
}
],
- "תריצינה": [
+ "דוגמן־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6277-dugman",
+ "gender": "masculine"
}
],
- "הרצתם": [
+ "דוגמני־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6277-dugman",
+ "gender": "masculine"
}
],
- "תורץ": [
+ "דוגמנית": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6278-dugmanit",
+ "gender": "feminine"
}
],
- "הריצותי": [
+ "דוגמניות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6278-dugmanit",
+ "gender": "feminine"
}
],
- "הורצת": [
+ "דוגמנית־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6278-dugmanit",
+ "gender": "feminine"
}
],
- "הריצונו": [
+ "דוגמניות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6278-dugmanit",
+ "gender": "feminine"
}
],
- "תורצנה": [
+ "דוגמנות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6279-dugmanut",
+ "gender": "feminine"
}
],
- "הריצותן": [
+ "דוגמנות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דֻּגְמָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6279-dugmanut",
+ "gender": "feminine"
}
],
- "יורץ": [
+ "הדגמה": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְגָּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6448-hadgama",
+ "gender": "feminine"
}
],
- "הרצנו": [
+ "הדגמות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְגָּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6448-hadgama",
+ "gender": "feminine"
}
],
- "תרצנה": [
+ "הדגמת־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְגָּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6448-hadgama",
+ "gender": "feminine"
}
],
- "יריצו": [
+ "הדגמות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "הַדְגָּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6448-hadgama",
+ "gender": "feminine"
}
],
- "אורץ": [
+ "דגימה": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דְּגִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6758-dgima",
+ "gender": "feminine"
}
],
- "מורצים": [
+ "דגימות": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דְּגִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6758-dgima",
+ "gender": "feminine"
}
],
- "מריצות": [
+ "דגימת־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דְּגִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6758-dgima",
+ "gender": "feminine"
}
],
- "אריץ": [
+ "דגימות־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דְּגִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6758-dgima",
+ "gender": "feminine"
}
],
- "הורצה": [
+ "דגן": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דָּגָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7156-dagan",
+ "gender": "masculine"
}
],
- "הורץ": [
+ "דגנים": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דָּגָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7156-dagan",
+ "gender": "masculine"
}
],
- "הריצו": [
+ "דגן־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דָּגָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7156-dagan",
+ "gender": "masculine"
}
],
- "הריצותם": [
+ "דגני־": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דָּגָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7156-dagan",
+ "gender": "masculine"
}
],
- "תריצי": [
+ "דגש": [
{
- "word_nikkud": "לְהָרִיץ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2010-leharitz"
+ "word_nikkud": "דָּגֵשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8531-dagesh",
+ "gender": "masculine"
}
],
- "תדיחו": [
+ "דגשים": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּגֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8531-dagesh",
+ "gender": "masculine"
}
],
- "הדיחותי": [
+ "דגש־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּגֵשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8531-dagesh",
+ "gender": "masculine"
}
],
- "הדחתן": [
+ "דגשי־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּגֵשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8531-dagesh",
+ "gender": "masculine"
}
],
- "ידיח": [
+ "תדהמה": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "תַּדְהֵמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7615-tadhema",
+ "gender": "feminine"
}
],
- "תדיחי": [
+ "תדהמות": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "תַּדְהֵמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7615-tadhema",
+ "gender": "feminine"
}
],
- "הדיח": [
+ "תדהמת־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "תַּדְהֵמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7615-tadhema",
+ "gender": "feminine"
}
],
- "הדיחו!": [
+ "תדהמות־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "תַּדְהֵמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7615-tadhema",
+ "gender": "feminine"
}
],
- "הדחנה!": [
+ "דובדבן": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דֻּבְדְּבָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6174-duvdevan",
+ "gender": "masculine"
}
],
- "הדחתי": [
+ "דובדבנים": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דֻּבְדְּבָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6174-duvdevan",
+ "gender": "masculine"
}
],
- "הדח!": [
+ "דובדבן־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דֻּבְדְּבָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6174-duvdevan",
+ "gender": "masculine"
}
],
- "תדיח": [
+ "דובדבני־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דֻּבְדְּבָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6174-duvdevan",
+ "gender": "masculine"
}
],
- "הדיחי!": [
+ "דג": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4787-dag",
+ "gender": "masculine"
}
],
- "נדיח": [
+ "דגים": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4787-dag",
+ "gender": "masculine"
}
],
- "הדחנו": [
+ "דג־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4787-dag",
+ "gender": "masculine"
}
],
- "הדיחו": [
+ "דגי־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דָּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4787-dag",
+ "gender": "masculine"
}
],
- "תדיחינה": [
+ "דוד": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3746-dod",
+ "gender": "masculine"
}
],
- "הדיחותם": [
+ "דודים": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3746-dod",
+ "gender": "masculine"
}
],
- "הדיחונו": [
+ "דוד־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3746-dod",
+ "gender": "masculine"
}
],
- "הדחת": [
+ "דודי־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3746-dod",
+ "gender": "masculine"
}
],
- "הדחתם": [
+ "דודא": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוּדָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7955-duda",
+ "gender": ""
}
],
- "הדיחה": [
+ "דודאים": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוּדָא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7955-duda",
+ "gender": ""
}
],
- "תדחנה": [
+ "דודא־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוּדָא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7955-duda",
+ "gender": ""
}
],
- "ידיחו": [
+ "דודאי־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוּדָא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7955-duda",
+ "gender": ""
}
],
- "מדיחות": [
+ "דודה": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5895-doda",
+ "gender": "feminine"
}
],
- "אדיח": [
+ "דודות": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5895-doda",
+ "gender": "feminine"
}
],
- "הדיחותן": [
+ "דודת־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5895-doda",
+ "gender": "feminine"
}
],
- "מדיחה": [
+ "דודות־": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "דּוֹדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5895-doda",
+ "gender": "feminine"
}
],
- "הדיחות": [
+ "מדיח": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "מֵדִיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5821-mediach",
+ "gender": "masculine"
}
],
"מדיחים": [
{
- "word_nikkud": "לְהַדִּיחַ",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "4229-lehadiach"
+ "word_nikkud": "מֵדִיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5821-mediach",
+ "gender": "masculine"
}
],
- "מעדכנים": [
+ "מדיח־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "מֵדִיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5821-mediach",
+ "gender": "masculine"
}
],
- "עודכנתם": [
+ "מדיחי־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "מֵדִיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5821-mediach",
+ "gender": "masculine"
}
],
- "יעדכן": [
+ "הדחה": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "הַדָּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4231-hadacha",
+ "gender": "feminine"
}
],
- "נעדכן": [
+ "הדחות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "הַדָּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4231-hadacha",
+ "gender": "feminine"
}
],
- "תעודכנו": [
+ "הדחת־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "הַדָּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4231-hadacha",
+ "gender": "feminine"
}
],
- "לעדכן": [
+ "הדחות־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "הַדָּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4231-hadacha",
+ "gender": "feminine"
}
],
- "ע - ד - כ - ן": [
+ "דיווח": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7607-divuach",
+ "gender": "masculine"
}
],
- "עדכנה!": [
+ "דיווחים": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7607-divuach",
+ "gender": "masculine"
}
],
- "תעודכנה": [
+ "דיווח־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7607-divuach",
+ "gender": "masculine"
}
],
- "תעדכנו": [
+ "דיווחי־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7607-divuach",
+ "gender": "masculine"
}
],
- "עדכנתם": [
+ "דוכן": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוּכָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4858-duchan",
+ "gender": "masculine"
}
],
- "יעדכנו": [
+ "דוכנים": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוּכָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4858-duchan",
+ "gender": "masculine"
}
],
- "עדכנו!": [
+ "דוכן־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוּכָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4858-duchan",
+ "gender": "masculine"
}
],
- "עדכנו": [
+ "דוכני־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוּכָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4858-duchan",
+ "gender": "masculine"
}
],
- "עדכנתי": [
+ "דולפין": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוֹלְפִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6400-dolfin",
+ "gender": "masculine"
}
],
- "מעדכנות": [
+ "דולפינים": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוֹלְפִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6400-dolfin",
+ "gender": "masculine"
}
],
- "מעודכנת": [
+ "דולפין־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוֹלְפִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6400-dolfin",
+ "gender": "masculine"
}
],
- "עידכון": [
+ "דולפיני־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוֹלְפִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6400-dolfin",
+ "gender": "masculine"
}
],
- "תעדכן": [
+ "דולר": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוֹלָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8819-dolar",
+ "gender": "masculine"
}
],
- "עודכנתי": [
+ "דולרים": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דּוֹלָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8819-dolar",
+ "gender": "masculine"
}
],
- "מעדכן": [
+ "דומדמנית": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דֻּמְדְּמָנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9094-dumdemanit",
+ "gender": "feminine"
}
],
- "עדכנת": [
+ "דומדמניות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דֻּמְדְּמָנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9094-dumdemanit",
+ "gender": "feminine"
}
],
- "עודכנו": [
+ "דומדמנית־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דֻּמְדְּמָנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9094-dumdemanit",
+ "gender": "feminine"
}
],
- "תעודכן": [
+ "דומדמניות־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דֻּמְדְּמָנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9094-dumdemanit",
+ "gender": "feminine"
}
],
- "עודכנה": [
+ "דוור": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6083-davar",
+ "gender": "masculine"
}
],
- "עודכן": [
+ "דוורים": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6083-davar",
+ "gender": "masculine"
}
],
- "יעודכן": [
+ "דוור־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6083-davar",
+ "gender": "masculine"
}
],
- "אעודכן": [
+ "דוורי־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6083-davar",
+ "gender": "masculine"
}
],
- "להתעדכן": [
+ "דירה": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4587-dira",
+ "gender": "feminine"
}
],
- "עדכנתן": [
+ "דירות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4587-dira",
+ "gender": "feminine"
}
],
- "תעדכנה": [
+ "דירת־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4587-dira",
+ "gender": "feminine"
}
],
- "יעודכנו": [
+ "דירות־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4587-dira",
+ "gender": "feminine"
}
],
- "מעודכן": [
+ "מדורה": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "מְדוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7454-medura",
+ "gender": "feminine"
}
],
- "עדכנה": [
+ "מדורות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "מְדוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7454-medura",
+ "gender": "feminine"
}
],
- "מעדכנת": [
+ "מדורת־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "מְדוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7454-medura",
+ "gender": "feminine"
}
],
- "תעדכני": [
+ "מדורות־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "מְדוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7454-medura",
+ "gender": "feminine"
}
],
- "מעודכנים": [
+ "דיווש": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5568-divush",
+ "gender": "masculine"
}
],
- "עדכן": [
+ "דיוושים": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5568-divush",
+ "gender": "masculine"
}
],
- "נעודכן": [
+ "דיווש־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5568-divush",
+ "gender": "masculine"
}
],
- "עדכני!": [
+ "דיוושי־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דִּוּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5568-divush",
+ "gender": "masculine"
}
],
- "עדכן!": [
+ "דוושה": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוְשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3229-davsha",
+ "gender": "feminine"
}
],
- "תעודכני": [
+ "דוושות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוְשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3229-davsha",
+ "gender": "feminine"
}
],
- "מעודכנות": [
+ "דוושת־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוְשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3229-davsha",
+ "gender": "feminine"
}
],
- "עודכנת": [
+ "דוושות־": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּוְשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3229-davsha",
+ "gender": "feminine"
}
],
- "אעדכן": [
+ "דחיינות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּחְיָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8711-dachyanut",
+ "gender": "feminine"
}
],
- "עודכנתן": [
+ "דחיינויות": [
{
- "word_nikkud": "לְעַדְכֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1450-leadken"
+ "word_nikkud": "דַּחְיָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8711-dachyanut",
+ "gender": "feminine"
}
],
- "תתקיימנה": [
+ "דחיינות־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְיָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8711-dachyanut",
+ "gender": "feminine"
}
],
- "יתקיים": [
+ "דחיינויות־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְיָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8711-dachyanut",
+ "gender": "feminine"
}
],
- "מתקיימות": [
+ "דחיין": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8710-dachyan",
+ "gender": "masculine"
}
],
- "נתקיים": [
+ "דחיינים": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8710-dachyan",
+ "gender": "masculine"
}
],
- "אתקיים": [
+ "דחיין־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8710-dachyan",
+ "gender": "masculine"
}
],
- "תתקיים": [
+ "דחייני־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8710-dachyan",
+ "gender": "masculine"
}
],
- "תתקיימו": [
+ "דיחוי": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דִּחוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5043-dichuy",
+ "gender": "masculine"
}
],
- "התקיימתם": [
+ "דיחויים": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דִּחוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5043-dichuy",
+ "gender": "masculine"
}
],
- "מתקיימת": [
+ "דיחוי־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דִּחוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5043-dichuy",
+ "gender": "masculine"
}
],
- "התקיימו": [
+ "דיחויי־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דִּחוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5043-dichuy",
+ "gender": "masculine"
}
],
- "התקיימנו": [
+ "דחייה": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דְּחִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6310-dchiya",
+ "gender": "feminine"
}
],
- "התקיימי!": [
+ "דחיות": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דְּחִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6310-dchiya",
+ "gender": "feminine"
}
],
- "מתקיימים": [
+ "דחיית־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דְּחִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6310-dchiya",
+ "gender": "feminine"
}
],
- "תתקיימי": [
+ "דחיות־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דְּחִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6310-dchiya",
+ "gender": "feminine"
}
],
- "התקיים!": [
+ "דחליל": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְלִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9250-dachlil",
+ "gender": "masculine"
}
],
- "התקיימתי": [
+ "דחלילים": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְלִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9250-dachlil",
+ "gender": "masculine"
}
],
- "התקיימתן": [
+ "דחליל־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְלִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9250-dachlil",
+ "gender": "masculine"
}
],
- "התקיימה": [
+ "דחלילי־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דַּחְלִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9250-dachlil",
+ "gender": "masculine"
}
],
- "מתקיים": [
+ "מדחס": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "מַדְחֵס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3505-madches",
+ "gender": "masculine"
}
],
- "התקיים": [
+ "מדחסים": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "מַדְחֵס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3505-madches",
+ "gender": "masculine"
}
],
- "התקיימו!": [
+ "מדחס־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "מַדְחֵס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3505-madches",
+ "gender": "masculine"
}
],
- "יתקיימו": [
+ "מדחסי־": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "מַדְחֵס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3505-madches",
+ "gender": "masculine"
}
],
- "התקיימנה!": [
+ "דחיסה": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דְּחִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8221-dchisa",
+ "gender": "feminine"
}
],
- "התקיימת": [
+ "דחיסות": [
{
- "word_nikkud": "לְהִתְקַיֵּם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1881-lehitkayem"
+ "word_nikkud": "דְּחִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8221-dchisa",
+ "gender": "feminine"
}
],
- "פיעמתן": [
+ "דחיסת־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8221-dchisa",
+ "gender": "feminine"
}
],
- "פיעמתי": [
+ "דחיסות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8221-dchisa",
+ "gender": "feminine"
}
],
- "להיפעם": [
+ "דחיפות": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7313-dchifut",
+ "gender": "feminine"
}
],
- "לפעם": [
+ "דחיפויות": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7313-dchifut",
+ "gender": "feminine"
}
],
- "תפעמנה": [
+ "דחיפות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7313-dchifut",
+ "gender": "feminine"
}
],
- "להפעים": [
+ "דחיפויות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7313-dchifut",
+ "gender": "feminine"
}
],
- "פיעם": [
+ "דחק": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּחַק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4282-dachak",
+ "gender": "masculine"
}
],
- "אפעם": [
+ "דחקים": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּחַק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4282-dachak",
+ "gender": "masculine"
}
],
- "פעמון": [
+ "דחק־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּחַק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4282-dachak",
+ "gender": "masculine"
}
],
- "מפעמת": [
+ "דחקי־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּחַק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4282-dachak",
+ "gender": "masculine"
}
],
- "פיעמנו": [
+ "דחיקה": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4284-dchika",
+ "gender": "feminine"
}
],
- "להתפעם": [
+ "דחיקות": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4284-dchika",
+ "gender": "feminine"
}
],
- "פ - ע - ם": [
+ "דחיקת־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4284-dchika",
+ "gender": "feminine"
}
],
- "פיעמה": [
+ "דחיקות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּחִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4284-dchika",
+ "gender": "feminine"
}
],
- "מפעמים": [
+ "הדחקה": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הַדְחָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4581-hadchaka",
+ "gender": "feminine"
}
],
- "פיעמת": [
+ "הדחקות": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הַדְחָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4581-hadchaka",
+ "gender": "feminine"
}
],
- "נפעם": [
+ "הדחקת־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הַדְחָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4581-hadchaka",
+ "gender": "feminine"
}
],
- "פעם!": [
+ "הדחקות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הַדְחָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4581-hadchaka",
+ "gender": "feminine"
}
],
- "תפעמי": [
+ "הדחק": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הֶדְחֵק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4582-hedchek",
+ "gender": "masculine"
}
],
- "מפעם": [
+ "הדחקים": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הֶדְחֵק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4582-hedchek",
+ "gender": "masculine"
}
],
- "יפעם": [
+ "הדחק־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הֶדְחֵק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4582-hedchek",
+ "gender": "masculine"
}
],
- "מפעמות": [
+ "הדחקי־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "הֶדְחֵק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4582-hedchek",
+ "gender": "masculine"
}
],
- "יפעמו": [
+ "דיאטה": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דִּיאֶטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7573-dieta",
+ "gender": "feminine"
}
],
- "פעמי!": [
+ "דיאטות": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דִּיאֶטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7573-dieta",
+ "gender": "feminine"
}
],
- "פעימה": [
+ "דיאטת־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דִּיאֶטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7573-dieta",
+ "gender": "feminine"
}
],
- "פעם": [
+ "דיאטות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דִּיאֶטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7573-dieta",
+ "gender": "feminine"
}
],
- "תפעם": [
+ "דייג": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּיָּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6156-dayag",
+ "gender": "masculine"
}
],
- "פעמיים": [
+ "דייגים": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּיָּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6156-dayag",
+ "gender": "masculine"
}
],
- "תפעמו": [
+ "דייג־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּיָּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6156-dayag",
+ "gender": "masculine"
}
],
- "פיעמו": [
+ "דייגי־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דַּיָּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6156-dayag",
+ "gender": "masculine"
}
],
- "פעמו!": [
+ "דיו": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּיוֹ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8089-dyo",
+ "gender": "feminine"
}
],
- "לפעום": [
+ "דיואות": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּיוֹ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8089-dyo",
+ "gender": "feminine"
}
],
- "פיעמתם": [
+ "דיו־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּיוֹ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8089-dyo",
+ "gender": "feminine"
}
],
- "פעמנה!": [
+ "דיואות־": [
{
- "word_nikkud": "לְפַעֵם",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "5672-lefaem"
+ "word_nikkud": "דְּיוֹ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8089-dyo",
+ "gender": "feminine"
}
],
- "מיעטת": [
+ "דיונון": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹנוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8732-dyonun",
+ "gender": "masculine"
}
],
- "מועטת": [
+ "דיונונים": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹנוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8732-dyonun",
+ "gender": "masculine"
}
],
- "ימועטו": [
+ "דיונון־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹנוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8732-dyonun",
+ "gender": "masculine"
}
],
- "ממעטת": [
+ "דיונוני־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹנוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8732-dyonun",
+ "gender": "masculine"
}
],
- "ממועטים": [
+ "דיוקן": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹקָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4755-dyokan",
+ "gender": ""
}
],
- "ממעטות": [
+ "דיוקנאות": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹקָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4755-dyokan",
+ "gender": ""
}
],
- "מועטתי": [
+ "דיוקן־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹקָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4755-dyokan",
+ "gender": ""
}
],
- "מועטתן": [
+ "דיוקנאות־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דְּיוֹקָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4755-dyokan",
+ "gender": ""
}
],
- "מועטנו": [
+ "דייסה": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיְסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6358-daysa",
+ "gender": "feminine"
}
],
- "ממועטות": [
+ "דייסות": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיְסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6358-daysa",
+ "gender": "feminine"
}
],
- "מיעטה": [
+ "דייסת־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיְסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6358-daysa",
+ "gender": "feminine"
}
],
- "מיעטו": [
+ "דייסות־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיְסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6358-daysa",
+ "gender": "feminine"
}
],
- "מיעטתי": [
+ "דייל": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3992-dayal",
+ "gender": "masculine"
}
],
- "מיעטנו": [
+ "דיילים": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3992-dayal",
+ "gender": "masculine"
}
],
- "נמועט": [
+ "דייל־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3992-dayal",
+ "gender": "masculine"
}
],
- "ממועט": [
+ "דיילי־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3992-dayal",
+ "gender": "masculine"
}
],
- "ממעטים": [
+ "דילמה": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּילֶמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8149-dilema",
+ "gender": ""
}
],
- "אמועט": [
+ "דילמות": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּילֶמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8149-dilema",
+ "gender": ""
}
],
- "תמועטי": [
+ "דילמת־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּילֶמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8149-dilema",
+ "gender": ""
}
],
- "תמועט": [
+ "דילמות־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּילֶמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8149-dilema",
+ "gender": ""
}
],
- "מועטתם": [
+ "דיין": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5230-dayan",
+ "gender": "masculine"
}
],
- "ממועטת": [
+ "דיינים": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5230-dayan",
+ "gender": "masculine"
}
],
- "מעטי!": [
+ "דיין־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5230-dayan",
+ "gender": "masculine"
}
],
- "מעט!": [
+ "דייני־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דַּיָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5230-dayan",
+ "gender": "masculine"
}
],
- "מיעטתן": [
+ "דיון": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּיּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2957-diyun",
+ "gender": "masculine"
}
],
- "ממעט": [
+ "דיונים": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּיּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2957-diyun",
+ "gender": "masculine"
}
],
- "ימועט": [
+ "דיון־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּיּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2957-diyun",
+ "gender": "masculine"
}
],
- "תמועטנה": [
+ "דיוני־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּיּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2957-diyun",
+ "gender": "masculine"
}
],
- "מיעטתם": [
+ "מדינה": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "מְדִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3752-medina",
+ "gender": "feminine"
}
],
- "מועטה": [
+ "מדינות": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "מְדִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3752-medina",
+ "gender": "feminine"
}
],
- "תמועטו": [
+ "מדינת־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "מְדִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3752-medina",
+ "gender": "feminine"
}
],
- "מעטנה!": [
+ "מדינות־": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "מְדִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3752-medina",
+ "gender": "feminine"
}
],
- "מעטו!": [
+ "דינוזאור": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּינוֹזָאוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8853-dinozaur",
+ "gender": "masculine"
}
],
- "מיעט": [
+ "דינוזאורים": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּינוֹזָאוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8853-dinozaur",
+ "gender": "masculine"
}
],
- "מועטו": [
+ "דיוק": [
{
- "word_nikkud": "לְמַעֵט",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "2469-lemaet"
+ "word_nikkud": "דִּיּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2958-diyuk",
+ "gender": "masculine"
}
],
- "מעצבנת": [
+ "דיוק־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּיּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2958-diyuk",
+ "gender": "masculine"
}
],
- "תעצבנה": [
+ "דייר": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דַּיָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6629-dayar",
+ "gender": "masculine"
}
],
- "עצבן!": [
+ "דיירים": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דַּיָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6629-dayar",
+ "gender": "masculine"
}
],
- "נעוצבן": [
+ "דייר־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דַּיָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6629-dayar",
+ "gender": "masculine"
}
],
- "תעצבני": [
+ "דיירי־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דַּיָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6629-dayar",
+ "gender": "masculine"
}
],
- "עוצבנתן": [
+ "דיור": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּיּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7729-diyur",
+ "gender": "masculine"
}
],
- "לעצבן": [
+ "דיורים": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּיּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7729-diyur",
+ "gender": "masculine"
}
],
- "עצבנתי": [
+ "דיור־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּיּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7729-diyur",
+ "gender": "masculine"
}
],
- "תעצבן": [
+ "דיורי־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּיּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7729-diyur",
+ "gender": "masculine"
}
],
- "יעצבן": [
+ "דיכאון": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּכָּאוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3576-dikaon",
+ "gender": "masculine"
}
],
- "מעוצבנים": [
+ "דיכאונות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּכָּאוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3576-dikaon",
+ "gender": "masculine"
}
],
- "עוצבנו": [
+ "דיכאון־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּכָּאוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3576-dikaon",
+ "gender": "masculine"
}
],
- "תעוצבנו": [
+ "דיכאונות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּכָּאוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3576-dikaon",
+ "gender": "masculine"
}
],
- "תעוצבנה": [
+ "דילוג": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּלּוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9005-dilug",
+ "gender": "masculine"
}
],
- "תעוצבן": [
+ "דילוגים": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּלּוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9005-dilug",
+ "gender": "masculine"
}
],
- "מעצבנות": [
+ "דילוג־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּלּוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9005-dilug",
+ "gender": "masculine"
}
],
- "יעוצבן": [
+ "דילוגי־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "דִּלּוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9005-dilug",
+ "gender": "masculine"
+ }
+ ],
+ "דלות": [
+ {
+ "word_nikkud": "דַּלּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5058-dalut",
+ "gender": "feminine"
+ }
+ ],
+ "דלויות": [
+ {
+ "word_nikkud": "דַּלּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5058-dalut",
+ "gender": "feminine"
+ }
+ ],
+ "דלות־": [
+ {
+ "word_nikkud": "דַּלּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5058-dalut",
+ "gender": "feminine"
+ }
+ ],
+ "דלויות־": [
+ {
+ "word_nikkud": "דַּלּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5058-dalut",
+ "gender": "feminine"
+ }
+ ],
+ "דלעת": [
+ {
+ "word_nikkud": "דְּלַעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8835-dlaat",
+ "gender": "feminine"
+ }
+ ],
+ "דלועים": [
+ {
+ "word_nikkud": "דְּלַעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8835-dlaat",
+ "gender": "feminine"
+ }
+ ],
+ "דלעת־": [
+ {
+ "word_nikkud": "דְּלַעַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8835-dlaat",
+ "gender": "feminine"
+ }
+ ],
+ "דלועי־": [
+ {
+ "word_nikkud": "דְּלַעַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8835-dlaat",
+ "gender": "feminine"
+ }
+ ],
+ "דליפה": [
+ {
+ "word_nikkud": "דְּלִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3883-dlifa",
+ "gender": "feminine"
+ }
+ ],
+ "דליפות": [
+ {
+ "word_nikkud": "דְּלִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3883-dlifa",
+ "gender": "feminine"
+ }
+ ],
+ "דליפת־": [
+ {
+ "word_nikkud": "דְּלִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3883-dlifa",
+ "gender": "feminine"
+ }
+ ],
+ "דליפות־": [
+ {
+ "word_nikkud": "דְּלִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3883-dlifa",
+ "gender": "feminine"
+ }
+ ],
+ "דלפק": [
+ {
+ "word_nikkud": "דֶּלְפֵּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9085-delpek",
+ "gender": "masculine"
+ }
+ ],
+ "דלפקים": [
+ {
+ "word_nikkud": "דֶּלְפֵּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9085-delpek",
+ "gender": "masculine"
+ }
+ ],
+ "דלפק־": [
+ {
+ "word_nikkud": "דֶּלְפֵּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9085-delpek",
+ "gender": "masculine"
+ }
+ ],
+ "דלפקי־": [
+ {
+ "word_nikkud": "דֶּלְפֵּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9085-delpek",
+ "gender": "masculine"
+ }
+ ],
+ "דליקות": [
+ {
+ "word_nikkud": "דְּלִיקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6675-dlikut",
+ "gender": "feminine"
+ }
+ ],
+ "דליקויות": [
+ {
+ "word_nikkud": "דְּלִיקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6675-dlikut",
+ "gender": "feminine"
+ }
+ ],
+ "דליקות־": [
+ {
+ "word_nikkud": "דְּלִיקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6675-dlikut",
+ "gender": "feminine"
+ }
+ ],
+ "דליקויות־": [
+ {
+ "word_nikkud": "דְּלִיקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6675-dlikut",
+ "gender": "feminine"
+ }
+ ],
+ "דלק": [
+ {
+ "word_nikkud": "דֶּלֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3111-delek",
+ "gender": "masculine"
+ }
+ ],
+ "דלקים": [
+ {
+ "word_nikkud": "דֶּלֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3111-delek",
+ "gender": "masculine"
+ }
+ ],
+ "דלק־": [
+ {
+ "word_nikkud": "דֶּלֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3111-delek",
+ "gender": "masculine"
+ }
+ ],
+ "דלקי־": [
+ {
+ "word_nikkud": "דֶּלֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3111-delek",
+ "gender": "masculine"
+ }
+ ],
+ "דלקת": [
+ {
+ "word_nikkud": "דַּלֶּקֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3287-daleket",
+ "gender": "feminine"
+ }
+ ],
+ "דלקות": [
+ {
+ "word_nikkud": "דַּלֶּקֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3287-daleket",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "דְּלֵקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6673-dleka",
+ "gender": "feminine"
+ }
+ ],
+ "דלקת־": [
+ {
+ "word_nikkud": "דַּלֶּקֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3287-daleket",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "דְּלֵקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6673-dleka",
+ "gender": "feminine"
+ }
+ ],
+ "דלקות־": [
+ {
+ "word_nikkud": "דַּלֶּקֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3287-daleket",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "דְּלֵקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6673-dleka",
+ "gender": "feminine"
+ }
+ ],
+ "הדלקה": [
+ {
+ "word_nikkud": "הַדְלָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3708-hadlaka",
+ "gender": "feminine"
+ }
+ ],
+ "הדלקות": [
+ {
+ "word_nikkud": "הַדְלָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3708-hadlaka",
+ "gender": "feminine"
+ }
+ ],
+ "הדלקת־": [
+ {
+ "word_nikkud": "הַדְלָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3708-hadlaka",
+ "gender": "feminine"
+ }
+ ],
+ "הדלקות־": [
+ {
+ "word_nikkud": "הַדְלָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3708-hadlaka",
+ "gender": "feminine"
+ }
+ ],
+ "דלקה": [
+ {
+ "word_nikkud": "דְּלֵקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6673-dleka",
+ "gender": "feminine"
+ }
+ ],
+ "דלת": [
+ {
+ "word_nikkud": "דֶּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5310-delet",
+ "gender": "feminine"
+ }
+ ],
+ "דלתות": [
+ {
+ "word_nikkud": "דֶּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5310-delet",
+ "gender": "feminine"
+ }
+ ],
+ "דלת־": [
+ {
+ "word_nikkud": "דֶּלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5310-delet",
+ "gender": "feminine"
+ }
+ ],
+ "דלתות־": [
+ {
+ "word_nikkud": "דֶּלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5310-delet",
+ "gender": "feminine"
+ }
+ ],
+ "דמוקרטיה": [
+ {
+ "word_nikkud": "דֶּמוֹקְרַטְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5220-demokratya",
+ "gender": "feminine"
+ }
+ ],
+ "דמוקרטיית־": [
+ {
+ "word_nikkud": "דֶּמוֹקְרַטְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5220-demokratya",
+ "gender": "feminine"
+ }
+ ],
+ "דמות": [
+ {
+ "word_nikkud": "דְּמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3757-dmut",
+ "gender": "feminine"
+ }
+ ],
+ "דמויות": [
+ {
+ "word_nikkud": "דְּמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3757-dmut",
+ "gender": "feminine"
+ }
+ ],
+ "דמות־": [
+ {
+ "word_nikkud": "דְּמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3757-dmut",
+ "gender": "feminine"
+ }
+ ],
+ "דמויות־": [
+ {
+ "word_nikkud": "דְּמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3757-dmut",
+ "gender": "feminine"
+ }
+ ],
+ "דמיון": [
+ {
+ "word_nikkud": "דִּמְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3585-dimyon",
+ "gender": "masculine"
+ }
+ ],
+ "דמיונות": [
+ {
+ "word_nikkud": "דִּמְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3585-dimyon",
+ "gender": "masculine"
+ }
+ ],
+ "דמיון־": [
+ {
+ "word_nikkud": "דִּמְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3585-dimyon",
+ "gender": "masculine"
+ }
+ ],
+ "דמיונות־": [
+ {
+ "word_nikkud": "דִּמְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3585-dimyon",
+ "gender": "masculine"
+ }
+ ],
+ "תדמית": [
+ {
+ "word_nikkud": "תַּדְמִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3769-tadmit",
+ "gender": "feminine"
+ }
+ ],
+ "תדמיות": [
+ {
+ "word_nikkud": "תַּדְמִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3769-tadmit",
+ "gender": "feminine"
+ }
+ ],
+ "תדמית־": [
+ {
+ "word_nikkud": "תַּדְמִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3769-tadmit",
+ "gender": "feminine"
+ }
+ ],
+ "תדמיות־": [
+ {
+ "word_nikkud": "תַּדְמִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3769-tadmit",
+ "gender": "feminine"
+ }
+ ],
+ "הדמיה": [
+ {
+ "word_nikkud": "הַדְמָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5953-hadmaya",
+ "gender": "feminine"
+ }
+ ],
+ "הדמיות": [
+ {
+ "word_nikkud": "הַדְמָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5953-hadmaya",
+ "gender": "feminine"
+ }
+ ],
+ "הדמיית־": [
+ {
+ "word_nikkud": "הַדְמָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5953-hadmaya",
+ "gender": "feminine"
+ }
+ ],
+ "הדמיות־": [
+ {
+ "word_nikkud": "הַדְמָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5953-hadmaya",
+ "gender": "feminine"
+ }
+ ],
+ "דמים": [
+ {
+ "word_nikkud": "דָּמִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7153-damim",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "דָּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5233-dam",
+ "gender": "masculine"
+ }
+ ],
+ "דמי־": [
+ {
+ "word_nikkud": "דָּמִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7153-damim",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "דָּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5233-dam",
+ "gender": "masculine"
+ }
+ ],
+ "דם": [
+ {
+ "word_nikkud": "דָּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5233-dam",
+ "gender": "masculine"
+ }
+ ],
+ "דם־": [
+ {
+ "word_nikkud": "דָּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5233-dam",
+ "gender": "masculine"
+ }
+ ],
+ "דממה": [
+ {
+ "word_nikkud": "דְּמָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7968-dmama",
+ "gender": "feminine"
+ }
+ ],
+ "דממת־": [
+ {
+ "word_nikkud": "דְּמָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7968-dmama",
+ "gender": "feminine"
+ }
+ ],
+ "דומיה": [
+ {
+ "word_nikkud": "דּוּמִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8642-dumiya",
+ "gender": ""
+ }
+ ],
+ "דומיית־": [
+ {
+ "word_nikkud": "דּוּמִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8642-dumiya",
+ "gender": ""
+ }
+ ],
+ "דמעה": [
+ {
+ "word_nikkud": "דִּמְעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4311-dima",
+ "gender": "feminine"
+ }
+ ],
+ "דמעות": [
+ {
+ "word_nikkud": "דִּמְעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4311-dima",
+ "gender": "feminine"
+ }
+ ],
+ "דמעת־": [
+ {
+ "word_nikkud": "דִּמְעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4311-dima",
+ "gender": "feminine"
+ }
+ ],
+ "דמעות־": [
+ {
+ "word_nikkud": "דִּמְעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4311-dima",
+ "gender": "feminine"
+ }
+ ],
+ "דעיכה": [
+ {
+ "word_nikkud": "דְּעִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8753-deicha",
+ "gender": "feminine"
+ }
+ ],
+ "דעיכות": [
+ {
+ "word_nikkud": "דְּעִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8753-deicha",
+ "gender": "feminine"
+ }
+ ],
+ "דעיכת־": [
+ {
+ "word_nikkud": "דְּעִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8753-deicha",
+ "gender": "feminine"
+ }
+ ],
+ "דעיכות־": [
+ {
+ "word_nikkud": "דְּעִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8753-deicha",
+ "gender": "feminine"
+ }
+ ],
+ "דפדפת": [
+ {
+ "word_nikkud": "דַּפְדֶּפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5501-dafdefet",
+ "gender": "feminine"
+ }
+ ],
+ "דפדפות": [
+ {
+ "word_nikkud": "דַּפְדֶּפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5501-dafdefet",
+ "gender": "feminine"
+ }
+ ],
+ "דפדפת־": [
+ {
+ "word_nikkud": "דַּפְדֶּפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5501-dafdefet",
+ "gender": "feminine"
+ }
+ ],
+ "דפדפות־": [
+ {
+ "word_nikkud": "דַּפְדֶּפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5501-dafdefet",
+ "gender": "feminine"
+ }
+ ],
+ "דפדפן": [
+ {
+ "word_nikkud": "דַּפְדְּפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5500-dafdefan",
+ "gender": "masculine"
+ }
+ ],
+ "דפדפנים": [
+ {
+ "word_nikkud": "דַּפְדְּפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5500-dafdefan",
+ "gender": "masculine"
+ }
+ ],
+ "דפדפן־": [
+ {
+ "word_nikkud": "דַּפְדְּפָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5500-dafdefan",
+ "gender": "masculine"
+ }
+ ],
+ "דפדפני־": [
+ {
+ "word_nikkud": "דַּפְדְּפָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5500-dafdefan",
+ "gender": "masculine"
+ }
+ ],
+ "דפדוף": [
+ {
+ "word_nikkud": "דִּפְדּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7565-difduf",
+ "gender": "masculine"
+ }
+ ],
+ "דפדופים": [
+ {
+ "word_nikkud": "דִּפְדּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7565-difduf",
+ "gender": "masculine"
+ }
+ ],
+ "דפדוף־": [
+ {
+ "word_nikkud": "דִּפְדּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7565-difduf",
+ "gender": "masculine"
+ }
+ ],
+ "דפדופי־": [
+ {
+ "word_nikkud": "דִּפְדּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7565-difduf",
+ "gender": "masculine"
+ }
+ ],
+ "דופן": [
+ {
+ "word_nikkud": "דֹּפֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3922-dofen",
+ "gender": "masculine"
+ }
+ ],
+ "דפנות": [
+ {
+ "word_nikkud": "דֹּפֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3922-dofen",
+ "gender": "masculine"
+ }
+ ],
+ "דופן־": [
+ {
+ "word_nikkud": "דֹּפֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3922-dofen",
+ "gender": "masculine"
+ }
+ ],
+ "דפנות־": [
+ {
+ "word_nikkud": "דֹּפֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3922-dofen",
+ "gender": "masculine"
+ }
+ ],
+ "דפוס": [
+ {
+ "word_nikkud": "דְּפוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3074-dfus",
+ "gender": "masculine"
+ }
+ ],
+ "דפוסים": [
+ {
+ "word_nikkud": "דְּפוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3074-dfus",
+ "gender": "masculine"
+ }
+ ],
+ "דפוס־": [
+ {
+ "word_nikkud": "דְּפוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3074-dfus",
+ "gender": "masculine"
+ }
+ ],
+ "דפוסי־": [
+ {
+ "word_nikkud": "דְּפוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3074-dfus",
+ "gender": "masculine"
+ }
+ ],
+ "מדפסת": [
+ {
+ "word_nikkud": "מַדְפֶּסֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3281-madpeset",
+ "gender": "feminine"
+ }
+ ],
+ "מדפסות": [
+ {
+ "word_nikkud": "מַדְפֶּסֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3281-madpeset",
+ "gender": "feminine"
+ }
+ ],
+ "מדפסת־": [
+ {
+ "word_nikkud": "מַדְפֶּסֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3281-madpeset",
+ "gender": "feminine"
+ }
+ ],
+ "מדפסות־": [
+ {
+ "word_nikkud": "מַדְפֶּסֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3281-madpeset",
+ "gender": "feminine"
+ }
+ ],
+ "תדפיס": [
+ {
+ "word_nikkud": "תַּדְפִּיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3605-tadpis",
+ "gender": "masculine"
+ }
+ ],
+ "תדפיסים": [
+ {
+ "word_nikkud": "תַּדְפִּיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3605-tadpis",
+ "gender": "masculine"
+ }
+ ],
+ "תדפיס־": [
+ {
+ "word_nikkud": "תַּדְפִּיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3605-tadpis",
+ "gender": "masculine"
+ }
+ ],
+ "תדפיסי־": [
+ {
+ "word_nikkud": "תַּדְפִּיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3605-tadpis",
+ "gender": "masculine"
+ }
+ ],
+ "הדפסה": [
+ {
+ "word_nikkud": "הַדְפָּסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8242-hadpasa",
+ "gender": "feminine"
+ }
+ ],
+ "הדפסות": [
+ {
+ "word_nikkud": "הַדְפָּסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8242-hadpasa",
+ "gender": "feminine"
+ }
+ ],
+ "הדפסת־": [
+ {
+ "word_nikkud": "הַדְפָּסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8242-hadpasa",
+ "gender": "feminine"
+ }
+ ],
+ "הדפסות־": [
+ {
+ "word_nikkud": "הַדְפָּסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8242-hadpasa",
+ "gender": "feminine"
+ }
+ ],
+ "דף": [
+ {
+ "word_nikkud": "דַּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2689-daf",
+ "gender": "masculine"
+ }
+ ],
+ "דפים": [
+ {
+ "word_nikkud": "דַּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2689-daf",
+ "gender": "masculine"
+ }
+ ],
+ "דף־": [
+ {
+ "word_nikkud": "דַּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2689-daf",
+ "gender": "masculine"
+ }
+ ],
+ "דפי־": [
+ {
+ "word_nikkud": "דַּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2689-daf",
+ "gender": "masculine"
+ }
+ ],
+ "דפיקה": [
+ {
+ "word_nikkud": "דְּפִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8912-dfika",
+ "gender": "feminine"
+ }
+ ],
+ "דפיקות": [
+ {
+ "word_nikkud": "דְּפִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8912-dfika",
+ "gender": "feminine"
+ }
+ ],
+ "דפיקת־": [
+ {
+ "word_nikkud": "דְּפִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8912-dfika",
+ "gender": "feminine"
+ }
+ ],
+ "דפיקות־": [
+ {
+ "word_nikkud": "דְּפִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8912-dfika",
+ "gender": "feminine"
+ }
+ ],
+ "דופק": [
+ {
+ "word_nikkud": "דֹּפֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8383-dofek",
+ "gender": "masculine"
+ }
+ ],
+ "דפקים": [
+ {
+ "word_nikkud": "דֹּפֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8383-dofek",
+ "gender": "masculine"
+ }
+ ],
+ "דופק־": [
+ {
+ "word_nikkud": "דֹּפֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8383-dofek",
+ "gender": "masculine"
+ }
+ ],
+ "דפקי־": [
+ {
+ "word_nikkud": "דֹּפֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8383-dofek",
+ "gender": "masculine"
+ }
+ ],
+ "דקדוק": [
+ {
+ "word_nikkud": "דִּקְדּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6023-dikduk",
+ "gender": "masculine"
+ }
+ ],
+ "דקדוקים": [
+ {
+ "word_nikkud": "דִּקְדּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6023-dikduk",
+ "gender": "masculine"
+ }
+ ],
+ "דקדוק־": [
+ {
+ "word_nikkud": "דִּקְדּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6023-dikduk",
+ "gender": "masculine"
+ }
+ ],
+ "דקדוקי־": [
+ {
+ "word_nikkud": "דִּקְדּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6023-dikduk",
+ "gender": "masculine"
+ }
+ ],
+ "דקל": [
+ {
+ "word_nikkud": "דֶּקֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6336-dekel",
+ "gender": "masculine"
+ }
+ ],
+ "דקלים": [
+ {
+ "word_nikkud": "דֶּקֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6336-dekel",
+ "gender": "masculine"
+ }
+ ],
+ "דקל־": [
+ {
+ "word_nikkud": "דֶּקֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6336-dekel",
+ "gender": "masculine"
+ }
+ ],
+ "דקלי־": [
+ {
+ "word_nikkud": "דֶּקֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6336-dekel",
+ "gender": "masculine"
+ }
+ ],
+ "דקלום": [
+ {
+ "word_nikkud": "דִּקְלוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8506-diklum",
+ "gender": "masculine"
+ }
+ ],
+ "דקלומים": [
+ {
+ "word_nikkud": "דִּקְלוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8506-diklum",
+ "gender": "masculine"
+ }
+ ],
+ "דקלום־": [
+ {
+ "word_nikkud": "דִּקְלוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8506-diklum",
+ "gender": "masculine"
+ }
+ ],
+ "דקלומי־": [
+ {
+ "word_nikkud": "דִּקְלוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8506-diklum",
+ "gender": "masculine"
+ }
+ ],
+ "דקה": [
+ {
+ "word_nikkud": "דַּקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5828-daka",
+ "gender": "feminine"
+ }
+ ],
+ "דקות": [
+ {
+ "word_nikkud": "דַּקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5828-daka",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "דַּקּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9142-dakut",
+ "gender": "feminine"
+ }
+ ],
+ "דקת־": [
+ {
+ "word_nikkud": "דַּקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5828-daka",
+ "gender": "feminine"
+ }
+ ],
+ "דקות־": [
+ {
+ "word_nikkud": "דַּקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5828-daka",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "דַּקּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9142-dakut",
+ "gender": "feminine"
+ }
+ ],
+ "דקויות": [
+ {
+ "word_nikkud": "דַּקּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9142-dakut",
+ "gender": "feminine"
+ }
+ ],
+ "דקויות־": [
+ {
+ "word_nikkud": "דַּקּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9142-dakut",
+ "gender": "feminine"
+ }
+ ],
+ "דקירה": [
+ {
+ "word_nikkud": "דְּקִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8547-dkira",
+ "gender": "feminine"
+ }
+ ],
+ "דקירות": [
+ {
+ "word_nikkud": "דְּקִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8547-dkira",
+ "gender": "feminine"
+ }
+ ],
+ "דקירת־": [
+ {
+ "word_nikkud": "דְּקִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8547-dkira",
+ "gender": "feminine"
+ }
+ ],
+ "דקירות־": [
+ {
+ "word_nikkud": "דְּקִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8547-dkira",
+ "gender": "feminine"
+ }
+ ],
+ "דרבן": [
+ {
+ "word_nikkud": "דָּרְבָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8329-darban",
+ "gender": "masculine"
+ }
+ ],
+ "דרבןים": [
+ {
+ "word_nikkud": "דָּרְבָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8329-darban",
+ "gender": "masculine"
+ }
+ ],
+ "דרבן־": [
+ {
+ "word_nikkud": "דָּרְבָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8329-darban",
+ "gender": "masculine"
+ }
+ ],
+ "דרבןי־": [
+ {
+ "word_nikkud": "דָּרְבָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8329-darban",
+ "gender": "masculine"
+ }
+ ],
+ "מדרגה": [
+ {
+ "word_nikkud": "מַדְרֵגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3557-madrega",
+ "gender": "feminine"
+ }
+ ],
+ "מדרגות": [
+ {
+ "word_nikkud": "מַדְרֵגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3557-madrega",
+ "gender": "feminine"
+ }
+ ],
+ "מדרגת־": [
+ {
+ "word_nikkud": "מַדְרֵגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3557-madrega",
+ "gender": "feminine"
+ }
+ ],
+ "מדרגות־": [
+ {
+ "word_nikkud": "מַדְרֵגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3557-madrega",
+ "gender": "feminine"
+ }
+ ],
+ "הדרגה": [
+ {
+ "word_nikkud": "הַדְרָגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2875-hadraga",
+ "gender": "feminine"
+ }
+ ],
+ "הדרגת־": [
+ {
+ "word_nikkud": "הַדְרָגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2875-hadraga",
+ "gender": "feminine"
+ }
+ ],
+ "דרגה": [
+ {
+ "word_nikkud": "דַּרְגָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3230-darga",
+ "gender": "feminine"
+ }
+ ],
+ "דרגות": [
+ {
+ "word_nikkud": "דַּרְגָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3230-darga",
+ "gender": "feminine"
+ }
+ ],
+ "דרגת־": [
+ {
+ "word_nikkud": "דַּרְגָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3230-darga",
+ "gender": "feminine"
+ }
+ ],
+ "דרגות־": [
+ {
+ "word_nikkud": "דַּרְגָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3230-darga",
+ "gender": "feminine"
+ }
+ ],
+ "דרג": [
+ {
+ "word_nikkud": "דֶּרֶג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3930-dereg",
+ "gender": "masculine"
+ }
+ ],
+ "דרגים": [
+ {
+ "word_nikkud": "דֶּרֶג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3930-dereg",
+ "gender": "masculine"
+ }
+ ],
+ "דרג־": [
+ {
+ "word_nikkud": "דֶּרֶג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3930-dereg",
+ "gender": "masculine"
+ }
+ ],
+ "דרגי־": [
+ {
+ "word_nikkud": "דֶּרֶג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3930-dereg",
+ "gender": "masculine"
+ }
+ ],
+ "דירוג": [
+ {
+ "word_nikkud": "דֵּרוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8966-derug",
+ "gender": "masculine"
+ }
+ ],
+ "דירוגים": [
+ {
+ "word_nikkud": "דֵּרוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8966-derug",
+ "gender": "masculine"
+ }
+ ],
+ "דירוג־": [
+ {
+ "word_nikkud": "דֵּרוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8966-derug",
+ "gender": "masculine"
+ }
+ ],
+ "דירוגי־": [
+ {
+ "word_nikkud": "דֵּרוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8966-derug",
+ "gender": "masculine"
+ }
+ ],
+ "דרור": [
+ {
+ "word_nikkud": "דְּרוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9020-dror",
+ "gender": "masculine"
+ }
+ ],
+ "דרורים": [
+ {
+ "word_nikkud": "דְּרוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9020-dror",
+ "gender": "masculine"
+ }
+ ],
+ "דרור־": [
+ {
+ "word_nikkud": "דְּרוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9020-dror",
+ "gender": "masculine"
+ }
+ ],
+ "דרורי־": [
+ {
+ "word_nikkud": "דְּרוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9020-dror",
+ "gender": "masculine"
+ }
+ ],
+ "תדריך": [
+ {
+ "word_nikkud": "תַּדְרִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5801-tadrich",
+ "gender": "masculine"
+ }
+ ],
+ "תדריכים": [
+ {
+ "word_nikkud": "תַּדְרִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5801-tadrich",
+ "gender": "masculine"
+ }
+ ],
+ "תדריך־": [
+ {
+ "word_nikkud": "תַּדְרִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5801-tadrich",
+ "gender": "masculine"
+ }
+ ],
+ "תדריכי־": [
+ {
+ "word_nikkud": "תַּדְרִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5801-tadrich",
+ "gender": "masculine"
+ }
+ ],
+ "דרך": [
+ {
+ "word_nikkud": "דֶּרֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6077-derech",
+ "gender": "feminine"
+ }
+ ],
+ "דרכים": [
+ {
+ "word_nikkud": "דֶּרֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6077-derech",
+ "gender": "feminine"
+ }
+ ],
+ "דרך־": [
+ {
+ "word_nikkud": "דֶּרֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6077-derech",
+ "gender": "feminine"
+ }
+ ],
+ "דרכי־": [
+ {
+ "word_nikkud": "דֶּרֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6077-derech",
+ "gender": "feminine"
+ }
+ ],
+ "הדרכה": [
+ {
+ "word_nikkud": "הַדְרָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2876-hadracha",
+ "gender": "feminine"
+ }
+ ],
+ "הדרכות": [
+ {
+ "word_nikkud": "הַדְרָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2876-hadracha",
+ "gender": "feminine"
+ }
+ ],
+ "הדרכת־": [
+ {
+ "word_nikkud": "הַדְרָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2876-hadracha",
+ "gender": "feminine"
+ }
+ ],
+ "הדרכות־": [
+ {
+ "word_nikkud": "הַדְרָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2876-hadracha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרכה": [
+ {
+ "word_nikkud": "מִדְרָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3564-midracha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרכות": [
+ {
+ "word_nikkud": "מִדְרָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3564-midracha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרכת־": [
+ {
+ "word_nikkud": "מִדְרָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3564-midracha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרכות־": [
+ {
+ "word_nikkud": "מִדְרָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3564-midracha",
+ "gender": "feminine"
+ }
+ ],
+ "דרכון": [
+ {
+ "word_nikkud": "דַּרְכּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4745-darkon",
+ "gender": "masculine"
+ }
+ ],
+ "דרכונים": [
+ {
+ "word_nikkud": "דַּרְכּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4745-darkon",
+ "gender": "masculine"
+ }
+ ],
+ "דרכון־": [
+ {
+ "word_nikkud": "דַּרְכּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4745-darkon",
+ "gender": "masculine"
+ }
+ ],
+ "דרכוני־": [
+ {
+ "word_nikkud": "דַּרְכּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4745-darkon",
+ "gender": "masculine"
+ }
+ ],
+ "דרום": [
+ {
+ "word_nikkud": "דָּרוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3091-darom",
+ "gender": "masculine"
+ }
+ ],
+ "דרום־": [
+ {
+ "word_nikkud": "דָּרוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3091-darom",
+ "gender": "masculine"
+ }
+ ],
+ "דריסה": [
+ {
+ "word_nikkud": "דְּרִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7138-drisa",
+ "gender": "feminine"
+ }
+ ],
+ "דריסות": [
+ {
+ "word_nikkud": "דְּרִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7138-drisa",
+ "gender": "feminine"
+ }
+ ],
+ "דריסת־": [
+ {
+ "word_nikkud": "דְּרִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7138-drisa",
+ "gender": "feminine"
+ }
+ ],
+ "דריסות־": [
+ {
+ "word_nikkud": "דְּרִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7138-drisa",
+ "gender": "feminine"
+ }
+ ],
+ "דרישה": [
+ {
+ "word_nikkud": "דְּרִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2815-drisha",
+ "gender": "feminine"
+ }
+ ],
+ "דרישות": [
+ {
+ "word_nikkud": "דְּרִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2815-drisha",
+ "gender": "feminine"
+ }
+ ],
+ "דרישת־": [
+ {
+ "word_nikkud": "דְּרִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2815-drisha",
+ "gender": "feminine"
+ }
+ ],
+ "דרישות־": [
+ {
+ "word_nikkud": "דְּרִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2815-drisha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרש": [
+ {
+ "word_nikkud": "מִדְרָשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3834-midrash",
+ "gender": "masculine"
+ }
+ ],
+ "מדרשים": [
+ {
+ "word_nikkud": "מִדְרָשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3834-midrash",
+ "gender": "masculine"
+ }
+ ],
+ "מדרש־": [
+ {
+ "word_nikkud": "מִדְרָשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3834-midrash",
+ "gender": "masculine"
+ }
+ ],
+ "מדרשי־": [
+ {
+ "word_nikkud": "מִדְרָשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3834-midrash",
+ "gender": "masculine"
+ }
+ ],
+ "מדרשה": [
+ {
+ "word_nikkud": "מִדְרָשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3856-midrasha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרשות": [
+ {
+ "word_nikkud": "מִדְרָשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3856-midrasha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרשת־": [
+ {
+ "word_nikkud": "מִדְרָשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3856-midrasha",
+ "gender": "feminine"
+ }
+ ],
+ "מדרשות־": [
+ {
+ "word_nikkud": "מִדְרָשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3856-midrasha",
+ "gender": "feminine"
+ }
+ ],
+ "דשא": [
+ {
+ "word_nikkud": "דֶּשֶׁא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3247-deshe",
+ "gender": "masculine"
+ }
+ ],
+ "דשאים": [
+ {
+ "word_nikkud": "דֶּשֶׁא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3247-deshe",
+ "gender": "masculine"
+ }
+ ],
+ "דשא־": [
+ {
+ "word_nikkud": "דֶּשֶׁא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3247-deshe",
+ "gender": "masculine"
+ }
+ ],
+ "דשאי־": [
+ {
+ "word_nikkud": "דֶּשֶׁא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3247-deshe",
+ "gender": "masculine"
+ }
+ ],
+ "מדשאה": [
+ {
+ "word_nikkud": "מִדְשָׁאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6788-midshaa",
+ "gender": "feminine"
+ }
+ ],
+ "מדשאות": [
+ {
+ "word_nikkud": "מִדְשָׁאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6788-midshaa",
+ "gender": "feminine"
+ }
+ ],
+ "מדשאת־": [
+ {
+ "word_nikkud": "מִדְשָׁאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6788-midshaa",
+ "gender": "feminine"
+ }
+ ],
+ "מדשאות־": [
+ {
+ "word_nikkud": "מִדְשָׁאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6788-midshaa",
+ "gender": "feminine"
+ }
+ ],
+ "דישון": [
+ {
+ "word_nikkud": "דִּשּׁוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4295-dishun",
+ "gender": "masculine"
+ }
+ ],
+ "דישונים": [
+ {
+ "word_nikkud": "דִּשּׁוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4295-dishun",
+ "gender": "masculine"
+ }
+ ],
+ "דישון־": [
+ {
+ "word_nikkud": "דִּשּׁוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4295-dishun",
+ "gender": "masculine"
+ }
+ ],
+ "דישוני־": [
+ {
+ "word_nikkud": "דִּשּׁוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4295-dishun",
+ "gender": "masculine"
+ }
+ ],
+ "דושן": [
+ {
+ "word_nikkud": "דֹּשֶׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4297-doshen",
+ "gender": "masculine"
+ }
+ ],
+ "דושן־": [
+ {
+ "word_nikkud": "דֹּשֶׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4297-doshen",
+ "gender": "masculine"
+ }
+ ],
+ "דת": [
+ {
+ "word_nikkud": "דָּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5056-dat",
+ "gender": "feminine"
+ }
+ ],
+ "דתות": [
+ {
+ "word_nikkud": "דָּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5056-dat",
+ "gender": "feminine"
+ }
+ ],
+ "דת־": [
+ {
+ "word_nikkud": "דָּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5056-dat",
+ "gender": "feminine"
+ }
+ ],
+ "דתות־": [
+ {
+ "word_nikkud": "דָּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5056-dat",
+ "gender": "feminine"
+ }
+ ],
+ "הבהוב": [
+ {
+ "word_nikkud": "הִבְהוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9288-hivhuv",
+ "gender": "masculine"
+ }
+ ],
+ "הבהובים": [
+ {
+ "word_nikkud": "הִבְהוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9288-hivhuv",
+ "gender": "masculine"
+ }
+ ],
+ "הבהוב־": [
+ {
+ "word_nikkud": "הִבְהוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9288-hivhuv",
+ "gender": "masculine"
+ }
+ ],
+ "הבהובי־": [
+ {
+ "word_nikkud": "הִבְהוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9288-hivhuv",
+ "gender": "masculine"
+ }
+ ],
+ "הבל": [
+ {
+ "word_nikkud": "הֶבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6469-hevel",
+ "gender": "masculine"
+ }
+ ],
+ "הבלים": [
+ {
+ "word_nikkud": "הֶבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6469-hevel",
+ "gender": "masculine"
+ }
+ ],
+ "הבל־": [
+ {
+ "word_nikkud": "הֶבֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6469-hevel",
+ "gender": "masculine"
+ }
+ ],
+ "הבלי־": [
+ {
+ "word_nikkud": "הֶבֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6469-hevel",
+ "gender": "masculine"
+ }
+ ],
+ "הברה": [
+ {
+ "word_nikkud": "הֲבָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7791-havara",
+ "gender": ""
+ }
+ ],
+ "הברות": [
+ {
+ "word_nikkud": "הֲבָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7791-havara",
+ "gender": ""
+ }
+ ],
+ "הברת־": [
+ {
+ "word_nikkud": "הֲבָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7791-havara",
+ "gender": ""
+ }
+ ],
+ "הברות־": [
+ {
+ "word_nikkud": "הֲבָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7791-havara",
+ "gender": ""
+ }
+ ],
+ "היגיון": [
+ {
+ "word_nikkud": "הִגָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3577-higayon",
+ "gender": "masculine"
+ }
+ ],
+ "הגיונות": [
+ {
+ "word_nikkud": "הִגָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3577-higayon",
+ "gender": "masculine"
+ }
+ ],
+ "הגיון־": [
+ {
+ "word_nikkud": "הִגָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3577-higayon",
+ "gender": "masculine"
+ }
+ ],
+ "הגיונות־": [
+ {
+ "word_nikkud": "הִגָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3577-higayon",
+ "gender": "masculine"
+ }
+ ],
+ "הגייה": [
+ {
+ "word_nikkud": "הֲגִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8745-hagiya",
+ "gender": "feminine"
+ }
+ ],
+ "הגיות": [
+ {
+ "word_nikkud": "הֲגִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8745-hagiya",
+ "gender": "feminine"
+ }
+ ],
+ "הגיית־": [
+ {
+ "word_nikkud": "הֲגִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8745-hagiya",
+ "gender": "feminine"
+ }
+ ],
+ "הגיות־": [
+ {
+ "word_nikkud": "הֲגִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8745-hagiya",
+ "gender": "feminine"
+ }
+ ],
+ "הגה": [
+ {
+ "word_nikkud": "הֶגֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7234-hege",
+ "gender": "masculine"
+ }
+ ],
+ "הגאים": [
+ {
+ "word_nikkud": "הֶגֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7234-hege",
+ "gender": "masculine"
+ }
+ ],
+ "הגה־": [
+ {
+ "word_nikkud": "הֶגֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7234-hege",
+ "gender": "masculine"
+ }
+ ],
+ "הגאי־": [
+ {
+ "word_nikkud": "הֶגֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7234-hege",
+ "gender": "masculine"
+ }
+ ],
+ "הגירה": [
+ {
+ "word_nikkud": "הֲגִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3068-hagira",
+ "gender": "feminine"
+ }
+ ],
+ "הגירות": [
+ {
+ "word_nikkud": "הֲגִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3068-hagira",
+ "gender": "feminine"
+ }
+ ],
+ "הגירת־": [
+ {
+ "word_nikkud": "הֲגִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3068-hagira",
+ "gender": "feminine"
+ }
+ ],
+ "הגירות־": [
+ {
+ "word_nikkud": "הֲגִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3068-hagira",
+ "gender": "feminine"
+ }
+ ],
+ "מהגר": [
+ {
+ "word_nikkud": "מְהַגֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8439-mehager",
+ "gender": "masculine"
+ }
+ ],
+ "מהגרים": [
+ {
+ "word_nikkud": "מְהַגֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8439-mehager",
+ "gender": "masculine"
+ }
+ ],
+ "מהגר־": [
+ {
+ "word_nikkud": "מְהַגֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8439-mehager",
+ "gender": "masculine"
+ }
+ ],
+ "מהגרי־": [
+ {
+ "word_nikkud": "מְהַגֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8439-mehager",
+ "gender": "masculine"
+ }
+ ],
+ "הד": [
+ {
+ "word_nikkud": "הֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7713-hed",
+ "gender": "masculine"
+ }
+ ],
+ "הדים": [
+ {
+ "word_nikkud": "הֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7713-hed",
+ "gender": "masculine"
+ }
+ ],
+ "הד־": [
+ {
+ "word_nikkud": "הֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7713-hed",
+ "gender": "masculine"
+ }
+ ],
+ "הדי־": [
+ {
+ "word_nikkud": "הֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7713-hed",
+ "gender": "masculine"
+ }
+ ],
+ "הדס": [
+ {
+ "word_nikkud": "הֲדַס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4924-hadas",
+ "gender": "masculine"
+ }
+ ],
+ "הדסים": [
+ {
+ "word_nikkud": "הֲדַס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4924-hadas",
+ "gender": "masculine"
+ }
+ ],
+ "הדס־": [
+ {
+ "word_nikkud": "הֲדַס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4924-hadas",
+ "gender": "masculine"
+ }
+ ],
+ "הדסי־": [
+ {
+ "word_nikkud": "הֲדַס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4924-hadas",
+ "gender": "masculine"
+ }
+ ],
+ "הדק": [
+ {
+ "word_nikkud": "הֶדֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5804-hedek",
+ "gender": "masculine"
+ }
+ ],
+ "הדקים": [
+ {
+ "word_nikkud": "הֶדֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5804-hedek",
+ "gender": "masculine"
+ }
+ ],
+ "הדק־": [
+ {
+ "word_nikkud": "הֶדֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5804-hedek",
+ "gender": "masculine"
+ }
+ ],
+ "הדקי־": [
+ {
+ "word_nikkud": "הֶדֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5804-hedek",
+ "gender": "masculine"
+ }
+ ],
+ "מהדורה": [
+ {
+ "word_nikkud": "מַהֲדוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5354-mahadura",
+ "gender": "feminine"
+ }
+ ],
+ "מהדורות": [
+ {
+ "word_nikkud": "מַהֲדוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5354-mahadura",
+ "gender": "feminine"
+ }
+ ],
+ "מהדורת־": [
+ {
+ "word_nikkud": "מַהֲדוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5354-mahadura",
+ "gender": "feminine"
+ }
+ ],
+ "מהדורות־": [
+ {
+ "word_nikkud": "מַהֲדוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5354-mahadura",
+ "gender": "feminine"
+ }
+ ],
+ "הדר": [
+ {
+ "word_nikkud": "הָדָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8914-hadar",
+ "gender": "masculine"
+ }
+ ],
+ "הדרים": [
+ {
+ "word_nikkud": "הָדָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8914-hadar",
+ "gender": "masculine"
+ }
+ ],
+ "הדר־": [
+ {
+ "word_nikkud": "הָדָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8914-hadar",
+ "gender": "masculine"
+ }
+ ],
+ "הדרי־": [
+ {
+ "word_nikkud": "הָדָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8914-hadar",
+ "gender": "masculine"
+ }
+ ],
+ "תהודה": [
+ {
+ "word_nikkud": "תְּהוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8133-tehuda",
+ "gender": "feminine"
+ }
+ ],
+ "תהודות": [
+ {
+ "word_nikkud": "תְּהוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8133-tehuda",
+ "gender": "feminine"
+ }
+ ],
+ "תהודת־": [
+ {
+ "word_nikkud": "תְּהוּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8133-tehuda",
+ "gender": "feminine"
+ }
+ ],
+ "תהודות־": [
+ {
+ "word_nikkud": "תְּהוּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8133-tehuda",
+ "gender": "feminine"
+ }
+ ],
+ "הוד": [
+ {
+ "word_nikkud": "הוֹד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7333-hod",
+ "gender": "masculine"
+ }
+ ],
+ "הוד־": [
+ {
+ "word_nikkud": "הוֹד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7333-hod",
+ "gender": "masculine"
+ }
+ ],
+ "התהוות": [
+ {
+ "word_nikkud": "הִתְהַוּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5039-hithavut",
+ "gender": "feminine"
+ }
+ ],
+ "התהוויות": [
+ {
+ "word_nikkud": "הִתְהַוּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5039-hithavut",
+ "gender": "feminine"
+ }
+ ],
+ "התהוות־": [
+ {
+ "word_nikkud": "הִתְהַוּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5039-hithavut",
+ "gender": "feminine"
+ }
+ ],
+ "התהוויות־": [
+ {
+ "word_nikkud": "הִתְהַוּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5039-hithavut",
+ "gender": "feminine"
+ }
+ ],
+ "הווה": [
+ {
+ "word_nikkud": "הוֹוֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7763-hove",
+ "gender": "masculine"
+ }
+ ],
+ "מהומה": [
+ {
+ "word_nikkud": "מְהוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4154-mehuma",
+ "gender": "feminine"
+ }
+ ],
+ "מהומות": [
+ {
+ "word_nikkud": "מְהוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4154-mehuma",
+ "gender": "feminine"
+ }
+ ],
+ "מהומת־": [
+ {
+ "word_nikkud": "מְהוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4154-mehuma",
+ "gender": "feminine"
+ }
+ ],
+ "מהומות־": [
+ {
+ "word_nikkud": "מְהוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4154-mehuma",
+ "gender": "feminine"
+ }
+ ],
+ "הון": [
+ {
+ "word_nikkud": "הוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4514-hon",
+ "gender": ""
+ }
+ ],
+ "הון־": [
+ {
+ "word_nikkud": "הוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4514-hon",
+ "gender": ""
+ }
+ ],
+ "הזייה": [
+ {
+ "word_nikkud": "הֲזִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7978-haziya",
+ "gender": "feminine"
+ }
+ ],
+ "הזיות": [
+ {
+ "word_nikkud": "הֲזִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7978-haziya",
+ "gender": "feminine"
+ }
+ ],
+ "הזיית־": [
+ {
+ "word_nikkud": "הֲזִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7978-haziya",
+ "gender": "feminine"
+ }
+ ],
+ "הזיות־": [
+ {
+ "word_nikkud": "הֲזִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7978-haziya",
+ "gender": "feminine"
+ }
+ ],
+ "היגיינה": [
+ {
+ "word_nikkud": "הִיגְיֶנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8628-higyena",
+ "gender": "feminine"
+ }
+ ],
+ "היגיינת־": [
+ {
+ "word_nikkud": "הִיגְיֶנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8628-higyena",
+ "gender": "feminine"
+ }
+ ],
+ "היות": [
+ {
+ "word_nikkud": "הֱיוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7443-heyot",
+ "gender": ""
+ }
+ ],
+ "היות־": [
+ {
+ "word_nikkud": "הֱיוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7443-heyot",
+ "gender": ""
+ }
+ ],
+ "היכל": [
+ {
+ "word_nikkud": "הֵיכָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5737-hechal",
+ "gender": "masculine"
+ }
+ ],
+ "היכלות": [
+ {
+ "word_nikkud": "הֵיכָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5737-hechal",
+ "gender": "masculine"
+ }
+ ],
+ "היכל־": [
+ {
+ "word_nikkud": "הֵיכָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5737-hechal",
+ "gender": "masculine"
+ }
+ ],
+ "היכלות־": [
+ {
+ "word_nikkud": "הֵיכָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5737-hechal",
+ "gender": "masculine"
+ }
+ ],
+ "היסטוריה": [
+ {
+ "word_nikkud": "הִיסְטוֹרְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5221-historya",
+ "gender": "feminine"
+ }
+ ],
+ "היסטוריית־": [
+ {
+ "word_nikkud": "הִיסְטוֹרְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5221-historya",
+ "gender": "feminine"
+ }
+ ],
+ "הל": [
+ {
+ "word_nikkud": "הֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7720-hel",
+ "gender": "masculine"
+ }
+ ],
+ "הל־": [
+ {
+ "word_nikkud": "הֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7720-hel",
+ "gender": "masculine"
+ }
+ ],
+ "מהלך": [
+ {
+ "word_nikkud": "מַהֲלָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3159-mahalach",
+ "gender": "masculine"
+ }
+ ],
+ "מהלכים": [
+ {
+ "word_nikkud": "מַהֲלָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3159-mahalach",
+ "gender": "masculine"
+ }
+ ],
+ "מהלך־": [
+ {
+ "word_nikkud": "מַהֲלָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3159-mahalach",
+ "gender": "masculine"
+ }
+ ],
+ "מהלכי־": [
+ {
+ "word_nikkud": "מַהֲלָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3159-mahalach",
+ "gender": "masculine"
+ }
+ ],
+ "הליך": [
+ {
+ "word_nikkud": "הֲלִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3939-halich",
+ "gender": "masculine"
+ }
+ ],
+ "הליכים": [
+ {
+ "word_nikkud": "הֲלִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3939-halich",
+ "gender": "masculine"
+ }
+ ],
+ "הליך־": [
+ {
+ "word_nikkud": "הֲלִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3939-halich",
+ "gender": "masculine"
+ }
+ ],
+ "הליכי־": [
+ {
+ "word_nikkud": "הֲלִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3939-halich",
+ "gender": "masculine"
+ }
+ ],
+ "הליכה": [
+ {
+ "word_nikkud": "הֲלִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4209-halicha",
+ "gender": "feminine"
+ }
+ ],
+ "הליכות": [
+ {
+ "word_nikkud": "הֲלִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4209-halicha",
+ "gender": "feminine"
+ }
+ ],
+ "הליכת־": [
+ {
+ "word_nikkud": "הֲלִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4209-halicha",
+ "gender": "feminine"
+ }
+ ],
+ "הליכות־": [
+ {
+ "word_nikkud": "הֲלִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4209-halicha",
+ "gender": "feminine"
+ }
+ ],
+ "הלכה": [
+ {
+ "word_nikkud": "הֲלָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8232-halacha",
+ "gender": "feminine"
+ }
+ ],
+ "הלכות": [
+ {
+ "word_nikkud": "הֲלָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8232-halacha",
+ "gender": "feminine"
+ }
+ ],
+ "הלכת־": [
+ {
+ "word_nikkud": "הֲלָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8232-halacha",
+ "gender": "feminine"
+ }
+ ],
+ "הלכות־": [
+ {
+ "word_nikkud": "הֲלָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8232-halacha",
+ "gender": "feminine"
+ }
+ ],
+ "תהליך": [
+ {
+ "word_nikkud": "תַּהֲלִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6498-tahalich",
+ "gender": "masculine"
+ }
+ ],
+ "תהליכים": [
+ {
+ "word_nikkud": "תַּהֲלִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6498-tahalich",
+ "gender": "masculine"
+ }
+ ],
+ "תהליך־": [
+ {
+ "word_nikkud": "תַּהֲלִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6498-tahalich",
+ "gender": "masculine"
+ }
+ ],
+ "תהליכי־": [
+ {
+ "word_nikkud": "תַּהֲלִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6498-tahalich",
+ "gender": "masculine"
+ }
+ ],
+ "הילוך": [
+ {
+ "word_nikkud": "הִלּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6921-hiluch",
+ "gender": "masculine"
+ }
+ ],
+ "הילוכים": [
+ {
+ "word_nikkud": "הִלּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6921-hiluch",
+ "gender": "masculine"
+ }
+ ],
+ "הילוך־": [
+ {
+ "word_nikkud": "הִלּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6921-hiluch",
+ "gender": "masculine"
+ }
+ ],
+ "הילוכי־": [
+ {
+ "word_nikkud": "הִלּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6921-hiluch",
+ "gender": "masculine"
+ }
+ ],
+ "לכת": [
+ {
+ "word_nikkud": "לֶכֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6947-lechet",
+ "gender": "feminine"
+ }
+ ],
+ "לכת־": [
+ {
+ "word_nikkud": "לֶכֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6947-lechet",
+ "gender": "feminine"
+ }
+ ],
+ "תהלוכה": [
+ {
+ "word_nikkud": "תַּהֲלוּכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7317-tahalucha",
+ "gender": "feminine"
+ }
+ ],
+ "תהלוכות": [
+ {
+ "word_nikkud": "תַּהֲלוּכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7317-tahalucha",
+ "gender": "feminine"
+ }
+ ],
+ "תהלוכת־": [
+ {
+ "word_nikkud": "תַּהֲלוּכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7317-tahalucha",
+ "gender": "feminine"
+ }
+ ],
+ "תהלוכות־": [
+ {
+ "word_nikkud": "תַּהֲלוּכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7317-tahalucha",
+ "gender": "feminine"
+ }
+ ],
+ "התהוללות": [
+ {
+ "word_nikkud": "הִתְהוֹלְלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8327-hitholelut",
+ "gender": "feminine"
+ }
+ ],
+ "התהוללויות": [
+ {
+ "word_nikkud": "הִתְהוֹלְלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8327-hitholelut",
+ "gender": "feminine"
+ }
+ ],
+ "התהוללות־": [
+ {
+ "word_nikkud": "הִתְהוֹלְלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8327-hitholelut",
+ "gender": "feminine"
+ }
+ ],
+ "התהוללויות־": [
+ {
+ "word_nikkud": "הִתְהוֹלְלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8327-hitholelut",
+ "gender": "feminine"
+ }
+ ],
+ "הוללות": [
+ {
+ "word_nikkud": "הוֹלֵלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7354-holelut",
+ "gender": "feminine"
+ }
+ ],
+ "הוללויות": [
+ {
+ "word_nikkud": "הוֹלֵלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7354-holelut",
+ "gender": "feminine"
+ }
+ ],
+ "הוללות־": [
+ {
+ "word_nikkud": "הוֹלֵלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7354-holelut",
+ "gender": "feminine"
+ }
+ ],
+ "הוללויות־": [
+ {
+ "word_nikkud": "הוֹלֵלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7354-holelut",
+ "gender": "feminine"
+ }
+ ],
+ "הילה": [
+ {
+ "word_nikkud": "הִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7241-hila",
+ "gender": "feminine"
+ }
+ ],
+ "הילות": [
+ {
+ "word_nikkud": "הִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7241-hila",
+ "gender": "feminine"
+ }
+ ],
+ "הילת־": [
+ {
+ "word_nikkud": "הִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7241-hila",
+ "gender": "feminine"
+ }
+ ],
+ "הילות־": [
+ {
+ "word_nikkud": "הִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7241-hila",
+ "gender": "feminine"
+ }
+ ],
+ "תהילה": [
+ {
+ "word_nikkud": "תְּהִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4325-tehila",
+ "gender": "feminine"
+ }
+ ],
+ "תהילות": [
+ {
+ "word_nikkud": "תְּהִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4325-tehila",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תְּהִלּוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4324-tehilot",
+ "gender": ""
+ }
+ ],
+ "תהילת־": [
+ {
+ "word_nikkud": "תְּהִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4325-tehila",
+ "gender": "feminine"
+ }
+ ],
+ "תהילות־": [
+ {
+ "word_nikkud": "תְּהִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4325-tehila",
+ "gender": "feminine"
+ }
+ ],
+ "תהילים": [
+ {
+ "word_nikkud": "תְּהִלִּים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7807-tehilim",
+ "gender": ""
+ }
+ ],
+ "הלם": [
+ {
+ "word_nikkud": "הֶלֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7335-helem",
+ "gender": "masculine"
+ }
+ ],
+ "הלם־": [
+ {
+ "word_nikkud": "הֶלֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7335-helem",
+ "gender": "masculine"
+ }
+ ],
+ "המון": [
+ {
+ "word_nikkud": "הָמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7523-hamon",
+ "gender": "masculine"
+ }
+ ],
+ "המונים": [
+ {
+ "word_nikkud": "הָמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7523-hamon",
+ "gender": "masculine"
+ }
+ ],
+ "המון־": [
+ {
+ "word_nikkud": "הָמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7523-hamon",
+ "gender": "masculine"
+ }
+ ],
+ "המוני־": [
+ {
+ "word_nikkud": "הָמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7523-hamon",
+ "gender": "masculine"
+ }
+ ],
+ "המולה": [
+ {
+ "word_nikkud": "הֲמֻלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8322-hamula",
+ "gender": "feminine"
+ }
+ ],
+ "המולות": [
+ {
+ "word_nikkud": "הֲמֻלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8322-hamula",
+ "gender": "feminine"
+ }
+ ],
+ "המולת־": [
+ {
+ "word_nikkud": "הֲמֻלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8322-hamula",
+ "gender": "feminine"
+ }
+ ],
+ "המולות־": [
+ {
+ "word_nikkud": "הֲמֻלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8322-hamula",
+ "gender": "feminine"
+ }
+ ],
+ "הימור": [
+ {
+ "word_nikkud": "הִמּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3864-himur",
+ "gender": "masculine"
+ }
+ ],
+ "הימורים": [
+ {
+ "word_nikkud": "הִמּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3864-himur",
+ "gender": "masculine"
+ }
+ ],
+ "הימור־": [
+ {
+ "word_nikkud": "הִמּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3864-himur",
+ "gender": "masculine"
+ }
+ ],
+ "הימורי־": [
+ {
+ "word_nikkud": "הִמּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3864-himur",
+ "gender": "masculine"
+ }
+ ],
+ "הנאה": [
+ {
+ "word_nikkud": "הֲנָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6455-hanaa",
+ "gender": "feminine"
+ }
+ ],
+ "הנאות": [
+ {
+ "word_nikkud": "הֲנָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6455-hanaa",
+ "gender": "feminine"
+ }
+ ],
+ "הנאת־": [
+ {
+ "word_nikkud": "הֲנָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6455-hanaa",
+ "gender": "feminine"
+ }
+ ],
+ "הנאות־": [
+ {
+ "word_nikkud": "הֲנָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6455-hanaa",
+ "gender": "feminine"
+ }
+ ],
+ "מהנדס": [
+ {
+ "word_nikkud": "מְהַנְדֵּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4092-mehandes",
+ "gender": "masculine"
+ }
+ ],
+ "מהנדסים": [
+ {
+ "word_nikkud": "מְהַנְדֵּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4092-mehandes",
+ "gender": "masculine"
+ }
+ ],
+ "מהנדס־": [
+ {
+ "word_nikkud": "מְהַנְדֵּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4092-mehandes",
+ "gender": "masculine"
+ }
+ ],
+ "מהנדסי־": [
+ {
+ "word_nikkud": "מְהַנְדֵּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4092-mehandes",
+ "gender": "masculine"
+ }
+ ],
+ "הנדסה": [
+ {
+ "word_nikkud": "הַנְדָּסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4599-handasa",
+ "gender": ""
+ }
+ ],
+ "הנדסת־": [
+ {
+ "word_nikkud": "הַנְדָּסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4599-handasa",
+ "gender": ""
+ }
+ ],
+ "תהפוכה": [
+ {
+ "word_nikkud": "תַּהֲפוּכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7471-tahafucha",
+ "gender": "feminine"
+ }
+ ],
+ "תהפוכות": [
+ {
+ "word_nikkud": "תַּהֲפוּכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7471-tahafucha",
+ "gender": "feminine"
+ }
+ ],
+ "תהפוכת־": [
+ {
+ "word_nikkud": "תַּהֲפוּכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7471-tahafucha",
+ "gender": "feminine"
+ }
+ ],
+ "תהפוכות־": [
+ {
+ "word_nikkud": "תַּהֲפוּכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7471-tahafucha",
+ "gender": "feminine"
+ }
+ ],
+ "הפיכה": [
+ {
+ "word_nikkud": "הֲפִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8733-haficha",
+ "gender": "feminine"
+ }
+ ],
+ "הפיכות": [
+ {
+ "word_nikkud": "הֲפִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8733-haficha",
+ "gender": "feminine"
+ }
+ ],
+ "הפיכת־": [
+ {
+ "word_nikkud": "הֲפִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8733-haficha",
+ "gender": "feminine"
+ }
+ ],
+ "הפיכות־": [
+ {
+ "word_nikkud": "הֲפִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8733-haficha",
+ "gender": "feminine"
+ }
+ ],
+ "היפוך": [
+ {
+ "word_nikkud": "הִפּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4813-hipuch",
+ "gender": "masculine"
+ }
+ ],
+ "היפוכים": [
+ {
+ "word_nikkud": "הִפּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4813-hipuch",
+ "gender": "masculine"
+ }
+ ],
+ "היפוך־": [
+ {
+ "word_nikkud": "הִפּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4813-hipuch",
+ "gender": "masculine"
+ }
+ ],
+ "היפוכי־": [
+ {
+ "word_nikkud": "הִפּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4813-hipuch",
+ "gender": "masculine"
+ }
+ ],
+ "מהפכה": [
+ {
+ "word_nikkud": "מַהְפֵּכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6114-mahpecha",
+ "gender": "feminine"
+ }
+ ],
+ "מהפכות": [
+ {
+ "word_nikkud": "מַהְפֵּכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6114-mahpecha",
+ "gender": "feminine"
+ }
+ ],
+ "מהפכת־": [
+ {
+ "word_nikkud": "מַהְפֵּכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6114-mahpecha",
+ "gender": "feminine"
+ }
+ ],
+ "מהפכות־": [
+ {
+ "word_nikkud": "מַהְפֵּכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6114-mahpecha",
+ "gender": "feminine"
+ }
+ ],
+ "התהפכות": [
+ {
+ "word_nikkud": "הִתְהַפְּכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6144-hithapchut",
+ "gender": "feminine"
+ }
+ ],
+ "התהפכויות": [
+ {
+ "word_nikkud": "הִתְהַפְּכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6144-hithapchut",
+ "gender": "feminine"
+ }
+ ],
+ "התהפכות־": [
+ {
+ "word_nikkud": "הִתְהַפְּכוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6144-hithapchut",
+ "gender": "feminine"
+ }
+ ],
+ "התהפכויות־": [
+ {
+ "word_nikkud": "הִתְהַפְּכוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6144-hithapchut",
+ "gender": "feminine"
+ }
+ ],
+ "הפך": [
+ {
+ "word_nikkud": "הֶפֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5174-hefech",
+ "gender": "masculine"
+ }
+ ],
+ "היפך": [
+ {
+ "word_nikkud": "הֶפֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5174-hefech",
+ "gender": "masculine"
+ }
+ ],
+ "הפכים": [
+ {
+ "word_nikkud": "הֶפֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5174-hefech",
+ "gender": "masculine"
+ }
+ ],
+ "הפך־": [
+ {
+ "word_nikkud": "הֶפֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5174-hefech",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "הֶפֶךְ",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5174-hefech",
+ "gender": "masculine"
+ }
+ ],
+ "הפכי־": [
+ {
+ "word_nikkud": "הֶפֶךְ",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5174-hefech",
+ "gender": "masculine"
+ }
+ ],
+ "הפקר": [
+ {
+ "word_nikkud": "הֶפְקֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7590-hefker",
+ "gender": ""
+ }
+ ],
+ "הפקרים": [
+ {
+ "word_nikkud": "הֶפְקֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7590-hefker",
+ "gender": ""
+ }
+ ],
+ "הפקר־": [
+ {
+ "word_nikkud": "הֶפְקֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7590-hefker",
+ "gender": ""
+ }
+ ],
+ "הפקרי־": [
+ {
+ "word_nikkud": "הֶפְקֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7590-hefker",
+ "gender": ""
+ }
+ ],
+ "הריגה": [
+ {
+ "word_nikkud": "הֲרִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8767-hariga",
+ "gender": "feminine"
+ }
+ ],
+ "הריגות": [
+ {
+ "word_nikkud": "הֲרִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8767-hariga",
+ "gender": "feminine"
+ }
+ ],
+ "הריגת־": [
+ {
+ "word_nikkud": "הֲרִיגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8767-hariga",
+ "gender": "feminine"
+ }
+ ],
+ "הריגות־": [
+ {
+ "word_nikkud": "הֲרִיגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8767-hariga",
+ "gender": "feminine"
+ }
+ ],
+ "הרהור": [
+ {
+ "word_nikkud": "הִרְהוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5073-hirhur",
+ "gender": "masculine"
+ }
+ ],
+ "הרהורים": [
+ {
+ "word_nikkud": "הִרְהוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5073-hirhur",
+ "gender": "masculine"
+ }
+ ],
+ "הרהור־": [
+ {
+ "word_nikkud": "הִרְהוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5073-hirhur",
+ "gender": "masculine"
+ }
+ ],
+ "הרהורי־": [
+ {
+ "word_nikkud": "הִרְהוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5073-hirhur",
+ "gender": "masculine"
+ }
+ ],
+ "היריון": [
+ {
+ "word_nikkud": "הֵרָיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3596-herayon",
+ "gender": "masculine"
+ }
+ ],
+ "הריונות": [
+ {
+ "word_nikkud": "הֵרָיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3596-herayon",
+ "gender": "masculine"
+ }
+ ],
+ "הריון־": [
+ {
+ "word_nikkud": "הֵרָיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3596-herayon",
+ "gender": "masculine"
+ }
+ ],
+ "הריונות־": [
+ {
+ "word_nikkud": "הֵרָיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3596-herayon",
+ "gender": "masculine"
+ }
+ ],
+ "הורה": [
+ {
+ "word_nikkud": "הוֹרֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5365-hore",
+ "gender": "masculine"
+ }
+ ],
+ "הורים": [
+ {
+ "word_nikkud": "הוֹרֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5365-hore",
+ "gender": "masculine"
+ }
+ ],
+ "הורה־": [
+ {
+ "word_nikkud": "הוֹרֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5365-hore",
+ "gender": "masculine"
+ }
+ ],
+ "הורי־": [
+ {
+ "word_nikkud": "הוֹרֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5365-hore",
+ "gender": "masculine"
+ }
+ ],
+ "הרס": [
+ {
+ "word_nikkud": "הֶרֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "1886-heres",
+ "gender": "masculine"
+ }
+ ],
+ "הרס־": [
+ {
+ "word_nikkud": "הֶרֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "1886-heres",
+ "gender": "masculine"
+ }
+ ],
+ "הריסה": [
+ {
+ "word_nikkud": "הֲרִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7405-harisa",
+ "gender": "feminine"
+ }
+ ],
+ "הריסות": [
+ {
+ "word_nikkud": "הֲרִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7405-harisa",
+ "gender": "feminine"
+ }
+ ],
+ "הריסת־": [
+ {
+ "word_nikkud": "הֲרִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7405-harisa",
+ "gender": "feminine"
+ }
+ ],
+ "הריסות־": [
+ {
+ "word_nikkud": "הֲרִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7405-harisa",
+ "gender": "feminine"
+ }
+ ],
+ "הרף": [
+ {
+ "word_nikkud": "הֶרֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6905-heref",
+ "gender": ""
+ }
+ ],
+ "הרפתקה": [
+ {
+ "word_nikkud": "הַרְפַּתְקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6608-harpatka",
+ "gender": "feminine"
+ }
+ ],
+ "הרפתקאות": [
+ {
+ "word_nikkud": "הַרְפַּתְקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6608-harpatka",
+ "gender": "feminine"
+ }
+ ],
+ "הרפתקת־": [
+ {
+ "word_nikkud": "הַרְפַּתְקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6608-harpatka",
+ "gender": "feminine"
+ }
+ ],
+ "הרפתקות־": [
+ {
+ "word_nikkud": "הַרְפַּתְקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6608-harpatka",
+ "gender": "feminine"
+ }
+ ],
+ "הר": [
+ {
+ "word_nikkud": "הָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4163-har",
+ "gender": "masculine"
+ }
+ ],
+ "הרים": [
+ {
+ "word_nikkud": "הָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4163-har",
+ "gender": "masculine"
+ }
+ ],
+ "הררים": [
+ {
+ "word_nikkud": "הָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4163-har",
+ "gender": "masculine"
+ }
+ ],
+ "הר־": [
+ {
+ "word_nikkud": "הָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4163-har",
+ "gender": "masculine"
+ }
+ ],
+ "הרי־": [
+ {
+ "word_nikkud": "הָר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4163-har",
+ "gender": "masculine"
+ }
+ ],
+ "הררי־": [
+ {
+ "word_nikkud": "הָר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4163-har",
+ "gender": "masculine"
+ }
+ ],
+ "ודאות": [
+ {
+ "word_nikkud": "וַדָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8569-vadaut",
+ "gender": "feminine"
+ }
+ ],
+ "ודאות־": [
+ {
+ "word_nikkud": "וַדָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8569-vadaut",
+ "gender": "feminine"
+ }
+ ],
+ "וידוי": [
+ {
+ "word_nikkud": "וִדּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6824-viduy",
+ "gender": "masculine"
+ }
+ ],
+ "וידויים": [
+ {
+ "word_nikkud": "וִדּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6824-viduy",
+ "gender": "masculine"
+ }
+ ],
+ "וידוי־": [
+ {
+ "word_nikkud": "וִדּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6824-viduy",
+ "gender": "masculine"
+ }
+ ],
+ "וידויי־": [
+ {
+ "word_nikkud": "וִדּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6824-viduy",
+ "gender": "masculine"
+ }
+ ],
+ "וו": [
+ {
+ "word_nikkud": "וָו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7532-vav",
+ "gender": "masculine"
+ }
+ ],
+ "ווים": [
+ {
+ "word_nikkud": "וָו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7532-vav",
+ "gender": "masculine"
+ }
+ ],
+ "וו־": [
+ {
+ "word_nikkud": "וָו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7532-vav",
+ "gender": "masculine"
+ }
+ ],
+ "ווי־": [
+ {
+ "word_nikkud": "וָו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7532-vav",
+ "gender": "masculine"
+ }
+ ],
+ "ויזה": [
+ {
+ "word_nikkud": "וִיזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9264-viza",
+ "gender": "feminine"
+ }
+ ],
+ "ויזות": [
+ {
+ "word_nikkud": "וִיזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9264-viza",
+ "gender": "feminine"
+ }
+ ],
+ "ויזת־": [
+ {
+ "word_nikkud": "וִיזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9264-viza",
+ "gender": "feminine"
+ }
+ ],
+ "ויזות־": [
+ {
+ "word_nikkud": "וִיזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9264-viza",
+ "gender": "feminine"
+ }
+ ],
+ "ויטמין": [
+ {
+ "word_nikkud": "וִיטָמִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9119-vitamin",
+ "gender": "masculine"
+ }
+ ],
+ "ויטמינים": [
+ {
+ "word_nikkud": "וִיטָמִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9119-vitamin",
+ "gender": "masculine"
+ }
+ ],
+ "ויטמין־": [
+ {
+ "word_nikkud": "וִיטָמִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9119-vitamin",
+ "gender": "masculine"
+ }
+ ],
+ "ויטמיני־": [
+ {
+ "word_nikkud": "וִיטָמִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9119-vitamin",
+ "gender": "masculine"
+ }
+ ],
+ "וילון": [
+ {
+ "word_nikkud": "וִילוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6528-vilon",
+ "gender": "masculine"
+ }
+ ],
+ "וילונות": [
+ {
+ "word_nikkud": "וִילוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6528-vilon",
+ "gender": "masculine"
+ }
+ ],
+ "וילון־": [
+ {
+ "word_nikkud": "וִילוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6528-vilon",
+ "gender": "masculine"
+ }
+ ],
+ "וילונות־": [
+ {
+ "word_nikkud": "וִילוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6528-vilon",
+ "gender": "masculine"
+ }
+ ],
+ "ויכוח": [
+ {
+ "word_nikkud": "וִכּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3158-vikuach",
+ "gender": "masculine"
+ }
+ ],
+ "ויכוחים": [
+ {
+ "word_nikkud": "וִכּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3158-vikuach",
+ "gender": "masculine"
+ }
+ ],
+ "ויכוח־": [
+ {
+ "word_nikkud": "וִכּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3158-vikuach",
+ "gender": "masculine"
+ }
+ ],
+ "ויכוחי־": [
+ {
+ "word_nikkud": "וִכּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3158-vikuach",
+ "gender": "masculine"
+ }
+ ],
+ "תוכחה": [
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ }
+ ],
+ "תוכחות": [
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ }
+ ],
+ "תוכחת־": [
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ }
+ ],
+ "תוכחות־": [
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תּוֹכֵחָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6394-tochecha",
+ "gender": "feminine"
+ }
+ ],
+ "מוליך": [
+ {
+ "word_nikkud": "מוֹלִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4564-molich",
+ "gender": "masculine"
+ }
+ ],
+ "מוליכים": [
+ {
+ "word_nikkud": "מוֹלִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4564-molich",
+ "gender": "masculine"
+ }
+ ],
+ "מוליך־": [
+ {
+ "word_nikkud": "מוֹלִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4564-molich",
+ "gender": "masculine"
+ }
+ ],
+ "מוליכי־": [
+ {
+ "word_nikkud": "מוֹלִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4564-molich",
+ "gender": "masculine"
+ }
+ ],
+ "ויסות": [
+ {
+ "word_nikkud": "וִסּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7850-visut",
+ "gender": "masculine"
+ }
+ ],
+ "ויסותים": [
+ {
+ "word_nikkud": "וִסּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7850-visut",
+ "gender": "masculine"
+ }
+ ],
+ "ויסות־": [
+ {
+ "word_nikkud": "וִסּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7850-visut",
+ "gender": "masculine"
+ }
+ ],
+ "ויסותי־": [
+ {
+ "word_nikkud": "וִסּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7850-visut",
+ "gender": "masculine"
+ }
+ ],
+ "וסת": [
+ {
+ "word_nikkud": "וֶסֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7012-veset",
+ "gender": "feminine"
+ }
+ ],
+ "וסתות": [
+ {
+ "word_nikkud": "וֶסֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7012-veset",
+ "gender": "feminine"
+ }
+ ],
+ "וסת־": [
+ {
+ "word_nikkud": "וֶסֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7012-veset",
+ "gender": "feminine"
+ }
+ ],
+ "וסתות־": [
+ {
+ "word_nikkud": "וֶסֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7012-veset",
+ "gender": "feminine"
+ }
+ ],
+ "ועדה": [
+ {
+ "word_nikkud": "וַעֲדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7663-vaada",
+ "gender": "feminine"
+ }
+ ],
+ "ועדות": [
+ {
+ "word_nikkud": "וַעֲדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7663-vaada",
+ "gender": "feminine"
+ }
+ ],
+ "ועדת־": [
+ {
+ "word_nikkud": "וַעֲדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7663-vaada",
+ "gender": "feminine"
+ }
+ ],
+ "ועדות־": [
+ {
+ "word_nikkud": "וַעֲדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7663-vaada",
+ "gender": "feminine"
+ }
+ ],
+ "ועד": [
+ {
+ "word_nikkud": "וַעַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6118-vaad",
+ "gender": "masculine"
+ }
+ ],
+ "ועדים": [
+ {
+ "word_nikkud": "וַעַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6118-vaad",
+ "gender": "masculine"
+ }
+ ],
+ "ועד־": [
+ {
+ "word_nikkud": "וַעַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6118-vaad",
+ "gender": "masculine"
+ }
+ ],
+ "ועדי־": [
+ {
+ "word_nikkud": "וַעַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6118-vaad",
+ "gender": "masculine"
+ }
+ ],
+ "ועידה": [
+ {
+ "word_nikkud": "וְעִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6117-veida",
+ "gender": "feminine"
+ }
+ ],
+ "ועידות": [
+ {
+ "word_nikkud": "וְעִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6117-veida",
+ "gender": "feminine"
+ }
+ ],
+ "ועידת־": [
+ {
+ "word_nikkud": "וְעִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6117-veida",
+ "gender": "feminine"
+ }
+ ],
+ "ועידות־": [
+ {
+ "word_nikkud": "וְעִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6117-veida",
+ "gender": "feminine"
+ }
+ ],
+ "ורד": [
+ {
+ "word_nikkud": "וֶרֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6096-vered",
+ "gender": "masculine"
+ }
+ ],
+ "ורדים": [
+ {
+ "word_nikkud": "וֶרֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6096-vered",
+ "gender": "masculine"
+ }
+ ],
+ "ורד־": [
+ {
+ "word_nikkud": "וֶרֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6096-vered",
+ "gender": "masculine"
+ }
+ ],
+ "ורדי־": [
+ {
+ "word_nikkud": "וֶרֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6096-vered",
+ "gender": "masculine"
+ }
+ ],
+ "וריד": [
+ {
+ "word_nikkud": "וְרִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3602-vrid",
+ "gender": "masculine"
+ }
+ ],
+ "ורידים": [
+ {
+ "word_nikkud": "וְרִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3602-vrid",
+ "gender": "masculine"
+ }
+ ],
+ "וריד־": [
+ {
+ "word_nikkud": "וְרִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3602-vrid",
+ "gender": "masculine"
+ }
+ ],
+ "ורידי־": [
+ {
+ "word_nikkud": "וְרִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3602-vrid",
+ "gender": "masculine"
+ }
+ ],
+ "ותק": [
+ {
+ "word_nikkud": "וֶתֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5761-vetek",
+ "gender": "masculine"
+ }
+ ],
+ "ותק־": [
+ {
+ "word_nikkud": "וֶתֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5761-vetek",
+ "gender": "masculine"
+ }
+ ],
+ "ויתור": [
+ {
+ "word_nikkud": "וִתּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2959-vitur",
+ "gender": "masculine"
+ }
+ ],
+ "ויתורים": [
+ {
+ "word_nikkud": "וִתּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2959-vitur",
+ "gender": "masculine"
+ }
+ ],
+ "ויתור־": [
+ {
+ "word_nikkud": "וִתּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2959-vitur",
+ "gender": "masculine"
+ }
+ ],
+ "ויתורי־": [
+ {
+ "word_nikkud": "וִתּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2959-vitur",
+ "gender": "masculine"
+ }
+ ],
+ "זאב": [
+ {
+ "word_nikkud": "זְאֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3733-zeev",
+ "gender": "masculine"
+ }
+ ],
+ "זאבים": [
+ {
+ "word_nikkud": "זְאֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3733-zeev",
+ "gender": "masculine"
+ }
+ ],
+ "זאב־": [
+ {
+ "word_nikkud": "זְאֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3733-zeev",
+ "gender": "masculine"
+ }
+ ],
+ "זאבי־": [
+ {
+ "word_nikkud": "זְאֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3733-zeev",
+ "gender": "masculine"
+ }
+ ],
+ "זבוב": [
+ {
+ "word_nikkud": "זְבוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5484-zvuv",
+ "gender": "masculine"
+ }
+ ],
+ "זבובים": [
+ {
+ "word_nikkud": "זְבוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5484-zvuv",
+ "gender": "masculine"
+ }
+ ],
+ "זבוב־": [
+ {
+ "word_nikkud": "זְבוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5484-zvuv",
+ "gender": "masculine"
+ }
+ ],
+ "זבובי־": [
+ {
+ "word_nikkud": "זְבוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5484-zvuv",
+ "gender": "masculine"
+ }
+ ],
+ "זבח": [
+ {
+ "word_nikkud": "זֶבַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2948-zevach",
+ "gender": "masculine"
+ }
+ ],
+ "זבחים": [
+ {
+ "word_nikkud": "זֶבַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2948-zevach",
+ "gender": "masculine"
+ }
+ ],
+ "זבח־": [
+ {
+ "word_nikkud": "זֶבַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2948-zevach",
+ "gender": "masculine"
+ }
+ ],
+ "זבחי־": [
+ {
+ "word_nikkud": "זֶבַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2948-zevach",
+ "gender": "masculine"
+ }
+ ],
+ "מזבח": [
+ {
+ "word_nikkud": "מִזְבֵּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2949-mizbeach",
+ "gender": "masculine"
+ }
+ ],
+ "מזבחות": [
+ {
+ "word_nikkud": "מִזְבֵּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2949-mizbeach",
+ "gender": "masculine"
+ }
+ ],
+ "מזבח־": [
+ {
+ "word_nikkud": "מִזְבֵּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2949-mizbeach",
+ "gender": "masculine"
+ }
+ ],
+ "מזבחות־": [
+ {
+ "word_nikkud": "מִזְבֵּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2949-mizbeach",
+ "gender": "masculine"
+ }
+ ],
+ "זבל": [
+ {
+ "word_nikkud": "זֶבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3112-zevel",
+ "gender": "masculine"
+ }
+ ],
+ "זבלים": [
+ {
+ "word_nikkud": "זֶבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3112-zevel",
+ "gender": "masculine"
+ }
+ ],
+ "זבל־": [
+ {
+ "word_nikkud": "זֶבֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3112-zevel",
+ "gender": "masculine"
+ }
+ ],
+ "זבלי־": [
+ {
+ "word_nikkud": "זֶבֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3112-zevel",
+ "gender": "masculine"
+ }
+ ],
+ "מזבלה": [
+ {
+ "word_nikkud": "מִזְבָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4732-mizbala",
+ "gender": "feminine"
+ }
+ ],
+ "מזבלות": [
+ {
+ "word_nikkud": "מִזְבָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4732-mizbala",
+ "gender": "feminine"
+ }
+ ],
+ "מזבלת־": [
+ {
+ "word_nikkud": "מִזְבָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4732-mizbala",
+ "gender": "feminine"
+ }
+ ],
+ "מזבלות־": [
+ {
+ "word_nikkud": "מִזְבָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4732-mizbala",
+ "gender": "feminine"
+ }
+ ],
+ "זברה": [
+ {
+ "word_nikkud": "זֶבְּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8965-zebra",
+ "gender": "feminine"
+ }
+ ],
+ "זברות": [
+ {
+ "word_nikkud": "זֶבְּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8965-zebra",
+ "gender": "feminine"
+ }
+ ],
+ "זברת־": [
+ {
+ "word_nikkud": "זֶבְּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8965-zebra",
+ "gender": "feminine"
+ }
+ ],
+ "זברות־": [
+ {
+ "word_nikkud": "זֶבְּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8965-zebra",
+ "gender": "feminine"
+ }
+ ],
+ "זיגוג": [
+ {
+ "word_nikkud": "זִגּוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6544-zigug",
+ "gender": "masculine"
+ }
+ ],
+ "זיגוגים": [
+ {
+ "word_nikkud": "זִגּוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6544-zigug",
+ "gender": "masculine"
+ }
+ ],
+ "זיגוג־": [
+ {
+ "word_nikkud": "זִגּוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6544-zigug",
+ "gender": "masculine"
+ }
+ ],
+ "זיגוגי־": [
+ {
+ "word_nikkud": "זִגּוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6544-zigug",
+ "gender": "masculine"
+ }
+ ],
+ "זגג": [
+ {
+ "word_nikkud": "זַגָּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3346-zagag",
+ "gender": "masculine"
+ }
+ ],
+ "זגגים": [
+ {
+ "word_nikkud": "זַגָּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3346-zagag",
+ "gender": "masculine"
+ }
+ ],
+ "זגג־": [
+ {
+ "word_nikkud": "זַגָּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3346-zagag",
+ "gender": "masculine"
+ }
+ ],
+ "זגגי־": [
+ {
+ "word_nikkud": "זַגָּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3346-zagag",
+ "gender": "masculine"
+ }
+ ],
+ "זג": [
+ {
+ "word_nikkud": "זַג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7576-zag",
+ "gender": "masculine"
+ }
+ ],
+ "זגים": [
+ {
+ "word_nikkud": "זַג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7576-zag",
+ "gender": "masculine"
+ }
+ ],
+ "זג־": [
+ {
+ "word_nikkud": "זַג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7576-zag",
+ "gender": "masculine"
+ }
+ ],
+ "זגי־": [
+ {
+ "word_nikkud": "זַג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7576-zag",
+ "gender": "masculine"
+ }
+ ],
+ "זהב": [
+ {
+ "word_nikkud": "זָהָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5754-zahav",
+ "gender": "masculine"
+ }
+ ],
+ "זהב־": [
+ {
+ "word_nikkud": "זָהָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5754-zahav",
+ "gender": "masculine"
+ }
+ ],
+ "זיהוי": [
+ {
+ "word_nikkud": "זִהוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5498-zihuy",
+ "gender": "masculine"
+ }
+ ],
+ "זיהויים": [
+ {
+ "word_nikkud": "זִהוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5498-zihuy",
+ "gender": "masculine"
+ }
+ ],
+ "זיהוי־": [
+ {
+ "word_nikkud": "זִהוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5498-zihuy",
+ "gender": "masculine"
+ }
+ ],
+ "זיהויי־": [
+ {
+ "word_nikkud": "זִהוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5498-zihuy",
+ "gender": "masculine"
+ }
+ ],
+ "זהות": [
+ {
+ "word_nikkud": "זֶהוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5052-zehut",
+ "gender": "feminine"
+ }
+ ],
+ "זהויות": [
+ {
+ "word_nikkud": "זֶהוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5052-zehut",
+ "gender": "feminine"
+ }
+ ],
+ "זהות־": [
+ {
+ "word_nikkud": "זֶהוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5052-zehut",
+ "gender": "feminine"
+ }
+ ],
+ "זהויות־": [
+ {
+ "word_nikkud": "זֶהוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5052-zehut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדהות": [
+ {
+ "word_nikkud": "הִזְדַּהוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8288-hizdahut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדהויות": [
+ {
+ "word_nikkud": "הִזְדַּהוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8288-hizdahut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדהות־": [
+ {
+ "word_nikkud": "הִזְדַּהוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8288-hizdahut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדהויות־": [
+ {
+ "word_nikkud": "הִזְדַּהוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8288-hizdahut",
+ "gender": "feminine"
+ }
+ ],
+ "זיהום": [
+ {
+ "word_nikkud": "זִהוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6636-zihum",
+ "gender": "masculine"
+ }
+ ],
+ "זיהומים": [
+ {
+ "word_nikkud": "זִהוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6636-zihum",
+ "gender": "masculine"
+ }
+ ],
+ "זיהום־": [
+ {
+ "word_nikkud": "זִהוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6636-zihum",
+ "gender": "masculine"
+ }
+ ],
+ "זיהומי־": [
+ {
+ "word_nikkud": "זִהוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6636-zihum",
+ "gender": "masculine"
+ }
+ ],
+ "אזהרה": [
+ {
+ "word_nikkud": "אַזְהָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5933-azhara",
+ "gender": "feminine"
+ }
+ ],
+ "אזהרות": [
+ {
+ "word_nikkud": "אַזְהָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5933-azhara",
+ "gender": "feminine"
+ }
+ ],
+ "אזהרת־": [
+ {
+ "word_nikkud": "אַזְהָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5933-azhara",
+ "gender": "feminine"
+ }
+ ],
+ "אזהרות־": [
+ {
+ "word_nikkud": "אַזְהָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5933-azhara",
+ "gender": "feminine"
+ }
+ ],
+ "הזהרה": [
+ {
+ "word_nikkud": "הַזְהָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2877-hazhara",
+ "gender": "feminine"
+ }
+ ],
+ "הזהרות": [
+ {
+ "word_nikkud": "הַזְהָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2877-hazhara",
+ "gender": "feminine"
+ }
+ ],
+ "הזהרת־": [
+ {
+ "word_nikkud": "הַזְהָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2877-hazhara",
+ "gender": "feminine"
+ }
+ ],
+ "הזהרות־": [
+ {
+ "word_nikkud": "הַזְהָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2877-hazhara",
+ "gender": "feminine"
+ }
+ ],
+ "זהירות": [
+ {
+ "word_nikkud": "זְהִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5017-zehirut",
+ "gender": "feminine"
+ }
+ ],
+ "זהירויות": [
+ {
+ "word_nikkud": "זְהִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5017-zehirut",
+ "gender": "feminine"
+ }
+ ],
+ "זהירות־": [
+ {
+ "word_nikkud": "זְהִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5017-zehirut",
+ "gender": "feminine"
+ }
+ ],
+ "זהירויות־": [
+ {
+ "word_nikkud": "זְהִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5017-zehirut",
+ "gender": "feminine"
+ }
+ ],
+ "זוג": [
+ {
+ "word_nikkud": "זוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7617-zug",
+ "gender": "masculine"
+ }
+ ],
+ "זוגות": [
+ {
+ "word_nikkud": "זוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7617-zug",
+ "gender": "masculine"
+ }
+ ],
+ "זוג־": [
+ {
+ "word_nikkud": "זוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7617-zug",
+ "gender": "masculine"
+ }
+ ],
+ "זוגות־": [
+ {
+ "word_nikkud": "זוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7617-zug",
+ "gender": "masculine"
+ }
+ ],
+ "הזדווגות": [
+ {
+ "word_nikkud": "הִזְדַּוְּגוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8332-hizdavgut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדווגויות": [
+ {
+ "word_nikkud": "הִזְדַּוְּגוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8332-hizdavgut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדווגות־": [
+ {
+ "word_nikkud": "הִזְדַּוְּגוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8332-hizdavgut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדווגויות־": [
+ {
+ "word_nikkud": "הִזְדַּוְּגוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8332-hizdavgut",
+ "gender": "feminine"
+ }
+ ],
+ "מזוודה": [
+ {
+ "word_nikkud": "מִזְוָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4010-mizvada",
+ "gender": "feminine"
+ }
+ ],
+ "מזוודות": [
+ {
+ "word_nikkud": "מִזְוָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4010-mizvada",
+ "gender": "feminine"
+ }
+ ],
+ "מזוודת־": [
+ {
+ "word_nikkud": "מִזְוָדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4010-mizvada",
+ "gender": "feminine"
+ }
+ ],
+ "מזוודות־": [
+ {
+ "word_nikkud": "מִזְוָדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4010-mizvada",
+ "gender": "feminine"
+ }
+ ],
+ "מזווד": [
+ {
+ "word_nikkud": "מִזְוָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4011-mizvad",
+ "gender": "masculine"
+ }
+ ],
+ "מזווד־": [
+ {
+ "word_nikkud": "מִזְוָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4011-mizvad",
+ "gender": "masculine"
+ }
+ ],
+ "זדון": [
+ {
+ "word_nikkud": "זָדוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9123-zadon",
+ "gender": ""
+ }
+ ],
+ "זדונות": [
+ {
+ "word_nikkud": "זָדוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9123-zadon",
+ "gender": ""
+ }
+ ],
+ "זדון־": [
+ {
+ "word_nikkud": "זָדוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9123-zadon",
+ "gender": ""
+ }
+ ],
+ "זדונות־": [
+ {
+ "word_nikkud": "זָדוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9123-zadon",
+ "gender": ""
+ }
+ ],
+ "תזוזה": [
+ {
+ "word_nikkud": "תְּזוּזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6476-tzuza",
+ "gender": "feminine"
+ }
+ ],
+ "תזוזות": [
+ {
+ "word_nikkud": "תְּזוּזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6476-tzuza",
+ "gender": "feminine"
+ }
+ ],
+ "תזוזת־": [
+ {
+ "word_nikkud": "תְּזוּזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6476-tzuza",
+ "gender": "feminine"
+ }
+ ],
+ "תזוזות־": [
+ {
+ "word_nikkud": "תְּזוּזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6476-tzuza",
+ "gender": "feminine"
+ }
+ ],
+ "הזזה": [
+ {
+ "word_nikkud": "הֲזָזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6661-hazaza",
+ "gender": "feminine"
+ }
+ ],
+ "הזזות": [
+ {
+ "word_nikkud": "הֲזָזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6661-hazaza",
+ "gender": "feminine"
+ }
+ ],
+ "הזזת־": [
+ {
+ "word_nikkud": "הֲזָזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6661-hazaza",
+ "gender": "feminine"
+ }
+ ],
+ "הזזות־": [
+ {
+ "word_nikkud": "הֲזָזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6661-hazaza",
+ "gender": "feminine"
+ }
+ ],
+ "זוטות": [
+ {
+ "word_nikkud": "זוּטוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8147-zutot",
+ "gender": ""
+ }
+ ],
+ "זוטות־": [
+ {
+ "word_nikkud": "זוּטוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8147-zutot",
+ "gender": ""
+ }
+ ],
+ "זווית": [
+ {
+ "word_nikkud": "זָוִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6552-zavit",
+ "gender": "feminine"
+ }
+ ],
+ "זוויות": [
+ {
+ "word_nikkud": "זָוִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6552-zavit",
+ "gender": "feminine"
+ }
+ ],
+ "זווית־": [
+ {
+ "word_nikkud": "זָוִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6552-zavit",
+ "gender": "feminine"
+ }
+ ],
+ "זוויות־": [
+ {
+ "word_nikkud": "זָוִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6552-zavit",
+ "gender": "feminine"
+ }
+ ],
+ "מזון": [
+ {
+ "word_nikkud": "מָזוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4762-mazon",
+ "gender": "masculine"
+ }
+ ],
+ "מזונות": [
+ {
+ "word_nikkud": "מָזוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4762-mazon",
+ "gender": "masculine"
+ }
+ ],
+ "מזון־": [
+ {
+ "word_nikkud": "מָזוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4762-mazon",
+ "gender": "masculine"
+ }
+ ],
+ "מזונות־": [
+ {
+ "word_nikkud": "מָזוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4762-mazon",
+ "gender": "masculine"
+ }
+ ],
+ "הזנה": [
+ {
+ "word_nikkud": "הֲזָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8458-hazana",
+ "gender": "feminine"
+ }
+ ],
+ "הזנות": [
+ {
+ "word_nikkud": "הֲזָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8458-hazana",
+ "gender": "feminine"
+ }
+ ],
+ "הזנת־": [
+ {
+ "word_nikkud": "הֲזָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8458-hazana",
+ "gender": "feminine"
+ }
+ ],
+ "הזנות־": [
+ {
+ "word_nikkud": "הֲזָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8458-hazana",
+ "gender": "feminine"
+ }
+ ],
+ "תזונאי": [
+ {
+ "word_nikkud": "תְּזוּנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9230-tzunay",
+ "gender": "masculine"
+ }
+ ],
+ "תזונאים": [
+ {
+ "word_nikkud": "תְּזוּנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9230-tzunay",
+ "gender": "masculine"
+ }
+ ],
+ "תזונאי־": [
+ {
+ "word_nikkud": "תְּזוּנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9230-tzunay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תְּזוּנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9230-tzunay",
+ "gender": "masculine"
+ }
+ ],
+ "מזנון": [
+ {
+ "word_nikkud": "מִזְנוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6449-miznon",
+ "gender": "masculine"
+ }
+ ],
+ "מזנונים": [
+ {
+ "word_nikkud": "מִזְנוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6449-miznon",
+ "gender": "masculine"
+ }
+ ],
+ "מזנון־": [
+ {
+ "word_nikkud": "מִזְנוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6449-miznon",
+ "gender": "masculine"
+ }
+ ],
+ "מזנוני־": [
+ {
+ "word_nikkud": "מִזְנוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6449-miznon",
+ "gender": "masculine"
+ }
+ ],
+ "תזונה": [
+ {
+ "word_nikkud": "תְּזוּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7055-tzuna",
+ "gender": "feminine"
+ }
+ ],
+ "תזונות": [
+ {
+ "word_nikkud": "תְּזוּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7055-tzuna",
+ "gender": "feminine"
+ }
+ ],
+ "תזונת־": [
+ {
+ "word_nikkud": "תְּזוּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7055-tzuna",
+ "gender": "feminine"
+ }
+ ],
+ "תזונות־": [
+ {
+ "word_nikkud": "תְּזוּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7055-tzuna",
+ "gender": "feminine"
+ }
+ ],
+ "זוועה": [
+ {
+ "word_nikkud": "זְוָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4008-zvaa",
+ "gender": "feminine"
+ }
+ ],
+ "זוועות": [
+ {
+ "word_nikkud": "זְוָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4008-zvaa",
+ "gender": "feminine"
+ }
+ ],
+ "זוועת־": [
+ {
+ "word_nikkud": "זְוָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4008-zvaa",
+ "gender": "feminine"
+ }
+ ],
+ "זוועות־": [
+ {
+ "word_nikkud": "זְוָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4008-zvaa",
+ "gender": "feminine"
+ }
+ ],
+ "זחילה": [
+ {
+ "word_nikkud": "זְחִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8414-zchila",
+ "gender": "feminine"
+ }
+ ],
+ "זחילות": [
+ {
+ "word_nikkud": "זְחִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8414-zchila",
+ "gender": "feminine"
+ }
+ ],
+ "זחילת־": [
+ {
+ "word_nikkud": "זְחִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8414-zchila",
+ "gender": "feminine"
+ }
+ ],
+ "זחילות־": [
+ {
+ "word_nikkud": "זְחִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8414-zchila",
+ "gender": "feminine"
+ }
+ ],
+ "זחל": [
+ {
+ "word_nikkud": "זַחַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8420-zachal",
+ "gender": "masculine"
+ }
+ ],
+ "זחלים": [
+ {
+ "word_nikkud": "זַחַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8420-zachal",
+ "gender": "masculine"
+ }
+ ],
+ "זחל־": [
+ {
+ "word_nikkud": "זַחַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8420-zachal",
+ "gender": "masculine"
+ }
+ ],
+ "זחלי־": [
+ {
+ "word_nikkud": "זַחַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8420-zachal",
+ "gender": "masculine"
+ }
+ ],
+ "זוחל": [
+ {
+ "word_nikkud": "זוֹחֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6967-zochel",
+ "gender": "masculine"
+ }
+ ],
+ "זוחלים": [
+ {
+ "word_nikkud": "זוֹחֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6967-zochel",
+ "gender": "masculine"
+ }
+ ],
+ "זוחל־": [
+ {
+ "word_nikkud": "זוֹחֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6967-zochel",
+ "gender": "masculine"
+ }
+ ],
+ "זוחלי־": [
+ {
+ "word_nikkud": "זוֹחֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6967-zochel",
+ "gender": "masculine"
+ }
+ ],
+ "מזחלת": [
+ {
+ "word_nikkud": "מִזְחֶלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7025-mizchelet",
+ "gender": "feminine"
+ }
+ ],
+ "מזחלות": [
+ {
+ "word_nikkud": "מִזְחֶלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7025-mizchelet",
+ "gender": "feminine"
+ }
+ ],
+ "מזחלת־": [
+ {
+ "word_nikkud": "מִזְחֶלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7025-mizchelet",
+ "gender": "feminine"
+ }
+ ],
+ "מזחלות־": [
+ {
+ "word_nikkud": "מִזְחֶלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7025-mizchelet",
+ "gender": "feminine"
+ }
+ ],
+ "זיו": [
+ {
+ "word_nikkud": "זִיו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5975-ziv",
+ "gender": ""
+ }
+ ],
+ "זיווים": [
+ {
+ "word_nikkud": "זִיו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5975-ziv",
+ "gender": ""
+ }
+ ],
+ "זיו־": [
+ {
+ "word_nikkud": "זִיו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5975-ziv",
+ "gender": ""
+ }
+ ],
+ "זיווי־": [
+ {
+ "word_nikkud": "זִיו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5975-ziv",
+ "gender": ""
+ }
+ ],
+ "זין": [
+ {
+ "word_nikkud": "זַיִן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4517-zayin",
+ "gender": "masculine"
+ }
+ ],
+ "זין־": [
+ {
+ "word_nikkud": "זַיִן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4517-zayin",
+ "gender": "masculine"
+ }
+ ],
+ "זיע": [
+ {
+ "word_nikkud": "זִיעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6812-zia",
+ "gender": ""
+ }
+ ],
+ "זיעים": [
+ {
+ "word_nikkud": "זִיעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6812-zia",
+ "gender": ""
+ }
+ ],
+ "זיע־": [
+ {
+ "word_nikkud": "זִיעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6812-zia",
+ "gender": ""
+ }
+ ],
+ "זיעי־": [
+ {
+ "word_nikkud": "זִיעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6812-zia",
+ "gender": ""
+ }
+ ],
+ "זיף": [
+ {
+ "word_nikkud": "זִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5015-zif",
+ "gender": ""
+ }
+ ],
+ "זיפים": [
+ {
+ "word_nikkud": "זִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5015-zif",
+ "gender": ""
+ }
+ ],
+ "זיף־": [
+ {
+ "word_nikkud": "זִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5015-zif",
+ "gender": ""
+ }
+ ],
+ "זיפי־": [
+ {
+ "word_nikkud": "זִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5015-zif",
+ "gender": ""
+ }
+ ],
+ "זיקית": [
+ {
+ "word_nikkud": "זִקִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7406-zikit",
+ "gender": "feminine"
+ }
+ ],
+ "זיקיות": [
+ {
+ "word_nikkud": "זִקִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7406-zikit",
+ "gender": "feminine"
+ }
+ ],
+ "זיקית־": [
+ {
+ "word_nikkud": "זִקִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7406-zikit",
+ "gender": "feminine"
+ }
+ ],
+ "זיקיות־": [
+ {
+ "word_nikkud": "זִקִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7406-zikit",
+ "gender": "feminine"
+ }
+ ],
+ "זירה": [
+ {
+ "word_nikkud": "זִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4298-zira",
+ "gender": "feminine"
+ }
+ ],
+ "זירות": [
+ {
+ "word_nikkud": "זִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4298-zira",
+ "gender": "feminine"
+ }
+ ],
+ "זירת־": [
+ {
+ "word_nikkud": "זִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4298-zira",
+ "gender": "feminine"
+ }
+ ],
+ "זירות־": [
+ {
+ "word_nikkud": "זִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4298-zira",
+ "gender": "feminine"
+ }
+ ],
+ "זית": [
+ {
+ "word_nikkud": "זַיִת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4245-zayit",
+ "gender": "masculine"
+ }
+ ],
+ "זיתים": [
+ {
+ "word_nikkud": "זַיִת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4245-zayit",
+ "gender": "masculine"
+ }
+ ],
+ "זית־": [
+ {
+ "word_nikkud": "זַיִת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4245-zayit",
+ "gender": "masculine"
+ }
+ ],
+ "זיתי־": [
+ {
+ "word_nikkud": "זַיִת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4245-zayit",
+ "gender": "masculine"
+ }
+ ],
+ "זכות": [
+ {
+ "word_nikkud": "זְכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3758-zchut",
+ "gender": "feminine"
+ }
+ ],
+ "זכויות": [
+ {
+ "word_nikkud": "זְכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3758-zchut",
+ "gender": "feminine"
+ }
+ ],
+ "זכות־": [
+ {
+ "word_nikkud": "זְכוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3758-zchut",
+ "gender": "feminine"
+ }
+ ],
+ "זכויות־": [
+ {
+ "word_nikkud": "זְכוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3758-zchut",
+ "gender": "feminine"
+ }
+ ],
+ "זיכוי": [
+ {
+ "word_nikkud": "זִכּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4267-zikuy",
+ "gender": "masculine"
+ }
+ ],
+ "זיכויים": [
+ {
+ "word_nikkud": "זִכּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4267-zikuy",
+ "gender": "masculine"
+ }
+ ],
+ "זיכוי־": [
+ {
+ "word_nikkud": "זִכּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4267-zikuy",
+ "gender": "masculine"
+ }
+ ],
+ "זיכויי־": [
+ {
+ "word_nikkud": "זִכּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4267-zikuy",
+ "gender": "masculine"
+ }
+ ],
+ "זכייה": [
+ {
+ "word_nikkud": "זְכִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9127-zchiya",
+ "gender": "feminine"
+ }
+ ],
+ "זכיות": [
+ {
+ "word_nikkud": "זְכִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9127-zchiya",
+ "gender": "feminine"
+ }
+ ],
+ "זכיית־": [
+ {
+ "word_nikkud": "זְכִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9127-zchiya",
+ "gender": "feminine"
+ }
+ ],
+ "זכיות־": [
+ {
+ "word_nikkud": "זְכִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9127-zchiya",
+ "gender": "feminine"
+ }
+ ],
+ "זכיין": [
+ {
+ "word_nikkud": "זַכְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6127-zachyan",
+ "gender": "masculine"
+ }
+ ],
+ "זכיינים": [
+ {
+ "word_nikkud": "זַכְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6127-zachyan",
+ "gender": "masculine"
+ }
+ ],
+ "זכיין־": [
+ {
+ "word_nikkud": "זַכְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6127-zachyan",
+ "gender": "masculine"
+ }
+ ],
+ "זכייני־": [
+ {
+ "word_nikkud": "זַכְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6127-zachyan",
+ "gender": "masculine"
+ }
+ ],
+ "זכוכית": [
+ {
+ "word_nikkud": "זְכוּכִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6342-zchuchit",
+ "gender": "feminine"
+ }
+ ],
+ "זכוכיות": [
+ {
+ "word_nikkud": "זְכוּכִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6342-zchuchit",
+ "gender": "feminine"
+ }
+ ],
+ "זכוכית־": [
+ {
+ "word_nikkud": "זְכוּכִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6342-zchuchit",
+ "gender": "feminine"
+ }
+ ],
+ "זכוכיות־": [
+ {
+ "word_nikkud": "זְכוּכִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6342-zchuchit",
+ "gender": "feminine"
+ }
+ ],
+ "זכירה": [
+ {
+ "word_nikkud": "זְכִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5726-zchira",
+ "gender": "feminine"
+ }
+ ],
+ "זכירת־": [
+ {
+ "word_nikkud": "זְכִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5726-zchira",
+ "gender": "feminine"
+ }
+ ],
+ "תזכורת": [
+ {
+ "word_nikkud": "תִּזְכֹּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3406-tizkoret",
+ "gender": "feminine"
+ }
+ ],
+ "תזכורות": [
+ {
+ "word_nikkud": "תִּזְכֹּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3406-tizkoret",
+ "gender": "feminine"
+ }
+ ],
+ "תזכורת־": [
+ {
+ "word_nikkud": "תִּזְכֹּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3406-tizkoret",
+ "gender": "feminine"
+ }
+ ],
+ "תזכורות־": [
+ {
+ "word_nikkud": "תִּזְכֹּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3406-tizkoret",
+ "gender": "feminine"
+ }
+ ],
+ "אזכרה": [
+ {
+ "word_nikkud": "אַזְכָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2929-azkara",
+ "gender": "feminine"
+ }
+ ],
+ "אזכרת־": [
+ {
+ "word_nikkud": "אַזְכָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2929-azkara",
+ "gender": "feminine"
+ }
+ ],
+ "זכר": [
+ {
+ "word_nikkud": "זֵכֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3196-zecher",
+ "gender": "masculine"
+ }
+ ],
+ "זכר־": [
+ {
+ "word_nikkud": "זֵכֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3196-zecher",
+ "gender": "masculine"
+ }
+ ],
+ "מזכרת": [
+ {
+ "word_nikkud": "מַזְכֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3403-mazkeret",
+ "gender": "feminine"
+ }
+ ],
+ "מזכרות": [
+ {
+ "word_nikkud": "מַזְכֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3403-mazkeret",
+ "gender": "feminine"
+ }
+ ],
+ "מזכרת־": [
+ {
+ "word_nikkud": "מַזְכֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3403-mazkeret",
+ "gender": "feminine"
+ }
+ ],
+ "מזכרות־": [
+ {
+ "word_nikkud": "מַזְכֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3403-mazkeret",
+ "gender": "feminine"
+ }
+ ],
+ "הזכרה": [
+ {
+ "word_nikkud": "הַזְכָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3404-hazkara",
+ "gender": "feminine"
+ }
+ ],
+ "הזכרות": [
+ {
+ "word_nikkud": "הַזְכָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3404-hazkara",
+ "gender": "feminine"
+ }
+ ],
+ "הזכרת־": [
+ {
+ "word_nikkud": "הַזְכָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3404-hazkara",
+ "gender": "feminine"
+ }
+ ],
+ "הזכרות־": [
+ {
+ "word_nikkud": "הַזְכָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3404-hazkara",
+ "gender": "feminine"
+ }
+ ],
+ "זיכרון": [
+ {
+ "word_nikkud": "זִכָּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3578-zikaron",
+ "gender": "masculine"
+ }
+ ],
+ "זיכרונות": [
+ {
+ "word_nikkud": "זִכָּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3578-zikaron",
+ "gender": "masculine"
+ }
+ ],
+ "זיכרון־": [
+ {
+ "word_nikkud": "זִכָּרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3578-zikaron",
+ "gender": "masculine"
+ }
+ ],
+ "זיכרונות־": [
+ {
+ "word_nikkud": "זִכָּרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3578-zikaron",
+ "gender": "masculine"
+ }
+ ],
+ "מזכר": [
+ {
+ "word_nikkud": "מִזְכָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7571-mizkar",
+ "gender": "masculine"
+ }
+ ],
+ "מזכרים": [
+ {
+ "word_nikkud": "מִזְכָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7571-mizkar",
+ "gender": "masculine"
+ }
+ ],
+ "מזכר־": [
+ {
+ "word_nikkud": "מִזְכָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7571-mizkar",
+ "gender": "masculine"
+ }
+ ],
+ "מזכרי־": [
+ {
+ "word_nikkud": "מִזְכָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7571-mizkar",
+ "gender": "masculine"
+ }
+ ],
+ "מזכיר": [
+ {
+ "word_nikkud": "מַזְכִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7771-mazkir",
+ "gender": "masculine"
+ }
+ ],
+ "מזכירים": [
+ {
+ "word_nikkud": "מַזְכִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7771-mazkir",
+ "gender": "masculine"
+ }
+ ],
+ "מזכיר־": [
+ {
+ "word_nikkud": "מַזְכִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7771-mazkir",
+ "gender": "masculine"
+ }
+ ],
+ "מזכירי־": [
+ {
+ "word_nikkud": "מַזְכִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7771-mazkir",
+ "gender": "masculine"
+ }
+ ],
+ "מזלג": [
+ {
+ "word_nikkud": "מַזְלֵג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3101-mazleg",
+ "gender": "masculine"
+ }
+ ],
+ "מזלגות": [
+ {
+ "word_nikkud": "מַזְלֵג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3101-mazleg",
+ "gender": "masculine"
+ }
+ ],
+ "מזלג־": [
+ {
+ "word_nikkud": "מַזְלֵג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3101-mazleg",
+ "gender": "masculine"
+ }
+ ],
+ "מזלגות־": [
+ {
+ "word_nikkud": "מַזְלֵג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3101-mazleg",
+ "gender": "masculine"
+ }
+ ],
+ "זלזל": [
+ {
+ "word_nikkud": "זַלְזַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3785-zalzal",
+ "gender": ""
+ }
+ ],
+ "זלזלים": [
+ {
+ "word_nikkud": "זַלְזַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3785-zalzal",
+ "gender": ""
+ }
+ ],
+ "זלזל־": [
+ {
+ "word_nikkud": "זַלְזַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3785-zalzal",
+ "gender": ""
+ }
+ ],
+ "זלזלי־": [
+ {
+ "word_nikkud": "זַלְזַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3785-zalzal",
+ "gender": ""
+ }
+ ],
+ "זלזול": [
+ {
+ "word_nikkud": "זִלְזוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9245-zilzul",
+ "gender": "masculine"
+ }
+ ],
+ "זלזולים": [
+ {
+ "word_nikkud": "זִלְזוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9245-zilzul",
+ "gender": "masculine"
+ }
+ ],
+ "זלזול־": [
+ {
+ "word_nikkud": "זִלְזוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9245-zilzul",
+ "gender": "masculine"
+ }
+ ],
+ "זלזולי־": [
+ {
+ "word_nikkud": "זִלְזוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9245-zilzul",
+ "gender": "masculine"
+ }
+ ],
+ "זלילה": [
+ {
+ "word_nikkud": "זְלִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8725-zlila",
+ "gender": "feminine"
+ }
+ ],
+ "זלילת־": [
+ {
+ "word_nikkud": "זְלִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8725-zlila",
+ "gender": "feminine"
+ }
+ ],
+ "מזלף": [
+ {
+ "word_nikkud": "מַזְלֵף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7282-mazlef",
+ "gender": "masculine"
+ }
+ ],
+ "מזלפים": [
+ {
+ "word_nikkud": "מַזְלֵף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7282-mazlef",
+ "gender": "masculine"
+ }
+ ],
+ "מזלף־": [
+ {
+ "word_nikkud": "מַזְלֵף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7282-mazlef",
+ "gender": "masculine"
+ }
+ ],
+ "מזלפי־": [
+ {
+ "word_nikkud": "מַזְלֵף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7282-mazlef",
+ "gender": "masculine"
+ }
+ ],
+ "זמזום": [
+ {
+ "word_nikkud": "זִמְזוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3059-zimzum",
+ "gender": "masculine"
+ }
+ ],
+ "זמזום־": [
+ {
+ "word_nikkud": "זִמְזוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3059-zimzum",
+ "gender": "masculine"
+ }
+ ],
+ "זמזם": [
+ {
+ "word_nikkud": "זַמְזָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3786-zamzam",
+ "gender": "masculine"
+ }
+ ],
+ "זמזמים": [
+ {
+ "word_nikkud": "זַמְזָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3786-zamzam",
+ "gender": "masculine"
+ }
+ ],
+ "זמזם־": [
+ {
+ "word_nikkud": "זַמְזָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3786-zamzam",
+ "gender": "masculine"
+ }
+ ],
+ "זמזמי־": [
+ {
+ "word_nikkud": "זַמְזָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3786-zamzam",
+ "gender": "masculine"
+ }
+ ],
+ "זימה": [
+ {
+ "word_nikkud": "זִמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5567-zima",
+ "gender": "feminine"
+ }
+ ],
+ "זימת־": [
+ {
+ "word_nikkud": "זִמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5567-zima",
+ "gender": "feminine"
+ }
+ ],
+ "מזימה": [
+ {
+ "word_nikkud": "מְזִמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3790-mezima",
+ "gender": "feminine"
+ }
+ ],
+ "מזימות": [
+ {
+ "word_nikkud": "מְזִמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3790-mezima",
+ "gender": "feminine"
+ }
+ ],
+ "מזימת־": [
+ {
+ "word_nikkud": "מְזִמָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3790-mezima",
+ "gender": "feminine"
+ }
+ ],
+ "מזימות־": [
+ {
+ "word_nikkud": "מְזִמָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3790-mezima",
+ "gender": "feminine"
+ }
+ ],
+ "זמינות": [
+ {
+ "word_nikkud": "זְמִינוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4697-zminut",
+ "gender": "feminine"
+ }
+ ],
+ "זמינות־": [
+ {
+ "word_nikkud": "זְמִינוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4697-zminut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדמנות": [
+ {
+ "word_nikkud": "הִזְדַּמְּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5544-hizdamnut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדמנויות": [
+ {
+ "word_nikkud": "הִזְדַּמְּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5544-hizdamnut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדמנות־": [
+ {
+ "word_nikkud": "הִזְדַּמְּנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5544-hizdamnut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדמנויות־": [
+ {
+ "word_nikkud": "הִזְדַּמְּנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5544-hizdamnut",
+ "gender": "feminine"
+ }
+ ],
+ "הזמנה": [
+ {
+ "word_nikkud": "הַזְמָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2878-hazmana",
+ "gender": "feminine"
+ }
+ ],
+ "הזמנות": [
+ {
+ "word_nikkud": "הַזְמָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2878-hazmana",
+ "gender": "feminine"
+ }
+ ],
+ "הזמנת־": [
+ {
+ "word_nikkud": "הַזְמָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2878-hazmana",
+ "gender": "feminine"
+ }
+ ],
+ "הזמנות־": [
+ {
+ "word_nikkud": "הַזְמָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2878-hazmana",
+ "gender": "feminine"
+ }
+ ],
+ "זמן": [
+ {
+ "word_nikkud": "זְמַן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3055-zman",
+ "gender": "masculine"
+ }
+ ],
+ "זמנים": [
+ {
+ "word_nikkud": "זְמַן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3055-zman",
+ "gender": "masculine"
+ }
+ ],
+ "זמן־": [
+ {
+ "word_nikkud": "זְמַן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3055-zman",
+ "gender": "masculine"
+ }
+ ],
+ "זמני־": [
+ {
+ "word_nikkud": "זְמַן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3055-zman",
+ "gender": "masculine"
+ }
+ ],
+ "זימון": [
+ {
+ "word_nikkud": "זִמּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9217-zimun",
+ "gender": "masculine"
+ }
+ ],
+ "זימונים": [
+ {
+ "word_nikkud": "זִמּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9217-zimun",
+ "gender": "masculine"
+ }
+ ],
+ "זימון־": [
+ {
+ "word_nikkud": "זִמּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9217-zimun",
+ "gender": "masculine"
+ }
+ ],
+ "זימוני־": [
+ {
+ "word_nikkud": "זִמּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9217-zimun",
+ "gender": "masculine"
+ }
+ ],
+ "מזומן": [
+ {
+ "word_nikkud": "מְזֻמָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4696-mezuman",
+ "gender": "masculine"
+ }
+ ],
+ "מזומנים": [
+ {
+ "word_nikkud": "מְזֻמָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4696-mezuman",
+ "gender": "masculine"
+ }
+ ],
+ "מזומן־": [
+ {
+ "word_nikkud": "מְזֻמָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4696-mezuman",
+ "gender": "masculine"
+ }
+ ],
+ "מזומני־": [
+ {
+ "word_nikkud": "מְזֻמָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4696-mezuman",
+ "gender": "masculine"
+ }
+ ],
+ "תזמורת": [
+ {
+ "word_nikkud": "תִּזְמֹרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3249-tizmoret",
+ "gender": "feminine"
+ }
+ ],
+ "תזמורות": [
+ {
+ "word_nikkud": "תִּזְמֹרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3249-tizmoret",
+ "gender": "feminine"
+ }
+ ],
+ "תזמורת־": [
+ {
+ "word_nikkud": "תִּזְמֹרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3249-tizmoret",
+ "gender": "feminine"
+ }
+ ],
+ "תזמורות־": [
+ {
+ "word_nikkud": "תִּזְמֹרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3249-tizmoret",
+ "gender": "feminine"
+ }
+ ],
+ "זמר": [
+ {
+ "word_nikkud": "זַמָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6068-zamar",
+ "gender": "masculine"
+ }
+ ],
+ "זמרים": [
+ {
+ "word_nikkud": "זַמָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6068-zamar",
+ "gender": "masculine"
+ }
+ ],
+ "זמר־": [
+ {
+ "word_nikkud": "זַמָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6068-zamar",
+ "gender": "masculine"
+ }
+ ],
+ "זמרי־": [
+ {
+ "word_nikkud": "זַמָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6068-zamar",
+ "gender": "masculine"
+ }
+ ],
+ "מזמור": [
+ {
+ "word_nikkud": "מִזְמוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4876-mizmor",
+ "gender": "masculine"
+ }
+ ],
+ "מזמורים": [
+ {
+ "word_nikkud": "מִזְמוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4876-mizmor",
+ "gender": "masculine"
+ }
+ ],
+ "מזמור־": [
+ {
+ "word_nikkud": "מִזְמוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4876-mizmor",
+ "gender": "masculine"
+ }
+ ],
+ "מזמורי־": [
+ {
+ "word_nikkud": "מִזְמוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4876-mizmor",
+ "gender": "masculine"
+ }
+ ],
+ "זמירה": [
+ {
+ "word_nikkud": "זְמִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6932-zmira",
+ "gender": "feminine"
+ }
+ ],
+ "זמירות": [
+ {
+ "word_nikkud": "זְמִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6932-zmira",
+ "gender": "feminine"
+ }
+ ],
+ "זמירת־": [
+ {
+ "word_nikkud": "זְמִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6932-zmira",
+ "gender": "feminine"
+ }
+ ],
+ "זמירות־": [
+ {
+ "word_nikkud": "זְמִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6932-zmira",
+ "gender": "feminine"
+ }
+ ],
+ "זמיר": [
+ {
+ "word_nikkud": "זָמִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6933-zamir",
+ "gender": "masculine"
+ }
+ ],
+ "זמירים": [
+ {
+ "word_nikkud": "זָמִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6933-zamir",
+ "gender": "masculine"
+ }
+ ],
+ "זמיר־": [
+ {
+ "word_nikkud": "זָמִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6933-zamir",
+ "gender": "masculine"
+ }
+ ],
+ "זמירי־": [
+ {
+ "word_nikkud": "זָמִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6933-zamir",
+ "gender": "masculine"
+ }
+ ],
+ "זמרה": [
+ {
+ "word_nikkud": "זִמְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6934-zimra",
+ "gender": "feminine"
+ }
+ ],
+ "זמרת־": [
+ {
+ "word_nikkud": "זִמְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6934-zimra",
+ "gender": "feminine"
+ }
+ ],
+ "זן": [
+ {
+ "word_nikkud": "זַןּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6211-zan",
+ "gender": "masculine"
+ }
+ ],
+ "זנים": [
+ {
+ "word_nikkud": "זַןּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6211-zan",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "זַןּ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6211-zan",
+ "gender": "masculine"
+ }
+ ],
+ "זן־": [
+ {
+ "word_nikkud": "זַןּ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6211-zan",
+ "gender": "masculine"
+ }
+ ],
+ "זני־": [
+ {
+ "word_nikkud": "זַןּ",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6211-zan",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "זַןּ",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6211-zan",
+ "gender": "masculine"
+ }
+ ],
+ "זנבנב": [
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ }
+ ],
+ "זנבנבים": [
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ }
+ ],
+ "זנבנב־": [
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ }
+ ],
+ "זנבנבי־": [
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "זְנַבְנַב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3485-znavnav",
+ "gender": "masculine"
+ }
+ ],
+ "זנב": [
+ {
+ "word_nikkud": "זָנָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3486-zanav",
+ "gender": "masculine"
+ }
+ ],
+ "זנבות": [
+ {
+ "word_nikkud": "זָנָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3486-zanav",
+ "gender": "masculine"
+ }
+ ],
+ "זנב־": [
+ {
+ "word_nikkud": "זָנָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3486-zanav",
+ "gender": "masculine"
+ }
+ ],
+ "זנבות־": [
+ {
+ "word_nikkud": "זָנָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3486-zanav",
+ "gender": "masculine"
+ }
+ ],
+ "זנגביל": [
+ {
+ "word_nikkud": "זַנְגְּבִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8911-zangvil",
+ "gender": "masculine"
+ }
+ ],
+ "זנגביל־": [
+ {
+ "word_nikkud": "זַנְגְּבִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8911-zangvil",
+ "gender": "masculine"
+ }
+ ],
+ "זנות": [
+ {
+ "word_nikkud": "זְנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7889-znut",
+ "gender": "feminine"
+ }
+ ],
+ "זנויות": [
+ {
+ "word_nikkud": "זְנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7889-znut",
+ "gender": "feminine"
+ }
+ ],
+ "זנות־": [
+ {
+ "word_nikkud": "זְנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7889-znut",
+ "gender": "feminine"
+ }
+ ],
+ "זנויות־": [
+ {
+ "word_nikkud": "זְנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7889-znut",
+ "gender": "feminine"
+ }
+ ],
+ "זינוק": [
+ {
+ "word_nikkud": "זִנּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2960-zinuk",
+ "gender": "masculine"
+ }
+ ],
+ "זינוקים": [
+ {
+ "word_nikkud": "זִנּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2960-zinuk",
+ "gender": "masculine"
+ }
+ ],
+ "זינוק־": [
+ {
+ "word_nikkud": "זִנּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2960-zinuk",
+ "gender": "masculine"
+ }
+ ],
+ "זינוקי־": [
+ {
+ "word_nikkud": "זִנּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2960-zinuk",
+ "gender": "masculine"
+ }
+ ],
+ "זעזוע": [
+ {
+ "word_nikkud": "זַעְזוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7421-zaazua",
+ "gender": "masculine"
+ }
+ ],
+ "זעזועים": [
+ {
+ "word_nikkud": "זַעְזוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7421-zaazua",
+ "gender": "masculine"
+ }
+ ],
+ "זעזוע־": [
+ {
+ "word_nikkud": "זַעְזוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7421-zaazua",
+ "gender": "masculine"
+ }
+ ],
+ "זעזועי־": [
+ {
+ "word_nikkud": "זַעְזוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7421-zaazua",
+ "gender": "masculine"
+ }
+ ],
+ "זעם": [
+ {
+ "word_nikkud": "זַעַם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6081-zaam",
+ "gender": "masculine"
+ }
+ ],
+ "זעמים": [
+ {
+ "word_nikkud": "זַעַם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6081-zaam",
+ "gender": "masculine"
+ }
+ ],
+ "זעם־": [
+ {
+ "word_nikkud": "זַעַם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6081-zaam",
+ "gender": "masculine"
+ }
+ ],
+ "זעמי־": [
+ {
+ "word_nikkud": "זַעַם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6081-zaam",
+ "gender": "masculine"
+ }
+ ],
+ "אזעקה": [
+ {
+ "word_nikkud": "אַזְעָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2930-azaka",
+ "gender": "feminine"
+ }
+ ],
+ "אזעקות": [
+ {
+ "word_nikkud": "אַזְעָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2930-azaka",
+ "gender": "feminine"
+ }
+ ],
+ "אזעקת־": [
+ {
+ "word_nikkud": "אַזְעָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2930-azaka",
+ "gender": "feminine"
+ }
+ ],
+ "אזעקות־": [
+ {
+ "word_nikkud": "אַזְעָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2930-azaka",
+ "gender": "feminine"
+ }
+ ],
+ "זעקה": [
+ {
+ "word_nikkud": "זַעֲקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8793-zaaka",
+ "gender": "feminine"
+ }
+ ],
+ "זעקות": [
+ {
+ "word_nikkud": "זַעֲקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8793-zaaka",
+ "gender": "feminine"
+ }
+ ],
+ "זעקת־": [
+ {
+ "word_nikkud": "זַעֲקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8793-zaaka",
+ "gender": "feminine"
+ }
+ ],
+ "זעקות־": [
+ {
+ "word_nikkud": "זַעֲקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8793-zaaka",
+ "gender": "feminine"
+ }
+ ],
+ "זפת": [
+ {
+ "word_nikkud": "זֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8313-zefet",
+ "gender": "feminine"
+ }
+ ],
+ "זפת־": [
+ {
+ "word_nikkud": "זֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8313-zefet",
+ "gender": "feminine"
+ }
+ ],
+ "זקן": [
+ {
+ "word_nikkud": "זָקָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5014-zakan",
+ "gender": "masculine"
+ }
+ ],
+ "זקנים": [
+ {
+ "word_nikkud": "זָקָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5014-zakan",
+ "gender": "masculine"
+ }
+ ],
+ "זקן־": [
+ {
+ "word_nikkud": "זָקָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5014-zakan",
+ "gender": "masculine"
+ }
+ ],
+ "זקני־": [
+ {
+ "word_nikkud": "זָקָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5014-zakan",
+ "gender": "masculine"
+ }
+ ],
+ "זקנה": [
+ {
+ "word_nikkud": "זִקְנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7426-zikna",
+ "gender": "feminine"
+ }
+ ],
+ "זקנת־": [
+ {
+ "word_nikkud": "זִקְנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7426-zikna",
+ "gender": "feminine"
+ }
+ ],
+ "זקונים": [
+ {
+ "word_nikkud": "זְקוּנִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7580-zkunim",
+ "gender": "masculine"
+ }
+ ],
+ "זקוני־": [
+ {
+ "word_nikkud": "זְקוּנִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7580-zkunim",
+ "gender": "masculine"
+ }
+ ],
+ "זקפה": [
+ {
+ "word_nikkud": "זִקְפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5326-zikpa",
+ "gender": "feminine"
+ }
+ ],
+ "זקפת־": [
+ {
+ "word_nikkud": "זִקְפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5326-zikpa",
+ "gender": "feminine"
+ }
+ ],
+ "זיקוק": [
+ {
+ "word_nikkud": "זִקּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5735-zikuk",
+ "gender": "masculine"
+ }
+ ],
+ "זיקוק־": [
+ {
+ "word_nikkud": "זִקּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5735-zikuk",
+ "gender": "masculine"
+ }
+ ],
+ "זיקה": [
+ {
+ "word_nikkud": "זִקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8768-zika",
+ "gender": "feminine"
+ }
+ ],
+ "זיקות": [
+ {
+ "word_nikkud": "זִקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8768-zika",
+ "gender": "feminine"
+ }
+ ],
+ "זיקת־": [
+ {
+ "word_nikkud": "זִקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8768-zika",
+ "gender": "feminine"
+ }
+ ],
+ "זיקות־": [
+ {
+ "word_nikkud": "זִקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8768-zika",
+ "gender": "feminine"
+ }
+ ],
+ "הזדקקות": [
+ {
+ "word_nikkud": "הִזְדַּקְּקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8972-hizdakekut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדקקויות": [
+ {
+ "word_nikkud": "הִזְדַּקְּקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8972-hizdakekut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדקקות־": [
+ {
+ "word_nikkud": "הִזְדַּקְּקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8972-hizdakekut",
+ "gender": "feminine"
+ }
+ ],
+ "הזדקקויות־": [
+ {
+ "word_nikkud": "הִזְדַּקְּקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8972-hizdakekut",
+ "gender": "feminine"
+ }
+ ],
+ "זרד": [
+ {
+ "word_nikkud": "זֶרֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8238-zered",
+ "gender": "masculine"
+ }
+ ],
+ "זרדים": [
+ {
+ "word_nikkud": "זֶרֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8238-zered",
+ "gender": "masculine"
+ }
+ ],
+ "זרד־": [
+ {
+ "word_nikkud": "זֶרֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8238-zered",
+ "gender": "masculine"
+ }
+ ],
+ "זרדי־": [
+ {
+ "word_nikkud": "זֶרֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8238-zered",
+ "gender": "masculine"
+ }
+ ],
+ "זריזות": [
+ {
+ "word_nikkud": "זְרִיזוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7564-zrizut",
+ "gender": "feminine"
+ }
+ ],
+ "זריזות־": [
+ {
+ "word_nikkud": "זְרִיזוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7564-zrizut",
+ "gender": "feminine"
+ }
+ ],
+ "זרז": [
+ {
+ "word_nikkud": "זָרָז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4895-zaraz",
+ "gender": "masculine"
+ }
+ ],
+ "זרזים": [
+ {
+ "word_nikkud": "זָרָז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4895-zaraz",
+ "gender": "masculine"
+ }
+ ],
+ "זרז־": [
+ {
+ "word_nikkud": "זָרָז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4895-zaraz",
+ "gender": "masculine"
+ }
+ ],
+ "זרזי־": [
+ {
+ "word_nikkud": "זָרָז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4895-zaraz",
+ "gender": "masculine"
+ }
+ ],
+ "אזרחות": [
+ {
+ "word_nikkud": "אֶזְרָחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7221-ezrachut",
+ "gender": "feminine"
+ }
+ ],
+ "אזרחויות": [
+ {
+ "word_nikkud": "אֶזְרָחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7221-ezrachut",
+ "gender": "feminine"
+ }
+ ],
+ "אזרחות־": [
+ {
+ "word_nikkud": "אֶזְרָחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7221-ezrachut",
+ "gender": "feminine"
+ }
+ ],
+ "אזרחויות־": [
+ {
+ "word_nikkud": "אֶזְרָחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7221-ezrachut",
+ "gender": "feminine"
+ }
+ ],
+ "זריחה": [
+ {
+ "word_nikkud": "זְרִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2816-zricha",
+ "gender": "feminine"
+ }
+ ],
+ "זריחות": [
+ {
+ "word_nikkud": "זְרִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2816-zricha",
+ "gender": "feminine"
+ }
+ ],
+ "זריחת־": [
+ {
+ "word_nikkud": "זְרִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2816-zricha",
+ "gender": "feminine"
+ }
+ ],
+ "זריחות־": [
+ {
+ "word_nikkud": "זְרִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2816-zricha",
+ "gender": "feminine"
+ }
+ ],
+ "מזרח": [
+ {
+ "word_nikkud": "מִזְרָח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3088-mizrach",
+ "gender": "masculine"
+ }
+ ],
+ "מזרח־": [
+ {
+ "word_nikkud": "מִזְרָח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3088-mizrach",
+ "gender": "masculine"
+ }
+ ],
+ "זרם": [
+ {
+ "word_nikkud": "זֶרֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3110-zerem",
+ "gender": "masculine"
+ }
+ ],
+ "זרמים": [
+ {
+ "word_nikkud": "זֶרֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3110-zerem",
+ "gender": "masculine"
+ }
+ ],
+ "זרם־": [
+ {
+ "word_nikkud": "זֶרֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3110-zerem",
+ "gender": "masculine"
+ }
+ ],
+ "זרמי־": [
+ {
+ "word_nikkud": "זֶרֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3110-zerem",
+ "gender": "masculine"
+ }
+ ],
+ "תזרים": [
+ {
+ "word_nikkud": "תַּזְרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4625-tazrim",
+ "gender": "masculine"
+ }
+ ],
+ "תזרימים": [
+ {
+ "word_nikkud": "תַּזְרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4625-tazrim",
+ "gender": "masculine"
+ }
+ ],
+ "תזרים־": [
+ {
+ "word_nikkud": "תַּזְרִים",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4625-tazrim",
+ "gender": "masculine"
+ }
+ ],
+ "תזרימי־": [
+ {
+ "word_nikkud": "תַּזְרִים",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4625-tazrim",
+ "gender": "masculine"
+ }
+ ],
+ "זרימה": [
+ {
+ "word_nikkud": "זְרִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7812-zrima",
+ "gender": "feminine"
+ }
+ ],
+ "זרימות": [
+ {
+ "word_nikkud": "זְרִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7812-zrima",
+ "gender": "feminine"
+ }
+ ],
+ "זרימת־": [
+ {
+ "word_nikkud": "זְרִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7812-zrima",
+ "gender": "feminine"
+ }
+ ],
+ "זרימות־": [
+ {
+ "word_nikkud": "זְרִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7812-zrima",
+ "gender": "feminine"
+ }
+ ],
+ "מזרן": [
+ {
+ "word_nikkud": "מִזְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7359-mizran",
+ "gender": "masculine"
+ }
+ ],
+ "מזרנים": [
+ {
+ "word_nikkud": "מִזְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7359-mizran",
+ "gender": "masculine"
+ }
+ ],
+ "מזרן־": [
+ {
+ "word_nikkud": "מִזְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7359-mizran",
+ "gender": "masculine"
+ }
+ ],
+ "מזרני־": [
+ {
+ "word_nikkud": "מִזְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7359-mizran",
+ "gender": "masculine"
+ }
+ ],
+ "זרע": [
+ {
+ "word_nikkud": "זֶרַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6099-zera",
+ "gender": "masculine"
+ }
+ ],
+ "זרעים": [
+ {
+ "word_nikkud": "זֶרַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6099-zera",
+ "gender": "masculine"
+ }
+ ],
+ "זרע־": [
+ {
+ "word_nikkud": "זֶרַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6099-zera",
+ "gender": "masculine"
+ }
+ ],
+ "זרעי־": [
+ {
+ "word_nikkud": "זֶרַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6099-zera",
+ "gender": "masculine"
+ }
+ ],
+ "זרוע": [
+ {
+ "word_nikkud": "זְרוֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7160-zroa",
+ "gender": "feminine"
+ }
+ ],
+ "זרועות": [
+ {
+ "word_nikkud": "זְרוֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7160-zroa",
+ "gender": "feminine"
+ }
+ ],
+ "זרוע־": [
+ {
+ "word_nikkud": "זְרוֹעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7160-zroa",
+ "gender": "feminine"
+ }
+ ],
+ "זרועות־": [
+ {
+ "word_nikkud": "זְרוֹעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7160-zroa",
+ "gender": "feminine"
+ }
+ ],
+ "מזרקה": [
+ {
+ "word_nikkud": "מִזְרָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3565-mizraka",
+ "gender": "feminine"
+ }
+ ],
+ "מזרקות": [
+ {
+ "word_nikkud": "מִזְרָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3565-mizraka",
+ "gender": "feminine"
+ }
+ ],
+ "מזרקת־": [
+ {
+ "word_nikkud": "מִזְרָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3565-mizraka",
+ "gender": "feminine"
+ }
+ ],
+ "מזרקות־": [
+ {
+ "word_nikkud": "מִזְרָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3565-mizraka",
+ "gender": "feminine"
+ }
+ ],
+ "זריקה": [
+ {
+ "word_nikkud": "זְרִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4249-zrika",
+ "gender": "feminine"
+ }
+ ],
+ "זריקות": [
+ {
+ "word_nikkud": "זְרִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4249-zrika",
+ "gender": "feminine"
+ }
+ ],
+ "זריקת־": [
+ {
+ "word_nikkud": "זְרִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4249-zrika",
+ "gender": "feminine"
+ }
+ ],
+ "זריקות־": [
+ {
+ "word_nikkud": "זְרִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4249-zrika",
+ "gender": "feminine"
+ }
+ ],
+ "זר": [
+ {
+ "word_nikkud": "זֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4970-zer",
+ "gender": "masculine"
+ }
+ ],
+ "זרים": [
+ {
+ "word_nikkud": "זֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4970-zer",
+ "gender": "masculine"
+ }
+ ],
+ "זר־": [
+ {
+ "word_nikkud": "זֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4970-zer",
+ "gender": "masculine"
+ }
+ ],
+ "זרי־": [
+ {
+ "word_nikkud": "זֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4970-zer",
+ "gender": "masculine"
+ }
+ ],
+ "מחבוא": [
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ }
+ ],
+ "מחבואים": [
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ }
+ ],
+ "מחבוא־": [
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ }
+ ],
+ "מחבואי־": [
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַחְבּוֹא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7760-machbo",
+ "gender": "masculine"
+ }
+ ],
+ "תחביב": [
+ {
+ "word_nikkud": "תַּחְבִּיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3606-tachbiv",
+ "gender": "masculine"
+ }
+ ],
+ "תחביבים": [
+ {
+ "word_nikkud": "תַּחְבִּיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3606-tachbiv",
+ "gender": "masculine"
+ }
+ ],
+ "תחביב־": [
+ {
+ "word_nikkud": "תַּחְבִּיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3606-tachbiv",
+ "gender": "masculine"
+ }
+ ],
+ "תחביבי־": [
+ {
+ "word_nikkud": "תַּחְבִּיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3606-tachbiv",
+ "gender": "masculine"
+ }
+ ],
+ "חיבה": [
+ {
+ "word_nikkud": "חִבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6799-chiba",
+ "gender": "feminine"
+ }
+ ],
+ "חיבת־": [
+ {
+ "word_nikkud": "חִבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6799-chiba",
+ "gender": "feminine"
+ }
+ ],
+ "חבוש": [
+ {
+ "word_nikkud": "חַבּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7113-chabush",
+ "gender": "masculine"
+ }
+ ],
+ "חבושים": [
+ {
+ "word_nikkud": "חַבּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7113-chabush",
+ "gender": "masculine"
+ }
+ ],
+ "חבוש־": [
+ {
+ "word_nikkud": "חַבּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7113-chabush",
+ "gender": "masculine"
+ }
+ ],
+ "חבושי־": [
+ {
+ "word_nikkud": "חַבּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7113-chabush",
+ "gender": "masculine"
+ }
+ ],
+ "מחבט": [
+ {
+ "word_nikkud": "מַחְבֵּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3548-machbet",
+ "gender": "masculine"
+ }
+ ],
+ "מחבטים": [
+ {
+ "word_nikkud": "מַחְבֵּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3548-machbet",
+ "gender": "masculine"
+ }
+ ],
+ "מחבט־": [
+ {
+ "word_nikkud": "מַחְבֵּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3548-machbet",
+ "gender": "masculine"
+ }
+ ],
+ "מחבטי־": [
+ {
+ "word_nikkud": "מַחְבֵּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3548-machbet",
+ "gender": "masculine"
+ }
+ ],
+ "חבית": [
+ {
+ "word_nikkud": "חָבִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9150-chavit",
+ "gender": "feminine"
+ }
+ ],
+ "חביות": [
+ {
+ "word_nikkud": "חָבִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9150-chavit",
+ "gender": "feminine"
+ }
+ ],
+ "חבית־": [
+ {
+ "word_nikkud": "חָבִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9150-chavit",
+ "gender": "feminine"
+ }
+ ],
+ "חביות־": [
+ {
+ "word_nikkud": "חָבִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9150-chavit",
+ "gender": "feminine"
+ }
+ ],
+ "חובל": [
+ {
+ "word_nikkud": "חוֹבֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5674-chovel",
+ "gender": "masculine"
+ }
+ ],
+ "חובלים": [
+ {
+ "word_nikkud": "חוֹבֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5674-chovel",
+ "gender": "masculine"
+ }
+ ],
+ "חובל־": [
+ {
+ "word_nikkud": "חוֹבֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5674-chovel",
+ "gender": "masculine"
+ }
+ ],
+ "חובלי־": [
+ {
+ "word_nikkud": "חוֹבֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5674-chovel",
+ "gender": "masculine"
+ }
+ ],
+ "תחבולה": [
+ {
+ "word_nikkud": "תַּחְבּוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4733-tachbula",
+ "gender": "feminine"
+ }
+ ],
+ "תחבולות": [
+ {
+ "word_nikkud": "תַּחְבּוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4733-tachbula",
+ "gender": "feminine"
+ }
+ ],
+ "תחבולת־": [
+ {
+ "word_nikkud": "תַּחְבּוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4733-tachbula",
+ "gender": "feminine"
+ }
+ ],
+ "תחבולות־": [
+ {
+ "word_nikkud": "תַּחְבּוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4733-tachbula",
+ "gender": "feminine"
+ }
+ ],
+ "חבילה": [
+ {
+ "word_nikkud": "חֲבִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5115-chavila",
+ "gender": "feminine"
+ }
+ ],
+ "חבילות": [
+ {
+ "word_nikkud": "חֲבִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5115-chavila",
+ "gender": "feminine"
+ }
+ ],
+ "חבילת־": [
+ {
+ "word_nikkud": "חֲבִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5115-chavila",
+ "gender": "feminine"
+ }
+ ],
+ "חבילות־": [
+ {
+ "word_nikkud": "חֲבִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5115-chavila",
+ "gender": "feminine"
+ }
+ ],
+ "חבל": [
+ {
+ "word_nikkud": "חֶבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8532-chevel",
+ "gender": "masculine"
+ }
+ ],
+ "חבלים": [
+ {
+ "word_nikkud": "חֶבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8532-chevel",
+ "gender": "masculine"
+ }
+ ],
+ "חבל־": [
+ {
+ "word_nikkud": "חֶבֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8532-chevel",
+ "gender": "masculine"
+ }
+ ],
+ "חבלי־": [
+ {
+ "word_nikkud": "חֶבֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8532-chevel",
+ "gender": "masculine"
+ }
+ ],
+ "מחבל": [
+ {
+ "word_nikkud": "מְחַבֵּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9027-mechabel",
+ "gender": "masculine"
+ }
+ ],
+ "מחבלים": [
+ {
+ "word_nikkud": "מְחַבֵּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9027-mechabel",
+ "gender": "masculine"
+ }
+ ],
+ "מחבל־": [
+ {
+ "word_nikkud": "מְחַבֵּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9027-mechabel",
+ "gender": "masculine"
+ }
+ ],
+ "מחבלי־": [
+ {
+ "word_nikkud": "מְחַבֵּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9027-mechabel",
+ "gender": "masculine"
+ }
+ ],
+ "חיבוק": [
+ {
+ "word_nikkud": "חִבּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8196-chibuk",
+ "gender": "masculine"
+ }
+ ],
+ "חיבוקים": [
+ {
+ "word_nikkud": "חִבּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8196-chibuk",
+ "gender": "masculine"
+ }
+ ],
+ "חיבוק־": [
+ {
+ "word_nikkud": "חִבּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8196-chibuk",
+ "gender": "masculine"
+ }
+ ],
+ "חיבוקי־": [
+ {
+ "word_nikkud": "חִבּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8196-chibuk",
+ "gender": "masculine"
+ }
+ ],
+ "חברה": [
+ {
+ "word_nikkud": "חֲבֵרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5531-chavera",
+ "gender": "feminine"
+ }
+ ],
+ "חברות": [
+ {
+ "word_nikkud": "חֲבֵרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5531-chavera",
+ "gender": "feminine"
+ }
+ ],
+ "חברת־": [
+ {
+ "word_nikkud": "חֲבֵרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5531-chavera",
+ "gender": "feminine"
+ }
+ ],
+ "חברות־": [
+ {
+ "word_nikkud": "חֲבֵרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5531-chavera",
+ "gender": "feminine"
+ }
+ ],
+ "התחברות": [
+ {
+ "word_nikkud": "הִתְחַבְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3010-hitchabrut",
+ "gender": "feminine"
+ }
+ ],
+ "התחברות־": [
+ {
+ "word_nikkud": "הִתְחַבְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3010-hitchabrut",
+ "gender": "feminine"
+ }
+ ],
+ "מחברת": [
+ {
+ "word_nikkud": "מַחְבֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3282-machberet",
+ "gender": "feminine"
+ }
+ ],
+ "מחברות": [
+ {
+ "word_nikkud": "מַחְבֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3282-machberet",
+ "gender": "feminine"
+ }
+ ],
+ "מחברת־": [
+ {
+ "word_nikkud": "מַחְבֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3282-machberet",
+ "gender": "feminine"
+ }
+ ],
+ "מחברות־": [
+ {
+ "word_nikkud": "מַחְבֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3282-machberet",
+ "gender": "feminine"
+ }
+ ],
+ "תחביר": [
+ {
+ "word_nikkud": "תַּחְבִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3607-tachbir",
+ "gender": "masculine"
+ }
+ ],
+ "תחבירים": [
+ {
+ "word_nikkud": "תַּחְבִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3607-tachbir",
+ "gender": "masculine"
+ }
+ ],
+ "תחביר־": [
+ {
+ "word_nikkud": "תַּחְבִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3607-tachbir",
+ "gender": "masculine"
+ }
+ ],
+ "תחבירי־": [
+ {
+ "word_nikkud": "תַּחְבִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3607-tachbir",
+ "gender": "masculine"
+ }
+ ],
+ "חבורה": [
+ {
+ "word_nikkud": "חֲבוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3887-chavura",
+ "gender": "feminine"
+ }
+ ],
+ "חבורות": [
+ {
+ "word_nikkud": "חֲבוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3887-chavura",
+ "gender": "feminine"
+ }
+ ],
+ "חבורת־": [
+ {
+ "word_nikkud": "חֲבוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3887-chavura",
+ "gender": "feminine"
+ }
+ ],
+ "חבורות־": [
+ {
+ "word_nikkud": "חֲבוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3887-chavura",
+ "gender": "feminine"
+ }
+ ],
+ "חבר": [
+ {
+ "word_nikkud": "חָבֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4744-chaver",
+ "gender": "masculine"
+ }
+ ],
+ "חברים": [
+ {
+ "word_nikkud": "חָבֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4744-chaver",
+ "gender": "masculine"
+ }
+ ],
+ "חבר־": [
+ {
+ "word_nikkud": "חָבֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4744-chaver",
+ "gender": "masculine"
+ }
+ ],
+ "חברי־": [
+ {
+ "word_nikkud": "חָבֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4744-chaver",
+ "gender": "masculine"
+ }
+ ],
+ "חיבור": [
+ {
+ "word_nikkud": "חִבּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4838-chibur",
+ "gender": "masculine"
+ }
+ ],
+ "חיבורים": [
+ {
+ "word_nikkud": "חִבּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4838-chibur",
+ "gender": "masculine"
+ }
+ ],
+ "חיבור־": [
+ {
+ "word_nikkud": "חִבּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4838-chibur",
+ "gender": "masculine"
+ }
+ ],
+ "חיבורי־": [
+ {
+ "word_nikkud": "חִבּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4838-chibur",
+ "gender": "masculine"
+ }
+ ],
+ "תחבורה": [
+ {
+ "word_nikkud": "תַּחְבּוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6228-tachbura",
+ "gender": "feminine"
+ }
+ ],
+ "תחבורת־": [
+ {
+ "word_nikkud": "תַּחְבּוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6228-tachbura",
+ "gender": "feminine"
+ }
+ ],
+ "חוברת": [
+ {
+ "word_nikkud": "חוֹבֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9199-choveret",
+ "gender": "feminine"
+ }
+ ],
+ "חוברות": [
+ {
+ "word_nikkud": "חוֹבֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9199-choveret",
+ "gender": "feminine"
+ }
+ ],
+ "חוברת־": [
+ {
+ "word_nikkud": "חוֹבֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9199-choveret",
+ "gender": "feminine"
+ }
+ ],
+ "חוברות־": [
+ {
+ "word_nikkud": "חוֹבֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9199-choveret",
+ "gender": "feminine"
+ }
+ ],
+ "חברת תעופה": [
+ {
+ "word_nikkud": "חֶבְרַת תְּעוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8651-chevrat-teufa",
+ "gender": ""
+ }
+ ],
+ "חברות תעופה": [
+ {
+ "word_nikkud": "חֶבְרַת תְּעוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8651-chevrat-teufa",
+ "gender": ""
+ }
+ ],
+ "חבישה": [
+ {
+ "word_nikkud": "חֲבִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7680-chavisha",
+ "gender": "masculine"
+ }
+ ],
+ "חבישות": [
+ {
+ "word_nikkud": "חֲבִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7680-chavisha",
+ "gender": "masculine"
+ }
+ ],
+ "חבישת־": [
+ {
+ "word_nikkud": "חֲבִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7680-chavisha",
+ "gender": "masculine"
+ }
+ ],
+ "חבישות־": [
+ {
+ "word_nikkud": "חֲבִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7680-chavisha",
+ "gender": "masculine"
+ }
+ ],
+ "חובש": [
+ {
+ "word_nikkud": "חוֹבֵשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6341-chovesh",
+ "gender": "masculine"
+ }
+ ],
+ "חובשים": [
+ {
+ "word_nikkud": "חוֹבֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6341-chovesh",
+ "gender": "masculine"
+ }
+ ],
+ "חובש־": [
+ {
+ "word_nikkud": "חוֹבֵשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6341-chovesh",
+ "gender": "masculine"
+ }
+ ],
+ "חובשי־": [
+ {
+ "word_nikkud": "חוֹבֵשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6341-chovesh",
+ "gender": "masculine"
+ }
+ ],
+ "חביתה": [
+ {
+ "word_nikkud": "חֲבִיתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5440-chavita",
+ "gender": "feminine"
+ }
+ ],
+ "חביתות": [
+ {
+ "word_nikkud": "חֲבִיתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5440-chavita",
+ "gender": "feminine"
+ }
+ ],
+ "חביתת־": [
+ {
+ "word_nikkud": "חֲבִיתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5440-chavita",
+ "gender": "feminine"
+ }
+ ],
+ "חביתות־": [
+ {
+ "word_nikkud": "חֲבִיתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5440-chavita",
+ "gender": "feminine"
+ }
+ ],
+ "מחבת": [
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ }
+ ],
+ "מחבתות": [
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ }
+ ],
+ "מחבת־": [
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ }
+ ],
+ "מחבתות־": [
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַחְבָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5439-machvat",
+ "gender": "feminine"
+ }
+ ],
+ "חגיגה": [
+ {
+ "word_nikkud": "חֲגִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4867-chagiga",
+ "gender": "feminine"
+ }
+ ],
+ "חגיגות": [
+ {
+ "word_nikkud": "חֲגִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4867-chagiga",
+ "gender": "feminine"
+ }
+ ],
+ "חגיגת־": [
+ {
+ "word_nikkud": "חֲגִיגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4867-chagiga",
+ "gender": "feminine"
+ }
+ ],
+ "חגיגות־": [
+ {
+ "word_nikkud": "חֲגִיגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4867-chagiga",
+ "gender": "feminine"
+ }
+ ],
+ "חג": [
+ {
+ "word_nikkud": "חַג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4868-chag",
+ "gender": "masculine"
+ }
+ ],
+ "חגים": [
+ {
+ "word_nikkud": "חַג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4868-chag",
+ "gender": "masculine"
+ }
+ ],
+ "חג־": [
+ {
+ "word_nikkud": "חַג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4868-chag",
+ "gender": "masculine"
+ }
+ ],
+ "חגי־": [
+ {
+ "word_nikkud": "חַג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4868-chag",
+ "gender": "masculine"
+ }
+ ],
+ "חגורה": [
+ {
+ "word_nikkud": "חֲגוֹרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5993-chagora",
+ "gender": "feminine"
+ }
+ ],
+ "חגורות": [
+ {
+ "word_nikkud": "חֲגוֹרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5993-chagora",
+ "gender": "feminine"
+ }
+ ],
+ "חגורת־": [
+ {
+ "word_nikkud": "חֲגוֹרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5993-chagora",
+ "gender": "feminine"
+ }
+ ],
+ "חגורות־": [
+ {
+ "word_nikkud": "חֲגוֹרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5993-chagora",
+ "gender": "feminine"
+ }
+ ],
+ "חדות": [
+ {
+ "word_nikkud": "חַדּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4501-chadut",
+ "gender": "feminine"
+ }
+ ],
+ "חדות־": [
+ {
+ "word_nikkud": "חַדּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4501-chadut",
+ "gender": "feminine"
+ }
+ ],
+ "חדווה": [
+ {
+ "word_nikkud": "חֶדְוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8894-chedva",
+ "gender": "feminine"
+ }
+ ],
+ "חדוות־": [
+ {
+ "word_nikkud": "חֶדְוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8894-chedva",
+ "gender": "feminine"
+ }
+ ],
+ "מחדל": [
+ {
+ "word_nikkud": "מֶחְדָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3969-mechdal",
+ "gender": "masculine"
+ }
+ ],
+ "מחדלים": [
+ {
+ "word_nikkud": "מֶחְדָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3969-mechdal",
+ "gender": "masculine"
+ }
+ ],
+ "מחדל־": [
+ {
+ "word_nikkud": "מֶחְדָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3969-mechdal",
+ "gender": "masculine"
+ }
+ ],
+ "מחדלי־": [
+ {
+ "word_nikkud": "מֶחְדָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3969-mechdal",
+ "gender": "masculine"
+ }
+ ],
+ "חידלון": [
+ {
+ "word_nikkud": "חִדָּלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8724-chidalon",
+ "gender": "masculine"
+ }
+ ],
+ "חדלונות": [
+ {
+ "word_nikkud": "חִדָּלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8724-chidalon",
+ "gender": "masculine"
+ }
+ ],
+ "חדלון־": [
+ {
+ "word_nikkud": "חִדָּלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8724-chidalon",
+ "gender": "masculine"
+ }
+ ],
+ "חדלונות־": [
+ {
+ "word_nikkud": "חִדָּלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8724-chidalon",
+ "gender": "masculine"
+ }
+ ],
+ "חדק": [
+ {
+ "word_nikkud": "חֵדֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5406-chedek",
+ "gender": "masculine"
+ }
+ ],
+ "חדקים": [
+ {
+ "word_nikkud": "חֵדֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5406-chedek",
+ "gender": "masculine"
+ }
+ ],
+ "חדק־": [
+ {
+ "word_nikkud": "חֵדֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5406-chedek",
+ "gender": "masculine"
+ }
+ ],
+ "חדקי־": [
+ {
+ "word_nikkud": "חֵדֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5406-chedek",
+ "gender": "masculine"
+ }
+ ],
+ "חדר": [
+ {
+ "word_nikkud": "חֶדֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3113-cheder",
+ "gender": "masculine"
+ }
+ ],
+ "חדרים": [
+ {
+ "word_nikkud": "חֶדֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3113-cheder",
+ "gender": "masculine"
+ }
+ ],
+ "חדר־": [
+ {
+ "word_nikkud": "חֶדֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3113-cheder",
+ "gender": "masculine"
+ }
+ ],
+ "חדרי־": [
+ {
+ "word_nikkud": "חֶדֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3113-cheder",
+ "gender": "masculine"
+ }
+ ],
+ "חדר אוכל": [
+ {
+ "word_nikkud": "חֶדֶר אֹכֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7438-cheder-ochel",
+ "gender": ""
+ }
+ ],
+ "חדרי אוכל": [
+ {
+ "word_nikkud": "חֶדֶר אֹכֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7438-cheder-ochel",
+ "gender": ""
+ }
+ ],
+ "חדר אמבטיה": [
+ {
+ "word_nikkud": "חֶדֶר אַמְבַּטְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6356-cheder-ambatya",
+ "gender": ""
+ }
+ ],
+ "חדרי אמבטיה": [
+ {
+ "word_nikkud": "חֶדֶר אַמְבַּטְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6356-cheder-ambatya",
+ "gender": ""
+ }
+ ],
+ "חדר כושר": [
+ {
+ "word_nikkud": "חֲדַר כֹּשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7674-chadar-kosher",
+ "gender": ""
+ }
+ ],
+ "חדרי כושר": [
+ {
+ "word_nikkud": "חֲדַר כֹּשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7674-chadar-kosher",
+ "gender": ""
+ }
+ ],
+ "חדר שינה": [
+ {
+ "word_nikkud": "חֲדַר שֵׁנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7661-chadar-shena",
+ "gender": ""
+ }
+ ],
+ "חדרי שינה": [
+ {
+ "word_nikkud": "חֲדַר שֵׁנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7661-chadar-shena",
+ "gender": ""
+ }
+ ],
+ "חודש": [
+ {
+ "word_nikkud": "חֹדֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3208-chodesh",
+ "gender": "masculine"
+ }
+ ],
+ "חודשים": [
+ {
+ "word_nikkud": "חֹדֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3208-chodesh",
+ "gender": "masculine"
+ }
+ ],
+ "חודש־": [
+ {
+ "word_nikkud": "חֹדֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3208-chodesh",
+ "gender": "masculine"
+ }
+ ],
+ "חודשי־": [
+ {
+ "word_nikkud": "חֹדֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3208-chodesh",
+ "gender": "masculine"
+ }
+ ],
+ "התחדשות": [
+ {
+ "word_nikkud": "הִתְחַדְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3013-hitchadshut",
+ "gender": "feminine"
+ }
+ ],
+ "התחדשות־": [
+ {
+ "word_nikkud": "הִתְחַדְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3013-hitchadshut",
+ "gender": "feminine"
+ }
+ ],
+ "חדשן": [
+ {
+ "word_nikkud": "חַדְשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4495-chadshan",
+ "gender": "masculine"
+ }
+ ],
+ "חדשנים": [
+ {
+ "word_nikkud": "חַדְשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4495-chadshan",
+ "gender": "masculine"
+ }
+ ],
+ "חדשן־": [
+ {
+ "word_nikkud": "חַדְשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4495-chadshan",
+ "gender": "masculine"
+ }
+ ],
+ "חדשני־": [
+ {
+ "word_nikkud": "חַדְשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4495-chadshan",
+ "gender": "masculine"
+ }
+ ],
+ "חודשיים": [
+ {
+ "word_nikkud": "חָדְשַׁיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5094-chodshayim",
+ "gender": "masculine"
+ }
+ ],
+ "חידוש": [
+ {
+ "word_nikkud": "חִדּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9046-chidush",
+ "gender": "masculine"
+ }
+ ],
+ "חידושים": [
+ {
+ "word_nikkud": "חִדּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9046-chidush",
+ "gender": "masculine"
+ }
+ ],
+ "חידוש־": [
+ {
+ "word_nikkud": "חִדּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9046-chidush",
+ "gender": "masculine"
+ }
+ ],
+ "חידושי־": [
+ {
+ "word_nikkud": "חִדּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9046-chidush",
+ "gender": "masculine"
+ }
+ ],
+ "תחדיש": [
+ {
+ "word_nikkud": "תַּחְדִּישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7137-tachdish",
+ "gender": "masculine"
+ }
+ ],
+ "תחדישים": [
+ {
+ "word_nikkud": "תַּחְדִּישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7137-tachdish",
+ "gender": "masculine"
+ }
+ ],
+ "תחדיש־": [
+ {
+ "word_nikkud": "תַּחְדִּישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7137-tachdish",
+ "gender": "masculine"
+ }
+ ],
+ "תחדישי־": [
+ {
+ "word_nikkud": "תַּחְדִּישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7137-tachdish",
+ "gender": "masculine"
+ }
+ ],
+ "מחוגה": [
+ {
+ "word_nikkud": "מְחוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3750-mechuga",
+ "gender": "feminine"
+ }
+ ],
+ "מחוגות": [
+ {
+ "word_nikkud": "מְחוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3750-mechuga",
+ "gender": "feminine"
+ }
+ ],
+ "מחוגת־": [
+ {
+ "word_nikkud": "מְחוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3750-mechuga",
+ "gender": "feminine"
+ }
+ ],
+ "מחוגות־": [
+ {
+ "word_nikkud": "מְחוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3750-mechuga",
+ "gender": "feminine"
+ }
+ ],
+ "מחוג": [
+ {
+ "word_nikkud": "מָחוֹג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7811-machog",
+ "gender": "masculine"
+ }
+ ],
+ "מחוגים": [
+ {
+ "word_nikkud": "מָחוֹג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7811-machog",
+ "gender": "masculine"
+ }
+ ],
+ "מחוג־": [
+ {
+ "word_nikkud": "מָחוֹג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7811-machog",
+ "gender": "masculine"
+ }
+ ],
+ "מחוגי־": [
+ {
+ "word_nikkud": "מָחוֹג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7811-machog",
+ "gender": "masculine"
+ }
+ ],
+ "חידה": [
+ {
+ "word_nikkud": "חִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4837-chida",
+ "gender": "feminine"
+ }
+ ],
+ "חידות": [
+ {
+ "word_nikkud": "חִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4837-chida",
+ "gender": "feminine"
+ }
+ ],
+ "חידת־": [
+ {
+ "word_nikkud": "חִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4837-chida",
+ "gender": "feminine"
+ }
+ ],
+ "חידות־": [
+ {
+ "word_nikkud": "חִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4837-chida",
+ "gender": "feminine"
+ }
+ ],
+ "חידון": [
+ {
+ "word_nikkud": "חִידוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7460-chidon",
+ "gender": "masculine"
+ }
+ ],
+ "חידונים": [
+ {
+ "word_nikkud": "חִידוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7460-chidon",
+ "gender": "masculine"
+ }
+ ],
+ "חידון־": [
+ {
+ "word_nikkud": "חִידוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7460-chidon",
+ "gender": "masculine"
+ }
+ ],
+ "חידוני־": [
+ {
+ "word_nikkud": "חִידוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7460-chidon",
+ "gender": "masculine"
+ }
+ ],
+ "חווה": [
+ {
+ "word_nikkud": "חַוָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7412-chava",
+ "gender": "feminine"
+ }
+ ],
+ "חוות": [
+ {
+ "word_nikkud": "חַוָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7412-chava",
+ "gender": "feminine"
+ }
+ ],
+ "חוות־": [
+ {
+ "word_nikkud": "חַוָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7412-chava",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חַוָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7412-chava",
+ "gender": "feminine"
+ }
+ ],
+ "מחוז": [
+ {
+ "word_nikkud": "מָחוֹז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7151-machoz",
+ "gender": "masculine"
+ }
+ ],
+ "מחוזות": [
+ {
+ "word_nikkud": "מָחוֹז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7151-machoz",
+ "gender": "masculine"
+ }
+ ],
+ "מחוז־": [
+ {
+ "word_nikkud": "מָחוֹז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7151-machoz",
+ "gender": "masculine"
+ }
+ ],
+ "מחוזות־": [
+ {
+ "word_nikkud": "מָחוֹז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7151-machoz",
+ "gender": "masculine"
+ }
+ ],
+ "חוח": [
+ {
+ "word_nikkud": "חוֹחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7054-choach",
+ "gender": ""
+ }
+ ],
+ "חוחים": [
+ {
+ "word_nikkud": "חוֹחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7054-choach",
+ "gender": ""
+ }
+ ],
+ "חוח־": [
+ {
+ "word_nikkud": "חוֹחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7054-choach",
+ "gender": ""
+ }
+ ],
+ "חוחי־": [
+ {
+ "word_nikkud": "חוֹחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7054-choach",
+ "gender": ""
+ }
+ ],
+ "חוט": [
+ {
+ "word_nikkud": "חוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5342-chut",
+ "gender": "masculine"
+ }
+ ],
+ "חוטים": [
+ {
+ "word_nikkud": "חוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5342-chut",
+ "gender": "masculine"
+ }
+ ],
+ "חוט־": [
+ {
+ "word_nikkud": "חוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5342-chut",
+ "gender": "masculine"
+ }
+ ],
+ "חוטי־": [
+ {
+ "word_nikkud": "חוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5342-chut",
+ "gender": "masculine"
+ }
+ ],
+ "חוויה": [
+ {
+ "word_nikkud": "חֲוָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3066-chavaya",
+ "gender": "feminine"
+ }
+ ],
+ "חוויות": [
+ {
+ "word_nikkud": "חֲוָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3066-chavaya",
+ "gender": "feminine"
+ }
+ ],
+ "חוויית־": [
+ {
+ "word_nikkud": "חֲוָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3066-chavaya",
+ "gender": "feminine"
+ }
+ ],
+ "חוויות־": [
+ {
+ "word_nikkud": "חֲוָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3066-chavaya",
+ "gender": "feminine"
+ }
+ ],
+ "מחווה": [
+ {
+ "word_nikkud": "מַחֲוֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4047-machave",
+ "gender": "masculine"
+ }
+ ],
+ "מחווים": [
+ {
+ "word_nikkud": "מַחֲוֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4047-machave",
+ "gender": "masculine"
+ }
+ ],
+ "מחווה־": [
+ {
+ "word_nikkud": "מַחֲוֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4047-machave",
+ "gender": "masculine"
+ }
+ ],
+ "מחווי־": [
+ {
+ "word_nikkud": "מַחֲוֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4047-machave",
+ "gender": "masculine"
+ }
+ ],
+ "חול": [
+ {
+ "word_nikkud": "חוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7179-chol",
+ "gender": "masculine"
+ }
+ ],
+ "חולות": [
+ {
+ "word_nikkud": "חוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7179-chol",
+ "gender": "masculine"
+ }
+ ],
+ "חול־": [
+ {
+ "word_nikkud": "חוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7179-chol",
+ "gender": "masculine"
+ }
+ ],
+ "חולות־": [
+ {
+ "word_nikkud": "חוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7179-chol",
+ "gender": "masculine"
+ }
+ ],
+ "חומה": [
+ {
+ "word_nikkud": "חוֹמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4373-choma",
+ "gender": "feminine"
+ }
+ ],
+ "חומות": [
+ {
+ "word_nikkud": "חוֹמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4373-choma",
+ "gender": "feminine"
+ }
+ ],
+ "חומת־": [
+ {
+ "word_nikkud": "חוֹמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4373-choma",
+ "gender": "feminine"
+ }
+ ],
+ "חומות־": [
+ {
+ "word_nikkud": "חוֹמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4373-choma",
+ "gender": "feminine"
+ }
+ ],
+ "חומוס": [
+ {
+ "word_nikkud": "חוּמוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5876-chumus",
+ "gender": "masculine"
+ }
+ ],
+ "חומוס־": [
+ {
+ "word_nikkud": "חוּמוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5876-chumus",
+ "gender": "masculine"
+ }
+ ],
+ "חוף": [
+ {
+ "word_nikkud": "חוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7067-chof",
+ "gender": "masculine"
+ }
+ ],
+ "חופים": [
+ {
+ "word_nikkud": "חוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7067-chof",
+ "gender": "masculine"
+ }
+ ],
+ "חוף־": [
+ {
+ "word_nikkud": "חוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7067-chof",
+ "gender": "masculine"
+ }
+ ],
+ "חופי־": [
+ {
+ "word_nikkud": "חוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7067-chof",
+ "gender": "masculine"
+ }
+ ],
+ "חוץ": [
+ {
+ "word_nikkud": "חוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6550-chutz",
+ "gender": ""
+ }
+ ],
+ "חוץ־": [
+ {
+ "word_nikkud": "חוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6550-chutz",
+ "gender": ""
+ }
+ ],
+ "חיוורון": [
+ {
+ "word_nikkud": "חִוָּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9012-chivaron",
+ "gender": "masculine"
+ }
+ ],
+ "חיוורון־": [
+ {
+ "word_nikkud": "חִוָּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9012-chivaron",
+ "gender": "masculine"
+ }
+ ],
+ "תחושה": [
+ {
+ "word_nikkud": "תְּחוּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3738-tchusha",
+ "gender": "feminine"
+ }
+ ],
+ "תחושות": [
+ {
+ "word_nikkud": "תְּחוּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3738-tchusha",
+ "gender": "feminine"
+ }
+ ],
+ "תחושת־": [
+ {
+ "word_nikkud": "תְּחוּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3738-tchusha",
+ "gender": "feminine"
+ }
+ ],
+ "תחושות־": [
+ {
+ "word_nikkud": "תְּחוּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3738-tchusha",
+ "gender": "feminine"
+ }
+ ],
+ "חוש": [
+ {
+ "word_nikkud": "חוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9272-chush",
+ "gender": ""
+ }
+ ],
+ "חושים": [
+ {
+ "word_nikkud": "חוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9272-chush",
+ "gender": ""
+ }
+ ],
+ "חוש־": [
+ {
+ "word_nikkud": "חוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9272-chush",
+ "gender": ""
+ }
+ ],
+ "חושי־": [
+ {
+ "word_nikkud": "חוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9272-chush",
+ "gender": ""
+ }
+ ],
+ "חזה": [
+ {
+ "word_nikkud": "חָזֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5589-chaze",
+ "gender": "masculine"
+ }
+ ],
+ "חזות": [
+ {
+ "word_nikkud": "חָזֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5589-chaze",
+ "gender": "masculine"
+ }
+ ],
+ "חזה־": [
+ {
+ "word_nikkud": "חָזֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5589-chaze",
+ "gender": "masculine"
+ }
+ ],
+ "חזות־": [
+ {
+ "word_nikkud": "חָזֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5589-chaze",
+ "gender": "masculine"
+ }
+ ],
+ "תחזית": [
+ {
+ "word_nikkud": "תַּחֲזִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5910-tachazit",
+ "gender": "feminine"
+ }
+ ],
+ "תחזיות": [
+ {
+ "word_nikkud": "תַּחֲזִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5910-tachazit",
+ "gender": "feminine"
+ }
+ ],
+ "תחזית־": [
+ {
+ "word_nikkud": "תַּחֲזִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5910-tachazit",
+ "gender": "feminine"
+ }
+ ],
+ "תחזיות־": [
+ {
+ "word_nikkud": "תַּחֲזִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5910-tachazit",
+ "gender": "feminine"
+ }
+ ],
+ "חזית": [
+ {
+ "word_nikkud": "חֲזִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5627-chazit",
+ "gender": "feminine"
+ }
+ ],
+ "חזיתות": [
+ {
+ "word_nikkud": "חֲזִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5627-chazit",
+ "gender": "feminine"
+ }
+ ],
+ "חזית־": [
+ {
+ "word_nikkud": "חֲזִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5627-chazit",
+ "gender": "feminine"
+ }
+ ],
+ "חזיתות־": [
+ {
+ "word_nikkud": "חֲזִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5627-chazit",
+ "gender": "feminine"
+ }
+ ],
+ "התחזות": [
+ {
+ "word_nikkud": "הִתְחַזּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5823-hitchazut",
+ "gender": "feminine"
+ }
+ ],
+ "התחזויות": [
+ {
+ "word_nikkud": "הִתְחַזּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5823-hitchazut",
+ "gender": "feminine"
+ }
+ ],
+ "התחזות־": [
+ {
+ "word_nikkud": "הִתְחַזּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5823-hitchazut",
+ "gender": "feminine"
+ }
+ ],
+ "התחזויות־": [
+ {
+ "word_nikkud": "הִתְחַזּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5823-hitchazut",
+ "gender": "feminine"
+ }
+ ],
+ "מחזה": [
+ {
+ "word_nikkud": "מַחֲזֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4831-machaze",
+ "gender": "masculine"
+ }
+ ],
+ "מחזות": [
+ {
+ "word_nikkud": "מַחֲזֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4831-machaze",
+ "gender": "masculine"
+ }
+ ],
+ "מחזה־": [
+ {
+ "word_nikkud": "מַחֲזֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4831-machaze",
+ "gender": "masculine"
+ }
+ ],
+ "מחזות־": [
+ {
+ "word_nikkud": "מַחֲזֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4831-machaze",
+ "gender": "masculine"
+ }
+ ],
+ "חוזה": [
+ {
+ "word_nikkud": "חוֹזֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4832-choze",
+ "gender": "masculine"
+ }
+ ],
+ "חוזים": [
+ {
+ "word_nikkud": "חוֹזֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4832-choze",
+ "gender": "masculine"
+ }
+ ],
+ "חוזה־": [
+ {
+ "word_nikkud": "חוֹזֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4832-choze",
+ "gender": "masculine"
+ }
+ ],
+ "חוזי־": [
+ {
+ "word_nikkud": "חוֹזֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4832-choze",
+ "gender": "masculine"
+ }
+ ],
+ "חזון": [
+ {
+ "word_nikkud": "חָזוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7833-chazon",
+ "gender": "masculine"
+ }
+ ],
+ "חזונות": [
+ {
+ "word_nikkud": "חָזוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7833-chazon",
+ "gender": "masculine"
+ }
+ ],
+ "חזון־": [
+ {
+ "word_nikkud": "חָזוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7833-chazon",
+ "gender": "masculine"
+ }
+ ],
+ "חזונות־": [
+ {
+ "word_nikkud": "חָזוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7833-chazon",
+ "gender": "masculine"
+ }
+ ],
+ "מחזאי": [
+ {
+ "word_nikkud": "מַחֲזַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9129-machazay",
+ "gender": "masculine"
+ }
+ ],
+ "מחזאים": [
+ {
+ "word_nikkud": "מַחֲזַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9129-machazay",
+ "gender": "masculine"
+ }
+ ],
+ "מחזאי־": [
+ {
+ "word_nikkud": "מַחֲזַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9129-machazay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַחֲזַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9129-machazay",
+ "gender": "masculine"
+ }
+ ],
+ "חיזיון": [
+ {
+ "word_nikkud": "חִזָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7277-chizayon",
+ "gender": "masculine"
+ }
+ ],
+ "חזיונות": [
+ {
+ "word_nikkud": "חִזָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7277-chizayon",
+ "gender": "masculine"
+ }
+ ],
+ "חזיון־": [
+ {
+ "word_nikkud": "חִזָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7277-chizayon",
+ "gender": "masculine"
+ }
+ ],
+ "חזיונות־": [
+ {
+ "word_nikkud": "חִזָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7277-chizayon",
+ "gender": "masculine"
+ }
+ ],
+ "חזייה": [
+ {
+ "word_nikkud": "חֲזִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5605-chaziya",
+ "gender": "masculine"
+ }
+ ],
+ "חזיות": [
+ {
+ "word_nikkud": "חֲזִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5605-chaziya",
+ "gender": "masculine"
+ }
+ ],
+ "חזיית־": [
+ {
+ "word_nikkud": "חֲזִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5605-chaziya",
+ "gender": "masculine"
+ }
+ ],
+ "חזיות־": [
+ {
+ "word_nikkud": "חֲזִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5605-chaziya",
+ "gender": "masculine"
+ }
+ ],
+ "חזיר": [
+ {
+ "word_nikkud": "חֲזִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5491-chazir",
+ "gender": "masculine"
+ }
+ ],
+ "חזירים": [
+ {
+ "word_nikkud": "חֲזִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5491-chazir",
+ "gender": "masculine"
+ }
+ ],
+ "חזיר־": [
+ {
+ "word_nikkud": "חֲזִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5491-chazir",
+ "gender": "masculine"
+ }
+ ],
+ "חזירי־": [
+ {
+ "word_nikkud": "חֲזִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5491-chazir",
+ "gender": "masculine"
+ }
+ ],
+ "חזיר בר": [
+ {
+ "word_nikkud": "חֲזִיר בָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9204-chazir-bar",
+ "gender": ""
+ }
+ ],
+ "חזירי בר": [
+ {
+ "word_nikkud": "חֲזִיר בָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9204-chazir-bar",
+ "gender": ""
+ }
+ ],
+ "חזן": [
+ {
+ "word_nikkud": "חַזָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8772-chazan",
+ "gender": "masculine"
+ }
+ ],
+ "חזנים": [
+ {
+ "word_nikkud": "חַזָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8772-chazan",
+ "gender": "masculine"
+ }
+ ],
+ "חזן־": [
+ {
+ "word_nikkud": "חַזָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8772-chazan",
+ "gender": "masculine"
+ }
+ ],
+ "חזני־": [
+ {
+ "word_nikkud": "חַזָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8772-chazan",
+ "gender": "masculine"
+ }
+ ],
+ "החזקה": [
+ {
+ "word_nikkud": "הַחְזָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8287-hachzaka",
+ "gender": "feminine"
+ }
+ ],
+ "החזקות": [
+ {
+ "word_nikkud": "הַחְזָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8287-hachzaka",
+ "gender": "feminine"
+ }
+ ],
+ "החזקת־": [
+ {
+ "word_nikkud": "הַחְזָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8287-hachzaka",
+ "gender": "feminine"
+ }
+ ],
+ "החזקות־": [
+ {
+ "word_nikkud": "הַחְזָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8287-hachzaka",
+ "gender": "feminine"
+ }
+ ],
+ "חיזוק": [
+ {
+ "word_nikkud": "חִזּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7681-chizuk",
+ "gender": "masculine"
+ }
+ ],
+ "חיזוקים": [
+ {
+ "word_nikkud": "חִזּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7681-chizuk",
+ "gender": "masculine"
+ }
+ ],
+ "חיזוק־": [
+ {
+ "word_nikkud": "חִזּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7681-chizuk",
+ "gender": "masculine"
+ }
+ ],
+ "חיזוקי־": [
+ {
+ "word_nikkud": "חִזּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7681-chizuk",
+ "gender": "masculine"
+ }
+ ],
+ "חוזק": [
+ {
+ "word_nikkud": "חֹזֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3831-chozek",
+ "gender": "masculine"
+ }
+ ],
+ "חוזק־": [
+ {
+ "word_nikkud": "חֹזֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3831-chozek",
+ "gender": "masculine"
+ }
+ ],
+ "חזקה": [
+ {
+ "word_nikkud": "חֲזָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3829-chazaka",
+ "gender": "feminine"
+ }
+ ],
+ "חזקות": [
+ {
+ "word_nikkud": "חֲזָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3829-chazaka",
+ "gender": "feminine"
+ }
+ ],
+ "חזקת־": [
+ {
+ "word_nikkud": "חֲזָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3829-chazaka",
+ "gender": "feminine"
+ }
+ ],
+ "חזקות־": [
+ {
+ "word_nikkud": "חֲזָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3829-chazaka",
+ "gender": "feminine"
+ }
+ ],
+ "אחזקה": [
+ {
+ "word_nikkud": "אַחְזָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9222-achzaka",
+ "gender": "feminine"
+ }
+ ],
+ "אחזקות": [
+ {
+ "word_nikkud": "אַחְזָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9222-achzaka",
+ "gender": "feminine"
+ }
+ ],
+ "אחזקת־": [
+ {
+ "word_nikkud": "אַחְזָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9222-achzaka",
+ "gender": "feminine"
+ }
+ ],
+ "אחזקות־": [
+ {
+ "word_nikkud": "אַחְזָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9222-achzaka",
+ "gender": "feminine"
+ }
+ ],
+ "תחזוקה": [
+ {
+ "word_nikkud": "תַּחְזוּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7149-tachzuka",
+ "gender": "feminine"
+ }
+ ],
+ "תחזוקות": [
+ {
+ "word_nikkud": "תַּחְזוּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7149-tachzuka",
+ "gender": "feminine"
+ }
+ ],
+ "תחזוקת־": [
+ {
+ "word_nikkud": "תַּחְזוּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7149-tachzuka",
+ "gender": "feminine"
+ }
+ ],
+ "תחזוקות־": [
+ {
+ "word_nikkud": "תַּחְזוּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7149-tachzuka",
+ "gender": "feminine"
+ }
+ ],
+ "חיזור": [
+ {
+ "word_nikkud": "חִזּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8260-chizur",
+ "gender": "masculine"
+ }
+ ],
+ "חיזורים": [
+ {
+ "word_nikkud": "חִזּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8260-chizur",
+ "gender": "masculine"
+ }
+ ],
+ "חיזור־": [
+ {
+ "word_nikkud": "חִזּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8260-chizur",
+ "gender": "masculine"
+ }
+ ],
+ "חיזורי־": [
+ {
+ "word_nikkud": "חִזּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8260-chizur",
+ "gender": "masculine"
+ }
+ ],
+ "החזר": [
+ {
+ "word_nikkud": "הֶחְזֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2932-hechzer",
+ "gender": "masculine"
+ }
+ ],
+ "החזרים": [
+ {
+ "word_nikkud": "הֶחְזֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2932-hechzer",
+ "gender": "masculine"
+ }
+ ],
+ "החזר־": [
+ {
+ "word_nikkud": "הֶחְזֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2932-hechzer",
+ "gender": "masculine"
+ }
+ ],
+ "החזרי־": [
+ {
+ "word_nikkud": "הֶחְזֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2932-hechzer",
+ "gender": "masculine"
+ }
+ ],
+ "מחזור": [
+ {
+ "word_nikkud": "מִחְזוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7168-michzur",
+ "gender": "masculine"
+ }
+ ],
+ "מחזורים": [
+ {
+ "word_nikkud": "מִחְזוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7168-michzur",
+ "gender": "masculine"
+ }
+ ],
+ "מחזור־": [
+ {
+ "word_nikkud": "מִחְזוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7168-michzur",
+ "gender": "masculine"
+ }
+ ],
+ "מחזורי־": [
+ {
+ "word_nikkud": "מִחְזוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7168-michzur",
+ "gender": "masculine"
+ }
+ ],
+ "חזרה": [
+ {
+ "word_nikkud": "חֲזָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7801-chazara",
+ "gender": "feminine"
+ }
+ ],
+ "חזרות": [
+ {
+ "word_nikkud": "חֲזָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7801-chazara",
+ "gender": "feminine"
+ }
+ ],
+ "חזרת־": [
+ {
+ "word_nikkud": "חֲזָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7801-chazara",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חַזֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8988-chazeret",
+ "gender": "feminine"
+ }
+ ],
+ "חזרות־": [
+ {
+ "word_nikkud": "חֲזָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7801-chazara",
+ "gender": "feminine"
+ }
+ ],
+ "חזרת": [
+ {
+ "word_nikkud": "חַזֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8988-chazeret",
+ "gender": "feminine"
+ }
+ ],
+ "חטא": [
+ {
+ "word_nikkud": "חֶטְא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7263-chet",
+ "gender": ""
+ }
+ ],
+ "חטאים": [
+ {
+ "word_nikkud": "חֶטְא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7263-chet",
+ "gender": ""
+ }
+ ],
+ "חטא־": [
+ {
+ "word_nikkud": "חֶטְא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7263-chet",
+ "gender": ""
+ }
+ ],
+ "חטאי־": [
+ {
+ "word_nikkud": "חֶטְא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7263-chet",
+ "gender": ""
+ }
+ ],
+ "חטיבה": [
+ {
+ "word_nikkud": "חֲטִיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8064-chativa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיבות": [
+ {
+ "word_nikkud": "חֲטִיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8064-chativa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיבת־": [
+ {
+ "word_nikkud": "חֲטִיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8064-chativa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיבות־": [
+ {
+ "word_nikkud": "חֲטִיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8064-chativa",
+ "gender": "feminine"
+ }
+ ],
+ "חט": [
+ {
+ "word_nikkud": "חֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8845-chet",
+ "gender": "masculine"
+ }
+ ],
+ "חיטים": [
+ {
+ "word_nikkud": "חֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8845-chet",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חִטָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7931-chita",
+ "gender": "feminine"
+ }
+ ],
+ "חט־": [
+ {
+ "word_nikkud": "חֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8845-chet",
+ "gender": "masculine"
+ }
+ ],
+ "חיטי־": [
+ {
+ "word_nikkud": "חֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8845-chet",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חִטָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7931-chita",
+ "gender": "feminine"
+ }
+ ],
+ "חטט": [
+ {
+ "word_nikkud": "חָטָט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9052-chatat",
+ "gender": "masculine"
+ }
+ ],
+ "חטטים": [
+ {
+ "word_nikkud": "חָטָט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9052-chatat",
+ "gender": "masculine"
+ }
+ ],
+ "חטט־": [
+ {
+ "word_nikkud": "חָטָט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9052-chatat",
+ "gender": "masculine"
+ }
+ ],
+ "חטטי־": [
+ {
+ "word_nikkud": "חָטָט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9052-chatat",
+ "gender": "masculine"
+ }
+ ],
+ "חטיפה": [
+ {
+ "word_nikkud": "חֲטִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8652-chatifa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיפות": [
+ {
+ "word_nikkud": "חֲטִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8652-chatifa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיפת־": [
+ {
+ "word_nikkud": "חֲטִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8652-chatifa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיפות־": [
+ {
+ "word_nikkud": "חֲטִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8652-chatifa",
+ "gender": "feminine"
+ }
+ ],
+ "חטיף": [
+ {
+ "word_nikkud": "חָטִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7224-chatif",
+ "gender": "masculine"
+ }
+ ],
+ "חטיפים": [
+ {
+ "word_nikkud": "חָטִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7224-chatif",
+ "gender": "masculine"
+ }
+ ],
+ "חטיף־": [
+ {
+ "word_nikkud": "חָטִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7224-chatif",
+ "gender": "masculine"
+ }
+ ],
+ "חטיפי־": [
+ {
+ "word_nikkud": "חָטִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7224-chatif",
+ "gender": "masculine"
+ }
+ ],
+ "החייאה": [
+ {
+ "word_nikkud": "הַחְיָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8777-hachyaa",
+ "gender": "feminine"
+ }
+ ],
+ "החייאות": [
+ {
+ "word_nikkud": "הַחְיָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8777-hachyaa",
+ "gender": "feminine"
+ }
+ ],
+ "החייאת־": [
+ {
+ "word_nikkud": "הַחְיָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8777-hachyaa",
+ "gender": "feminine"
+ }
+ ],
+ "החייאות־": [
+ {
+ "word_nikkud": "הַחְיָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8777-hachyaa",
+ "gender": "feminine"
+ }
+ ],
+ "חובה": [
+ {
+ "word_nikkud": "חוֹבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5417-chova",
+ "gender": "feminine"
+ }
+ ],
+ "חובות": [
+ {
+ "word_nikkud": "חוֹבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5417-chova",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חוֹב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4516-chov",
+ "gender": "masculine"
+ }
+ ],
+ "חובת־": [
+ {
+ "word_nikkud": "חוֹבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5417-chova",
+ "gender": "feminine"
+ }
+ ],
+ "חובות־": [
+ {
+ "word_nikkud": "חוֹבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5417-chova",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חוֹב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4516-chov",
+ "gender": "masculine"
+ }
+ ],
+ "חייב": [
+ {
+ "word_nikkud": "חַיָּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3050-chayav",
+ "gender": "masculine"
+ }
+ ],
+ "חייבים": [
+ {
+ "word_nikkud": "חַיָּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3050-chayav",
+ "gender": "masculine"
+ }
+ ],
+ "חייב־": [
+ {
+ "word_nikkud": "חַיָּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3050-chayav",
+ "gender": "masculine"
+ }
+ ],
+ "חייבי־": [
+ {
+ "word_nikkud": "חַיָּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3050-chayav",
+ "gender": "masculine"
+ }
+ ],
+ "חוב": [
+ {
+ "word_nikkud": "חוֹב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4516-chov",
+ "gender": "masculine"
+ }
+ ],
+ "חוב־": [
+ {
+ "word_nikkud": "חוֹב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4516-chov",
+ "gender": "masculine"
+ }
+ ],
+ "חיוב": [
+ {
+ "word_nikkud": "חִיּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4518-chiyuv",
+ "gender": "masculine"
+ }
+ ],
+ "חיובים": [
+ {
+ "word_nikkud": "חִיּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4518-chiyuv",
+ "gender": "masculine"
+ }
+ ],
+ "חיוב־": [
+ {
+ "word_nikkud": "חִיּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4518-chiyuv",
+ "gender": "masculine"
+ }
+ ],
+ "חיובי־": [
+ {
+ "word_nikkud": "חִיּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4518-chiyuv",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חִיּוּבִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4519-chiyuvi",
+ "gender": "masculine"
+ }
+ ],
+ "חיובי": [
+ {
+ "word_nikkud": "חִיּוּבִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4519-chiyuvi",
+ "gender": "masculine"
+ }
+ ],
+ "חיוביים": [
+ {
+ "word_nikkud": "חִיּוּבִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4519-chiyuvi",
+ "gender": "masculine"
+ }
+ ],
+ "חיוביי־": [
+ {
+ "word_nikkud": "חִיּוּבִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4519-chiyuvi",
+ "gender": "masculine"
+ }
+ ],
+ "התחייבות": [
+ {
+ "word_nikkud": "הִתְחַיְּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3011-hitchayvut",
+ "gender": "feminine"
+ }
+ ],
+ "התחייבויות": [
+ {
+ "word_nikkud": "הִתְחַיְּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3011-hitchayvut",
+ "gender": "feminine"
+ }
+ ],
+ "התחייבות־": [
+ {
+ "word_nikkud": "הִתְחַיְּבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3011-hitchayvut",
+ "gender": "feminine"
+ }
+ ],
+ "התחייבויות־": [
+ {
+ "word_nikkud": "הִתְחַיְּבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3011-hitchayvut",
+ "gender": "feminine"
+ }
+ ],
+ "מחויבות": [
+ {
+ "word_nikkud": "מְחֻיָּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5419-mechuyavut",
+ "gender": "feminine"
+ }
+ ],
+ "מחויבויות": [
+ {
+ "word_nikkud": "מְחֻיָּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5419-mechuyavut",
+ "gender": "feminine"
+ }
+ ],
+ "מחויבות־": [
+ {
+ "word_nikkud": "מְחֻיָּבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5419-mechuyavut",
+ "gender": "feminine"
+ }
+ ],
+ "מחויבויות־": [
+ {
+ "word_nikkud": "מְחֻיָּבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5419-mechuyavut",
+ "gender": "feminine"
+ }
+ ],
+ "חיוג": [
+ {
+ "word_nikkud": "חִיּוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8520-chiyug",
+ "gender": "masculine"
+ }
+ ],
+ "חיוגים": [
+ {
+ "word_nikkud": "חִיּוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8520-chiyug",
+ "gender": "masculine"
+ }
+ ],
+ "חיוג־": [
+ {
+ "word_nikkud": "חִיּוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8520-chiyug",
+ "gender": "masculine"
+ }
+ ],
+ "חיוגי־": [
+ {
+ "word_nikkud": "חִיּוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8520-chiyug",
+ "gender": "masculine"
+ }
+ ],
+ "חייט": [
+ {
+ "word_nikkud": "חַיָּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5345-chayat",
+ "gender": "masculine"
+ }
+ ],
+ "חייטים": [
+ {
+ "word_nikkud": "חַיָּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5345-chayat",
+ "gender": "masculine"
+ }
+ ],
+ "חייט־": [
+ {
+ "word_nikkud": "חַיָּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5345-chayat",
+ "gender": "masculine"
+ }
+ ],
+ "חייטי־": [
+ {
+ "word_nikkud": "חַיָּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5345-chayat",
+ "gender": "masculine"
+ }
+ ],
+ "חיות": [
+ {
+ "word_nikkud": "חִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3809-chiyut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חַיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5214-chaya",
+ "gender": "feminine"
+ }
+ ],
+ "חיות־": [
+ {
+ "word_nikkud": "חִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3809-chiyut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חַיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5214-chaya",
+ "gender": "feminine"
+ }
+ ],
+ "תחייה": [
+ {
+ "word_nikkud": "תְּחִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3794-tchiya",
+ "gender": "feminine"
+ }
+ ],
+ "תחייות": [
+ {
+ "word_nikkud": "תְּחִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3794-tchiya",
+ "gender": "feminine"
+ }
+ ],
+ "תחיית־": [
+ {
+ "word_nikkud": "תְּחִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3794-tchiya",
+ "gender": "feminine"
+ }
+ ],
+ "תחייות־": [
+ {
+ "word_nikkud": "תְּחִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3794-tchiya",
+ "gender": "feminine"
+ }
+ ],
+ "חיים": [
+ {
+ "word_nikkud": "חַיִּים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2654-chayim",
+ "gender": "masculine"
+ }
+ ],
+ "חיי־": [
+ {
+ "word_nikkud": "חַיִּים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2654-chayim",
+ "gender": "masculine"
+ }
+ ],
+ "מחיה": [
+ {
+ "word_nikkud": "מִחְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3761-michya",
+ "gender": "feminine"
+ }
+ ],
+ "מחיית־": [
+ {
+ "word_nikkud": "מִחְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3761-michya",
+ "gender": "feminine"
+ }
+ ],
+ "חיה": [
+ {
+ "word_nikkud": "חַיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5214-chaya",
+ "gender": "feminine"
+ }
+ ],
+ "חיית־": [
+ {
+ "word_nikkud": "חַיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5214-chaya",
+ "gender": "feminine"
+ }
+ ],
+ "חייזר": [
+ {
+ "word_nikkud": "חַיְזָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6696-chayzar",
+ "gender": ""
+ }
+ ],
+ "חייזרים": [
+ {
+ "word_nikkud": "חַיְזָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6696-chayzar",
+ "gender": ""
+ }
+ ],
+ "חייזר־": [
+ {
+ "word_nikkud": "חַיְזָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6696-chayzar",
+ "gender": ""
+ }
+ ],
+ "חייזרי־": [
+ {
+ "word_nikkud": "חַיְזָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6696-chayzar",
+ "gender": ""
+ }
+ ],
+ "חיוך": [
+ {
+ "word_nikkud": "חִיּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2961-chiyuch",
+ "gender": "masculine"
+ }
+ ],
+ "חיוכים": [
+ {
+ "word_nikkud": "חִיּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2961-chiyuch",
+ "gender": "masculine"
+ }
+ ],
+ "חיוך־": [
+ {
+ "word_nikkud": "חִיּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2961-chiyuch",
+ "gender": "masculine"
+ }
+ ],
+ "חיוכי־": [
+ {
+ "word_nikkud": "חִיּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2961-chiyuch",
+ "gender": "masculine"
+ }
+ ],
+ "חייל": [
+ {
+ "word_nikkud": "חַיָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3347-chayal",
+ "gender": "masculine"
+ }
+ ],
+ "חיילים": [
+ {
+ "word_nikkud": "חַיָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3347-chayal",
+ "gender": "masculine"
+ }
+ ],
+ "חייל־": [
+ {
+ "word_nikkud": "חַיָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3347-chayal",
+ "gender": "masculine"
+ }
+ ],
+ "חיילי־": [
+ {
+ "word_nikkud": "חַיָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3347-chayal",
+ "gender": "masculine"
+ }
+ ],
+ "תחולה": [
+ {
+ "word_nikkud": "תְּחוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5390-tchula",
+ "gender": "feminine"
+ }
+ ],
+ "תחולות": [
+ {
+ "word_nikkud": "תְּחוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5390-tchula",
+ "gender": "feminine"
+ }
+ ],
+ "תחולת־": [
+ {
+ "word_nikkud": "תְּחוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5390-tchula",
+ "gender": "feminine"
+ }
+ ],
+ "תחולות־": [
+ {
+ "word_nikkud": "תְּחוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5390-tchula",
+ "gender": "feminine"
+ }
+ ],
+ "חיק": [
+ {
+ "word_nikkud": "חֵיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5273-chek",
+ "gender": "masculine"
+ }
+ ],
+ "חיקים": [
+ {
+ "word_nikkud": "חֵיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5273-chek",
+ "gender": "masculine"
+ }
+ ],
+ "חיק־": [
+ {
+ "word_nikkud": "חֵיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5273-chek",
+ "gender": "masculine"
+ }
+ ],
+ "חיקי־": [
+ {
+ "word_nikkud": "חֵיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5273-chek",
+ "gender": "masculine"
+ }
+ ],
+ "חיישן": [
+ {
+ "word_nikkud": "חַיְשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7373-chayshan",
+ "gender": "masculine"
+ }
+ ],
+ "חיישנים": [
+ {
+ "word_nikkud": "חַיְשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7373-chayshan",
+ "gender": "masculine"
+ }
+ ],
+ "חיישן־": [
+ {
+ "word_nikkud": "חַיְשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7373-chayshan",
+ "gender": "masculine"
+ }
+ ],
+ "חיישני־": [
+ {
+ "word_nikkud": "חַיְשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7373-chayshan",
+ "gender": "masculine"
+ }
+ ],
+ "חיכוך": [
+ {
+ "word_nikkud": "חִכּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2963-chikuch",
+ "gender": "masculine"
+ }
+ ],
+ "חיכוכים": [
+ {
+ "word_nikkud": "חִכּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2963-chikuch",
+ "gender": "masculine"
+ }
+ ],
+ "חיכוך־": [
+ {
+ "word_nikkud": "חִכּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2963-chikuch",
+ "gender": "masculine"
+ }
+ ],
+ "חיכוכי־": [
+ {
+ "word_nikkud": "חִכּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2963-chikuch",
+ "gender": "masculine"
+ }
+ ],
+ "חכה": [
+ {
+ "word_nikkud": "חַכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8702-chaka",
+ "gender": "feminine"
+ }
+ ],
+ "חכות": [
+ {
+ "word_nikkud": "חַכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8702-chaka",
+ "gender": "feminine"
+ }
+ ],
+ "חכת־": [
+ {
+ "word_nikkud": "חַכָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8702-chaka",
+ "gender": "feminine"
+ }
+ ],
+ "חכות־": [
+ {
+ "word_nikkud": "חַכָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8702-chaka",
+ "gender": "feminine"
+ }
+ ],
+ "חך": [
+ {
+ "word_nikkud": "חֵךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6260-chech",
+ "gender": "masculine"
+ }
+ ],
+ "חיכים": [
+ {
+ "word_nikkud": "חֵךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6260-chech",
+ "gender": "masculine"
+ }
+ ],
+ "חך־": [
+ {
+ "word_nikkud": "חֵךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6260-chech",
+ "gender": "masculine"
+ }
+ ],
+ "חיכי־": [
+ {
+ "word_nikkud": "חֵךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6260-chech",
+ "gender": "masculine"
+ }
+ ],
+ "חוכמה": [
+ {
+ "word_nikkud": "חָכְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3231-chochma",
+ "gender": "feminine"
+ }
+ ],
+ "חוכמות": [
+ {
+ "word_nikkud": "חָכְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3231-chochma",
+ "gender": "feminine"
+ }
+ ],
+ "חוכמת־": [
+ {
+ "word_nikkud": "חָכְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3231-chochma",
+ "gender": "feminine"
+ }
+ ],
+ "חוכמות־": [
+ {
+ "word_nikkud": "חָכְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3231-chochma",
+ "gender": "feminine"
+ }
+ ],
+ "חכם": [
+ {
+ "word_nikkud": "חָכָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6983-chacham",
+ "gender": "masculine"
+ }
+ ],
+ "חכמים": [
+ {
+ "word_nikkud": "חָכָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6983-chacham",
+ "gender": "masculine"
+ }
+ ],
+ "חכם־": [
+ {
+ "word_nikkud": "חָכָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6983-chacham",
+ "gender": "masculine"
+ }
+ ],
+ "חכמי־": [
+ {
+ "word_nikkud": "חָכָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6983-chacham",
+ "gender": "masculine"
+ }
+ ],
+ "תחלואה": [
+ {
+ "word_nikkud": "תַּחְלוּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7719-tachlua",
+ "gender": "feminine"
+ }
+ ],
+ "תחלואות": [
+ {
+ "word_nikkud": "תַּחְלוּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7719-tachlua",
+ "gender": "feminine"
+ }
+ ],
+ "תחלואת־": [
+ {
+ "word_nikkud": "תַּחְלוּאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7719-tachlua",
+ "gender": "feminine"
+ }
+ ],
+ "תחלואות־": [
+ {
+ "word_nikkud": "תַּחְלוּאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7719-tachlua",
+ "gender": "feminine"
+ }
+ ],
+ "חלב": [
+ {
+ "word_nikkud": "חָלָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5859-chalav",
+ "gender": "masculine"
+ }
+ ],
+ "חלבים": [
+ {
+ "word_nikkud": "חָלָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5859-chalav",
+ "gender": "masculine"
+ }
+ ],
+ "חלב־": [
+ {
+ "word_nikkud": "חָלָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5859-chalav",
+ "gender": "masculine"
+ }
+ ],
+ "חלבי־": [
+ {
+ "word_nikkud": "חָלָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5859-chalav",
+ "gender": "masculine"
+ }
+ ],
+ "חלבון": [
+ {
+ "word_nikkud": "חֶלְבּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6997-chelbon",
+ "gender": "masculine"
+ }
+ ],
+ "חלבונים": [
+ {
+ "word_nikkud": "חֶלְבּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6997-chelbon",
+ "gender": "masculine"
+ }
+ ],
+ "חלבון־": [
+ {
+ "word_nikkud": "חֶלְבּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6997-chelbon",
+ "gender": "masculine"
+ }
+ ],
+ "חלבוני־": [
+ {
+ "word_nikkud": "חֶלְבּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6997-chelbon",
+ "gender": "masculine"
+ }
+ ],
+ "תחליב": [
+ {
+ "word_nikkud": "תַּחְלִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7146-tachliv",
+ "gender": "masculine"
+ }
+ ],
+ "תחליבים": [
+ {
+ "word_nikkud": "תַּחְלִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7146-tachliv",
+ "gender": "masculine"
+ }
+ ],
+ "תחליב־": [
+ {
+ "word_nikkud": "תַּחְלִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7146-tachliv",
+ "gender": "masculine"
+ }
+ ],
+ "תחליבי־": [
+ {
+ "word_nikkud": "תַּחְלִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7146-tachliv",
+ "gender": "masculine"
+ }
+ ],
+ "חלודה": [
+ {
+ "word_nikkud": "חֲלוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5280-chaluda",
+ "gender": "feminine"
+ }
+ ],
+ "חלודות": [
+ {
+ "word_nikkud": "חֲלוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5280-chaluda",
+ "gender": "feminine"
+ }
+ ],
+ "חלודת־": [
+ {
+ "word_nikkud": "חֲלוּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5280-chaluda",
+ "gender": "feminine"
+ }
+ ],
+ "חלודות־": [
+ {
+ "word_nikkud": "חֲלוּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5280-chaluda",
+ "gender": "feminine"
+ }
+ ],
+ "חולדה": [
+ {
+ "word_nikkud": "חֻלְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3242-chulda",
+ "gender": "feminine"
+ }
+ ],
+ "חולדות": [
+ {
+ "word_nikkud": "חֻלְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3242-chulda",
+ "gender": "feminine"
+ }
+ ],
+ "חולדת־": [
+ {
+ "word_nikkud": "חֻלְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3242-chulda",
+ "gender": "feminine"
+ }
+ ],
+ "חולדות־": [
+ {
+ "word_nikkud": "חֻלְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3242-chulda",
+ "gender": "feminine"
+ }
+ ],
+ "חילזון": [
+ {
+ "word_nikkud": "חִלָּזוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9160-chilazon",
+ "gender": "masculine"
+ }
+ ],
+ "חלזונות": [
+ {
+ "word_nikkud": "חִלָּזוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9160-chilazon",
+ "gender": "masculine"
+ }
+ ],
+ "חלזון־": [
+ {
+ "word_nikkud": "חִלָּזוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9160-chilazon",
+ "gender": "masculine"
+ }
+ ],
+ "חלזונות־": [
+ {
+ "word_nikkud": "חִלָּזוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9160-chilazon",
+ "gender": "masculine"
+ }
+ ],
+ "חילוט": [
+ {
+ "word_nikkud": "חִלּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2686-chilut",
+ "gender": "masculine"
+ }
+ ],
+ "חילוטים": [
+ {
+ "word_nikkud": "חִלּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2686-chilut",
+ "gender": "masculine"
+ }
+ ],
+ "חילוט־": [
+ {
+ "word_nikkud": "חִלּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2686-chilut",
+ "gender": "masculine"
+ }
+ ],
+ "חילוטי־": [
+ {
+ "word_nikkud": "חִלּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2686-chilut",
+ "gender": "masculine"
+ }
+ ],
+ "החלטה": [
+ {
+ "word_nikkud": "הַחְלָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2879-hachlata",
+ "gender": "feminine"
+ }
+ ],
+ "החלטות": [
+ {
+ "word_nikkud": "הַחְלָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2879-hachlata",
+ "gender": "feminine"
+ }
+ ],
+ "החלטת־": [
+ {
+ "word_nikkud": "הַחְלָטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2879-hachlata",
+ "gender": "feminine"
+ }
+ ],
+ "החלטות־": [
+ {
+ "word_nikkud": "הַחְלָטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2879-hachlata",
+ "gender": "feminine"
+ }
+ ],
+ "החלט": [
+ {
+ "word_nikkud": "הֶחְלֵט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7154-hechlet",
+ "gender": "masculine"
+ }
+ ],
+ "החלט־": [
+ {
+ "word_nikkud": "הֶחְלֵט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7154-hechlet",
+ "gender": "masculine"
+ }
+ ],
+ "חלטורה": [
+ {
+ "word_nikkud": "חַלְטוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7984-chaltura",
+ "gender": ""
+ }
+ ],
+ "חלטורות": [
+ {
+ "word_nikkud": "חַלְטוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7984-chaltura",
+ "gender": ""
+ }
+ ],
+ "חלטורת־": [
+ {
+ "word_nikkud": "חַלְטוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7984-chaltura",
+ "gender": ""
+ }
+ ],
+ "חלטורות־": [
+ {
+ "word_nikkud": "חַלְטוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7984-chaltura",
+ "gender": ""
+ }
+ ],
+ "חלטור": [
+ {
+ "word_nikkud": "חִלְטוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3799-chiltur",
+ "gender": "masculine"
+ }
+ ],
+ "חלטורים": [
+ {
+ "word_nikkud": "חִלְטוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3799-chiltur",
+ "gender": "masculine"
+ }
+ ],
+ "חלטור־": [
+ {
+ "word_nikkud": "חִלְטוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3799-chiltur",
+ "gender": "masculine"
+ }
+ ],
+ "חלטורי־": [
+ {
+ "word_nikkud": "חִלְטוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3799-chiltur",
+ "gender": "masculine"
+ }
+ ],
+ "מחלה": [
+ {
+ "word_nikkud": "מַחֲלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4620-machala",
+ "gender": "feminine"
+ }
+ ],
+ "מחלות": [
+ {
+ "word_nikkud": "מַחֲלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4620-machala",
+ "gender": "feminine"
+ }
+ ],
+ "מחלת־": [
+ {
+ "word_nikkud": "מַחֲלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4620-machala",
+ "gender": "feminine"
+ }
+ ],
+ "מחלות־": [
+ {
+ "word_nikkud": "מַחֲלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4620-machala",
+ "gender": "feminine"
+ }
+ ],
+ "חלון": [
+ {
+ "word_nikkud": "חַלּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5260-chalon",
+ "gender": "masculine"
+ }
+ ],
+ "חלונות": [
+ {
+ "word_nikkud": "חַלּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5260-chalon",
+ "gender": "masculine"
+ }
+ ],
+ "חלון־": [
+ {
+ "word_nikkud": "חַלּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5260-chalon",
+ "gender": "masculine"
+ }
+ ],
+ "חלונות־": [
+ {
+ "word_nikkud": "חַלּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5260-chalon",
+ "gender": "masculine"
+ }
+ ],
+ "חילול": [
+ {
+ "word_nikkud": "חִלּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8460-chilul",
+ "gender": "masculine"
+ }
+ ],
+ "חילולים": [
+ {
+ "word_nikkud": "חִלּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8460-chilul",
+ "gender": "masculine"
+ }
+ ],
+ "חילול־": [
+ {
+ "word_nikkud": "חִלּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8460-chilul",
+ "gender": "masculine"
+ }
+ ],
+ "חילולי־": [
+ {
+ "word_nikkud": "חִלּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8460-chilul",
+ "gender": "masculine"
+ }
+ ],
+ "תחילה": [
+ {
+ "word_nikkud": "תְּחִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3094-tchila",
+ "gender": "feminine"
+ }
+ ],
+ "תחילות": [
+ {
+ "word_nikkud": "תְּחִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3094-tchila",
+ "gender": "feminine"
+ }
+ ],
+ "תחילת־": [
+ {
+ "word_nikkud": "תְּחִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3094-tchila",
+ "gender": "feminine"
+ }
+ ],
+ "תחילות־": [
+ {
+ "word_nikkud": "תְּחִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3094-tchila",
+ "gender": "feminine"
+ }
+ ],
+ "חלל": [
+ {
+ "word_nikkud": "חָלָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4053-chalal",
+ "gender": "masculine"
+ }
+ ],
+ "חללים": [
+ {
+ "word_nikkud": "חָלָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4053-chalal",
+ "gender": "masculine"
+ }
+ ],
+ "חלל־": [
+ {
+ "word_nikkud": "חָלָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4053-chalal",
+ "gender": "masculine"
+ }
+ ],
+ "חללי־": [
+ {
+ "word_nikkud": "חָלָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4053-chalal",
+ "gender": "masculine"
+ }
+ ],
+ "חליל": [
+ {
+ "word_nikkud": "חֲלִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4058-chalil",
+ "gender": "masculine"
+ }
+ ],
+ "חלילים": [
+ {
+ "word_nikkud": "חֲלִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4058-chalil",
+ "gender": "masculine"
+ }
+ ],
+ "חליל־": [
+ {
+ "word_nikkud": "חֲלִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4058-chalil",
+ "gender": "masculine"
+ }
+ ],
+ "חלילי־": [
+ {
+ "word_nikkud": "חֲלִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4058-chalil",
+ "gender": "masculine"
+ }
+ ],
+ "חוליה": [
+ {
+ "word_nikkud": "חֻלִּיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8879-chuliya",
+ "gender": ""
+ }
+ ],
+ "חוליות": [
+ {
+ "word_nikkud": "חֻלִּיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8879-chuliya",
+ "gender": ""
+ }
+ ],
+ "חוליית־": [
+ {
+ "word_nikkud": "חֻלִּיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8879-chuliya",
+ "gender": ""
+ }
+ ],
+ "חוליות־": [
+ {
+ "word_nikkud": "חֻלִּיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8879-chuliya",
+ "gender": ""
+ }
+ ],
+ "תחילית": [
+ {
+ "word_nikkud": "תְּחִלִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9143-tchilit",
+ "gender": "feminine"
+ }
+ ],
+ "תחיליות": [
+ {
+ "word_nikkud": "תְּחִלִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9143-tchilit",
+ "gender": "feminine"
+ }
+ ],
+ "תחילית־": [
+ {
+ "word_nikkud": "תְּחִלִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9143-tchilit",
+ "gender": "feminine"
+ }
+ ],
+ "תחיליות־": [
+ {
+ "word_nikkud": "תְּחִלִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9143-tchilit",
+ "gender": "feminine"
+ }
+ ],
+ "חלה": [
+ {
+ "word_nikkud": "חַלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6577-chala",
+ "gender": "feminine"
+ }
+ ],
+ "חלות": [
+ {
+ "word_nikkud": "חַלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6577-chala",
+ "gender": "feminine"
+ }
+ ],
+ "חלת־": [
+ {
+ "word_nikkud": "חַלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6577-chala",
+ "gender": "feminine"
+ }
+ ],
+ "חלות־": [
+ {
+ "word_nikkud": "חַלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6577-chala",
+ "gender": "feminine"
+ }
+ ],
+ "חלילית": [
+ {
+ "word_nikkud": "חֲלִילִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9022-chalilit",
+ "gender": "feminine"
+ }
+ ],
+ "חליליות": [
+ {
+ "word_nikkud": "חֲלִילִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9022-chalilit",
+ "gender": "feminine"
+ }
+ ],
+ "חלילית־": [
+ {
+ "word_nikkud": "חֲלִילִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9022-chalilit",
+ "gender": "feminine"
+ }
+ ],
+ "חליליות־": [
+ {
+ "word_nikkud": "חֲלִילִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9022-chalilit",
+ "gender": "feminine"
+ }
+ ],
+ "חלום": [
+ {
+ "word_nikkud": "חָלוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3127-chalom",
+ "gender": "masculine"
+ }
+ ],
+ "חלומות": [
+ {
+ "word_nikkud": "חָלוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3127-chalom",
+ "gender": "masculine"
+ }
+ ],
+ "חלום־": [
+ {
+ "word_nikkud": "חָלוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3127-chalom",
+ "gender": "masculine"
+ }
+ ],
+ "חלומות־": [
+ {
+ "word_nikkud": "חָלוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3127-chalom",
+ "gender": "masculine"
+ }
+ ],
+ "החלמה": [
+ {
+ "word_nikkud": "הַחְלָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6946-hachlama",
+ "gender": "feminine"
+ }
+ ],
+ "החלמות": [
+ {
+ "word_nikkud": "הַחְלָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6946-hachlama",
+ "gender": "feminine"
+ }
+ ],
+ "החלמת־": [
+ {
+ "word_nikkud": "הַחְלָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6946-hachlama",
+ "gender": "feminine"
+ }
+ ],
+ "החלמות־": [
+ {
+ "word_nikkud": "הַחְלָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6946-hachlama",
+ "gender": "feminine"
+ }
+ ],
+ "חלמון": [
+ {
+ "word_nikkud": "חֶלְמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6998-chelmon",
+ "gender": "masculine"
+ }
+ ],
+ "חלמונים": [
+ {
+ "word_nikkud": "חֶלְמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6998-chelmon",
+ "gender": "masculine"
+ }
+ ],
+ "חלמון־": [
+ {
+ "word_nikkud": "חֶלְמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6998-chelmon",
+ "gender": "masculine"
+ }
+ ],
+ "חלמוני־": [
+ {
+ "word_nikkud": "חֶלְמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6998-chelmon",
+ "gender": "masculine"
+ }
+ ],
+ "חלופה": [
+ {
+ "word_nikkud": "חֲלוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5661-chalufa",
+ "gender": "feminine"
+ }
+ ],
+ "חלופות": [
+ {
+ "word_nikkud": "חֲלוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5661-chalufa",
+ "gender": "feminine"
+ }
+ ],
+ "חלופת־": [
+ {
+ "word_nikkud": "חֲלוּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5661-chalufa",
+ "gender": "feminine"
+ }
+ ],
+ "חלופות־": [
+ {
+ "word_nikkud": "חֲלוּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5661-chalufa",
+ "gender": "feminine"
+ }
+ ],
+ "חילוף": [
+ {
+ "word_nikkud": "חִלּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7842-chiluf",
+ "gender": "masculine"
+ }
+ ],
+ "חילופים": [
+ {
+ "word_nikkud": "חִלּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7842-chiluf",
+ "gender": "masculine"
+ }
+ ],
+ "חילוף־": [
+ {
+ "word_nikkud": "חִלּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7842-chiluf",
+ "gender": "masculine"
+ }
+ ],
+ "חילופי־": [
+ {
+ "word_nikkud": "חִלּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7842-chiluf",
+ "gender": "masculine"
+ }
+ ],
+ "חליפה": [
+ {
+ "word_nikkud": "חֲלִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5745-chalifa",
+ "gender": "feminine"
+ }
+ ],
+ "חליפות": [
+ {
+ "word_nikkud": "חֲלִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5745-chalifa",
+ "gender": "feminine"
+ }
+ ],
+ "חליפת־": [
+ {
+ "word_nikkud": "חֲלִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5745-chalifa",
+ "gender": "feminine"
+ }
+ ],
+ "חליפות־": [
+ {
+ "word_nikkud": "חֲלִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5745-chalifa",
+ "gender": "feminine"
+ }
+ ],
+ "החלפה": [
+ {
+ "word_nikkud": "הַחְלָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2880-hachlafa",
+ "gender": "feminine"
+ }
+ ],
+ "החלפות": [
+ {
+ "word_nikkud": "הַחְלָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2880-hachlafa",
+ "gender": "feminine"
+ }
+ ],
+ "החלפת־": [
+ {
+ "word_nikkud": "הַחְלָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2880-hachlafa",
+ "gender": "feminine"
+ }
+ ],
+ "החלפות־": [
+ {
+ "word_nikkud": "הַחְלָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2880-hachlafa",
+ "gender": "feminine"
+ }
+ ],
+ "תחלופה": [
+ {
+ "word_nikkud": "תַּחְלוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8457-tachlufa",
+ "gender": "feminine"
+ }
+ ],
+ "תחלופות": [
+ {
+ "word_nikkud": "תַּחְלוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8457-tachlufa",
+ "gender": "feminine"
+ }
+ ],
+ "תחלופת־": [
+ {
+ "word_nikkud": "תַּחְלוּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8457-tachlufa",
+ "gender": "feminine"
+ }
+ ],
+ "תחלופות־": [
+ {
+ "word_nikkud": "תַּחְלוּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8457-tachlufa",
+ "gender": "feminine"
+ }
+ ],
+ "מחלף": [
+ {
+ "word_nikkud": "מֶחְלָף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6146-mechlaf",
+ "gender": "masculine"
+ }
+ ],
+ "מחלפים": [
+ {
+ "word_nikkud": "מֶחְלָף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6146-mechlaf",
+ "gender": "masculine"
+ }
+ ],
+ "מחלף־": [
+ {
+ "word_nikkud": "מֶחְלָף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6146-mechlaf",
+ "gender": "masculine"
+ }
+ ],
+ "מחלפי־": [
+ {
+ "word_nikkud": "מֶחְלָף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6146-mechlaf",
+ "gender": "masculine"
+ }
+ ],
+ "חילוץ": [
+ {
+ "word_nikkud": "חִלּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7144-chilutz",
+ "gender": "masculine"
+ }
+ ],
+ "חילוצים": [
+ {
+ "word_nikkud": "חִלּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7144-chilutz",
+ "gender": "masculine"
+ }
+ ],
+ "חילוץ־": [
+ {
+ "word_nikkud": "חִלּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7144-chilutz",
+ "gender": "masculine"
+ }
+ ],
+ "חילוצי־": [
+ {
+ "word_nikkud": "חִלּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7144-chilutz",
+ "gender": "masculine"
+ }
+ ],
+ "חולצה": [
+ {
+ "word_nikkud": "חֻלְצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3423-chultza",
+ "gender": "feminine"
+ }
+ ],
+ "חולצות": [
+ {
+ "word_nikkud": "חֻלְצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3423-chultza",
+ "gender": "feminine"
+ }
+ ],
+ "חולצת־": [
+ {
+ "word_nikkud": "חֻלְצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3423-chultza",
+ "gender": "feminine"
+ }
+ ],
+ "חולצות־": [
+ {
+ "word_nikkud": "חֻלְצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3423-chultza",
+ "gender": "feminine"
+ }
+ ],
+ "חלק": [
+ {
+ "word_nikkud": "חֵלֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3201-chelek",
+ "gender": "masculine"
+ }
+ ],
+ "חלקים": [
+ {
+ "word_nikkud": "חֵלֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3201-chelek",
+ "gender": "masculine"
+ }
+ ],
+ "חלק־": [
+ {
+ "word_nikkud": "חֵלֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3201-chelek",
+ "gender": "masculine"
+ }
+ ],
+ "חלקי־": [
+ {
+ "word_nikkud": "חֵלֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3201-chelek",
+ "gender": "masculine"
+ }
+ ],
+ "חלקיק": [
+ {
+ "word_nikkud": "חֶלְקִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4743-chelkik",
+ "gender": "masculine"
+ }
+ ],
+ "חלקיקים": [
+ {
+ "word_nikkud": "חֶלְקִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4743-chelkik",
+ "gender": "masculine"
+ }
+ ],
+ "חלקיק־": [
+ {
+ "word_nikkud": "חֶלְקִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4743-chelkik",
+ "gender": "masculine"
+ }
+ ],
+ "חלקיקי־": [
+ {
+ "word_nikkud": "חֶלְקִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4743-chelkik",
+ "gender": "masculine"
+ }
+ ],
+ "מחלק": [
+ {
+ "word_nikkud": "מְחַלֵּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4853-mechalek",
+ "gender": "masculine"
+ }
+ ],
+ "מחלקים": [
+ {
+ "word_nikkud": "מְחַלֵּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4853-mechalek",
+ "gender": "masculine"
+ }
+ ],
+ "מחלק־": [
+ {
+ "word_nikkud": "מְחַלֵּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4853-mechalek",
+ "gender": "masculine"
+ }
+ ],
+ "מחלקי־": [
+ {
+ "word_nikkud": "מְחַלֵּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4853-mechalek",
+ "gender": "masculine"
+ }
+ ],
+ "חלוקה": [
+ {
+ "word_nikkud": "חֲלֻקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3945-chaluka",
+ "gender": "feminine"
+ }
+ ],
+ "חלוקות": [
+ {
+ "word_nikkud": "חֲלֻקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3945-chaluka",
+ "gender": "feminine"
+ }
+ ],
+ "חלוקת־": [
+ {
+ "word_nikkud": "חֲלֻקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3945-chaluka",
+ "gender": "feminine"
+ }
+ ],
+ "חלוקות־": [
+ {
+ "word_nikkud": "חֲלֻקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3945-chaluka",
+ "gender": "feminine"
+ }
+ ],
+ "מחלקה": [
+ {
+ "word_nikkud": "מַחְלָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6319-machlaka",
+ "gender": "feminine"
+ }
+ ],
+ "מחלקות": [
+ {
+ "word_nikkud": "מַחְלָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6319-machlaka",
+ "gender": "feminine"
+ }
+ ],
+ "מחלקת־": [
+ {
+ "word_nikkud": "מַחְלָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6319-machlaka",
+ "gender": "feminine"
+ }
+ ],
+ "מחלקות־": [
+ {
+ "word_nikkud": "מַחְלָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6319-machlaka",
+ "gender": "feminine"
+ }
+ ],
+ "חלוק": [
+ {
+ "word_nikkud": "חָלוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9233-chaluk",
+ "gender": "masculine"
+ }
+ ],
+ "חלוקים": [
+ {
+ "word_nikkud": "חָלוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9233-chaluk",
+ "gender": "masculine"
+ }
+ ],
+ "חלוק־": [
+ {
+ "word_nikkud": "חָלוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9233-chaluk",
+ "gender": "masculine"
+ }
+ ],
+ "חלוקי־": [
+ {
+ "word_nikkud": "חָלוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9233-chaluk",
+ "gender": "masculine"
+ }
+ ],
+ "חולשה": [
+ {
+ "word_nikkud": "חֻלְשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3236-chulsha",
+ "gender": "feminine"
+ }
+ ],
+ "חולשת־": [
+ {
+ "word_nikkud": "חֻלְשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3236-chulsha",
+ "gender": "feminine"
+ }
+ ],
+ "חם": [
+ {
+ "word_nikkud": "חָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5395-cham",
+ "gender": "masculine"
+ }
+ ],
+ "חמים": [
+ {
+ "word_nikkud": "חָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5395-cham",
+ "gender": "masculine"
+ }
+ ],
+ "חמי־": [
+ {
+ "word_nikkud": "חָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5395-cham",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5395-cham",
+ "gender": "masculine"
+ }
+ ],
+ "מחמאה": [
+ {
+ "word_nikkud": "מַחְמָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6556-machmaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחמאות": [
+ {
+ "word_nikkud": "מַחְמָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6556-machmaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחמאת־": [
+ {
+ "word_nikkud": "מַחְמָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6556-machmaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחמאות־": [
+ {
+ "word_nikkud": "מַחְמָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6556-machmaa",
+ "gender": "feminine"
+ }
+ ],
+ "חמאה": [
+ {
+ "word_nikkud": "חֶמְאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6593-chema",
+ "gender": "feminine"
+ }
+ ],
+ "חמאות": [
+ {
+ "word_nikkud": "חֶמְאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6593-chema",
+ "gender": "feminine"
+ }
+ ],
+ "חמאת־": [
+ {
+ "word_nikkud": "חֶמְאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6593-chema",
+ "gender": "feminine"
+ }
+ ],
+ "חמאות־": [
+ {
+ "word_nikkud": "חֶמְאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6593-chema",
+ "gender": "feminine"
+ }
+ ],
+ "חמדנות": [
+ {
+ "word_nikkud": "חַמְדָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6428-chamdanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמדנויות": [
+ {
+ "word_nikkud": "חַמְדָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6428-chamdanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמדנות־": [
+ {
+ "word_nikkud": "חַמְדָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6428-chamdanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמדנויות־": [
+ {
+ "word_nikkud": "חַמְדָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6428-chamdanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמדה": [
+ {
+ "word_nikkud": "חֶמְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3601-chemda",
+ "gender": "feminine"
+ }
+ ],
+ "חמדת־": [
+ {
+ "word_nikkud": "חֶמְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3601-chemda",
+ "gender": "feminine"
+ }
+ ],
+ "חמדן": [
+ {
+ "word_nikkud": "חַמְדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6427-chamdan",
+ "gender": "masculine"
+ }
+ ],
+ "חמדנים": [
+ {
+ "word_nikkud": "חַמְדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6427-chamdan",
+ "gender": "masculine"
+ }
+ ],
+ "חמדן־": [
+ {
+ "word_nikkud": "חַמְדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6427-chamdan",
+ "gender": "masculine"
+ }
+ ],
+ "חמדני־": [
+ {
+ "word_nikkud": "חַמְדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6427-chamdan",
+ "gender": "masculine"
+ }
+ ],
+ "מחמד": [
+ {
+ "word_nikkud": "מַחְמָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7018-machmad",
+ "gender": "masculine"
+ }
+ ],
+ "מחמדים": [
+ {
+ "word_nikkud": "מַחְמָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7018-machmad",
+ "gender": "masculine"
+ }
+ ],
+ "מחמד־": [
+ {
+ "word_nikkud": "מַחְמָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7018-machmad",
+ "gender": "masculine"
+ }
+ ],
+ "מחמדי־": [
+ {
+ "word_nikkud": "מַחְמָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7018-machmad",
+ "gender": "masculine"
+ }
+ ],
+ "חמולה": [
+ {
+ "word_nikkud": "חַמוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8227-chamula",
+ "gender": "feminine"
+ }
+ ],
+ "חמולות": [
+ {
+ "word_nikkud": "חַמוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8227-chamula",
+ "gender": "feminine"
+ }
+ ],
+ "חמולת־": [
+ {
+ "word_nikkud": "חַמוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8227-chamula",
+ "gender": "feminine"
+ }
+ ],
+ "חמולות־": [
+ {
+ "word_nikkud": "חַמוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8227-chamula",
+ "gender": "feminine"
+ }
+ ],
+ "חמות": [
+ {
+ "word_nikkud": "חָמוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5396-chamot",
+ "gender": "feminine"
+ }
+ ],
+ "חמיות": [
+ {
+ "word_nikkud": "חָמוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5396-chamot",
+ "gender": "feminine"
+ }
+ ],
+ "חמות־": [
+ {
+ "word_nikkud": "חָמוֹת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5396-chamot",
+ "gender": "feminine"
+ }
+ ],
+ "חמיות־": [
+ {
+ "word_nikkud": "חָמוֹת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5396-chamot",
+ "gender": "feminine"
+ }
+ ],
+ "חמלה": [
+ {
+ "word_nikkud": "חֶמְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7839-chemla",
+ "gender": "feminine"
+ }
+ ],
+ "חמלת־": [
+ {
+ "word_nikkud": "חֶמְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7839-chemla",
+ "gender": "feminine"
+ }
+ ],
+ "התחממות": [
+ {
+ "word_nikkud": "הִתְחַמְּמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3012-hitchamemut",
+ "gender": "feminine"
+ }
+ ],
+ "התחממות־": [
+ {
+ "word_nikkud": "הִתְחַמְּמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3012-hitchamemut",
+ "gender": "feminine"
+ }
+ ],
+ "חמנית": [
+ {
+ "word_nikkud": "חַמָּנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8881-chamanit",
+ "gender": ""
+ }
+ ],
+ "חמניות": [
+ {
+ "word_nikkud": "חַמָּנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8881-chamanit",
+ "gender": ""
+ }
+ ],
+ "חמנית־": [
+ {
+ "word_nikkud": "חַמָּנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8881-chamanit",
+ "gender": ""
+ }
+ ],
+ "חמניות־": [
+ {
+ "word_nikkud": "חַמָּנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8881-chamanit",
+ "gender": ""
+ }
+ ],
+ "חמה": [
+ {
+ "word_nikkud": "חַמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7642-chama",
+ "gender": "feminine"
+ }
+ ],
+ "חמת־": [
+ {
+ "word_nikkud": "חַמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7642-chama",
+ "gender": "feminine"
+ }
+ ],
+ "חממה": [
+ {
+ "word_nikkud": "חֲמָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7782-chamama",
+ "gender": "feminine"
+ }
+ ],
+ "חממות": [
+ {
+ "word_nikkud": "חֲמָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7782-chamama",
+ "gender": "feminine"
+ }
+ ],
+ "חממת־": [
+ {
+ "word_nikkud": "חֲמָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7782-chamama",
+ "gender": "feminine"
+ }
+ ],
+ "חממות־": [
+ {
+ "word_nikkud": "חֲמָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7782-chamama",
+ "gender": "feminine"
+ }
+ ],
+ "חימום": [
+ {
+ "word_nikkud": "חִמּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6325-chimum",
+ "gender": "masculine"
+ }
+ ],
+ "חימומים": [
+ {
+ "word_nikkud": "חִמּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6325-chimum",
+ "gender": "masculine"
+ }
+ ],
+ "חימום־": [
+ {
+ "word_nikkud": "חִמּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6325-chimum",
+ "gender": "masculine"
+ }
+ ],
+ "חימומי־": [
+ {
+ "word_nikkud": "חִמּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6325-chimum",
+ "gender": "masculine"
+ }
+ ],
+ "חמסנות": [
+ {
+ "word_nikkud": "חַמְסָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8153-chamsanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמסנויות": [
+ {
+ "word_nikkud": "חַמְסָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8153-chamsanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמסנות־": [
+ {
+ "word_nikkud": "חַמְסָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8153-chamsanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמסנויות־": [
+ {
+ "word_nikkud": "חַמְסָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8153-chamsanut",
+ "gender": "feminine"
+ }
+ ],
+ "חמסן": [
+ {
+ "word_nikkud": "חַמְסָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8152-chamsan",
+ "gender": "masculine"
+ }
+ ],
+ "חמסנים": [
+ {
+ "word_nikkud": "חַמְסָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8152-chamsan",
+ "gender": "masculine"
+ }
+ ],
+ "חמסן־": [
+ {
+ "word_nikkud": "חַמְסָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8152-chamsan",
+ "gender": "masculine"
+ }
+ ],
+ "חמסני־": [
+ {
+ "word_nikkud": "חַמְסָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8152-chamsan",
+ "gender": "masculine"
+ }
+ ],
+ "חמוס": [
+ {
+ "word_nikkud": "חָמוֹס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8483-chamos",
+ "gender": "masculine"
+ }
+ ],
+ "חמוסים": [
+ {
+ "word_nikkud": "חָמוֹס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8483-chamos",
+ "gender": "masculine"
+ }
+ ],
+ "חמוס־": [
+ {
+ "word_nikkud": "חָמוֹס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8483-chamos",
+ "gender": "masculine"
+ }
+ ],
+ "חמוסי־": [
+ {
+ "word_nikkud": "חָמוֹס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8483-chamos",
+ "gender": "masculine"
+ }
+ ],
+ "חמס": [
+ {
+ "word_nikkud": "חָמָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9039-chamas",
+ "gender": "masculine"
+ }
+ ],
+ "חמס־": [
+ {
+ "word_nikkud": "חָמָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9039-chamas",
+ "gender": "masculine"
+ }
+ ],
+ "חומץ": [
+ {
+ "word_nikkud": "חֹמֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3238-chometz",
+ "gender": "masculine"
+ }
+ ],
+ "חומצים": [
+ {
+ "word_nikkud": "חֹמֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3238-chometz",
+ "gender": "masculine"
+ }
+ ],
+ "חומץ־": [
+ {
+ "word_nikkud": "חֹמֶץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3238-chometz",
+ "gender": "masculine"
+ }
+ ],
+ "חומצי־": [
+ {
+ "word_nikkud": "חֹמֶץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3238-chometz",
+ "gender": "masculine"
+ }
+ ],
+ "חומצה": [
+ {
+ "word_nikkud": "חֻמְצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3237-chumtza",
+ "gender": "feminine"
+ }
+ ],
+ "חומצות": [
+ {
+ "word_nikkud": "חֻמְצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3237-chumtza",
+ "gender": "feminine"
+ }
+ ],
+ "חומצת־": [
+ {
+ "word_nikkud": "חֻמְצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3237-chumtza",
+ "gender": "feminine"
+ }
+ ],
+ "חומצות־": [
+ {
+ "word_nikkud": "חֻמְצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3237-chumtza",
+ "gender": "feminine"
+ }
+ ],
+ "מחמץ": [
+ {
+ "word_nikkud": "מַחְמָץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3516-machmatz",
+ "gender": "masculine"
+ }
+ ],
+ "מחמצים": [
+ {
+ "word_nikkud": "מַחְמָץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3516-machmatz",
+ "gender": "masculine"
+ }
+ ],
+ "מחמץ־": [
+ {
+ "word_nikkud": "מַחְמָץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3516-machmatz",
+ "gender": "masculine"
+ }
+ ],
+ "מחמצי־": [
+ {
+ "word_nikkud": "מַחְמָץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3516-machmatz",
+ "gender": "masculine"
+ }
+ ],
+ "חמצן": [
+ {
+ "word_nikkud": "חַמְצָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4201-chamtzan",
+ "gender": "masculine"
+ }
+ ],
+ "חמצן־": [
+ {
+ "word_nikkud": "חַמְצָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4201-chamtzan",
+ "gender": "masculine"
+ }
+ ],
+ "תחמוצת": [
+ {
+ "word_nikkud": "תַּחְמֹצֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7780-tachmotzet",
+ "gender": "feminine"
+ }
+ ],
+ "תחמוצות": [
+ {
+ "word_nikkud": "תַּחְמֹצֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7780-tachmotzet",
+ "gender": "feminine"
+ }
+ ],
+ "תחמוצת־": [
+ {
+ "word_nikkud": "תַּחְמֹצֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7780-tachmotzet",
+ "gender": "feminine"
+ }
+ ],
+ "תחמוצות־": [
+ {
+ "word_nikkud": "תַּחְמֹצֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7780-tachmotzet",
+ "gender": "feminine"
+ }
+ ],
+ "חמיצה": [
+ {
+ "word_nikkud": "חֲמִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6392-chamitza",
+ "gender": "feminine"
+ }
+ ],
+ "חמיצות": [
+ {
+ "word_nikkud": "חֲמִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6392-chamitza",
+ "gender": "feminine"
+ }
+ ],
+ "חמיצת־": [
+ {
+ "word_nikkud": "חֲמִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6392-chamitza",
+ "gender": "feminine"
+ }
+ ],
+ "חמיצות־": [
+ {
+ "word_nikkud": "חֲמִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6392-chamitza",
+ "gender": "feminine"
+ }
+ ],
+ "חמצון": [
+ {
+ "word_nikkud": "חִמְצוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8300-chimtzun",
+ "gender": "masculine"
+ }
+ ],
+ "חמצונים": [
+ {
+ "word_nikkud": "חִמְצוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8300-chimtzun",
+ "gender": "masculine"
+ }
+ ],
+ "חמצון־": [
+ {
+ "word_nikkud": "חִמְצוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8300-chimtzun",
+ "gender": "masculine"
+ }
+ ],
+ "חמצוני־": [
+ {
+ "word_nikkud": "חִמְצוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8300-chimtzun",
+ "gender": "masculine"
+ }
+ ],
+ "חמקן": [
+ {
+ "word_nikkud": "חַמְקָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7652-chamkan",
+ "gender": "masculine"
+ }
+ ],
+ "חמקנים": [
+ {
+ "word_nikkud": "חַמְקָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7652-chamkan",
+ "gender": "masculine"
+ }
+ ],
+ "חמקן־": [
+ {
+ "word_nikkud": "חַמְקָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7652-chamkan",
+ "gender": "masculine"
+ }
+ ],
+ "חמקני־": [
+ {
+ "word_nikkud": "חַמְקָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7652-chamkan",
+ "gender": "masculine"
+ }
+ ],
+ "חמרמורת": [
+ {
+ "word_nikkud": "חֲמַרְמֹרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6955-chamarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "חמרמורות": [
+ {
+ "word_nikkud": "חֲמַרְמֹרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6955-chamarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "חמרמורת־": [
+ {
+ "word_nikkud": "חֲמַרְמֹרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6955-chamarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "חמרמורות־": [
+ {
+ "word_nikkud": "חֲמַרְמֹרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6955-chamarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "חומר": [
+ {
+ "word_nikkud": "חֹמֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3209-chomer",
+ "gender": "masculine"
+ }
+ ],
+ "חומרים": [
+ {
+ "word_nikkud": "חֹמֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3209-chomer",
+ "gender": "masculine"
+ }
+ ],
+ "חומר־": [
+ {
+ "word_nikkud": "חֹמֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3209-chomer",
+ "gender": "masculine"
+ }
+ ],
+ "חומרי־": [
+ {
+ "word_nikkud": "חֹמֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3209-chomer",
+ "gender": "masculine"
+ }
+ ],
+ "חומרה": [
+ {
+ "word_nikkud": "חֻמְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7505-chumra",
+ "gender": "feminine"
+ }
+ ],
+ "חומרת־": [
+ {
+ "word_nikkud": "חֻמְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7505-chumra",
+ "gender": "feminine"
+ }
+ ],
+ "חמור": [
+ {
+ "word_nikkud": "חֲמוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6225-chamor",
+ "gender": "masculine"
+ }
+ ],
+ "חמורים": [
+ {
+ "word_nikkud": "חֲמוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6225-chamor",
+ "gender": "masculine"
+ }
+ ],
+ "חמור־": [
+ {
+ "word_nikkud": "חֲמוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6225-chamor",
+ "gender": "masculine"
+ }
+ ],
+ "חמורי־": [
+ {
+ "word_nikkud": "חֲמוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6225-chamor",
+ "gender": "masculine"
+ }
+ ],
+ "חומש": [
+ {
+ "word_nikkud": "חֹמֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4490-chomesh",
+ "gender": "masculine"
+ }
+ ],
+ "חומשים": [
+ {
+ "word_nikkud": "חֹמֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4490-chomesh",
+ "gender": "masculine"
+ }
+ ],
+ "חומש־": [
+ {
+ "word_nikkud": "חֹמֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4490-chomesh",
+ "gender": "masculine"
+ }
+ ],
+ "חומשי־": [
+ {
+ "word_nikkud": "חֹמֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4490-chomesh",
+ "gender": "masculine"
+ }
+ ],
+ "תחמושת": [
+ {
+ "word_nikkud": "תַּחְמֹשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8631-tachmoshet",
+ "gender": "feminine"
+ }
+ ],
+ "תחמושת־": [
+ {
+ "word_nikkud": "תַּחְמֹשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8631-tachmoshet",
+ "gender": "feminine"
+ }
+ ],
+ "חימוש": [
+ {
+ "word_nikkud": "חִמּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8874-chimush",
+ "gender": "masculine"
+ }
+ ],
+ "חימושים": [
+ {
+ "word_nikkud": "חִמּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8874-chimush",
+ "gender": "masculine"
+ }
+ ],
+ "חימוש־": [
+ {
+ "word_nikkud": "חִמּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8874-chimush",
+ "gender": "masculine"
+ }
+ ],
+ "חימושי־": [
+ {
+ "word_nikkud": "חִמּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8874-chimush",
+ "gender": "masculine"
+ }
+ ],
+ "חיטה": [
+ {
+ "word_nikkud": "חִטָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7931-chita",
+ "gender": "feminine"
+ }
+ ],
+ "חיטת־": [
+ {
+ "word_nikkud": "חִטָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7931-chita",
+ "gender": "feminine"
+ }
+ ],
+ "חנייה": [
+ {
+ "word_nikkud": "חֲנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6554-chaniya",
+ "gender": "feminine"
+ }
+ ],
+ "חניות": [
+ {
+ "word_nikkud": "חֲנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6554-chaniya",
+ "gender": "feminine"
+ }
+ ],
+ "חניית־": [
+ {
+ "word_nikkud": "חֲנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6554-chaniya",
+ "gender": "feminine"
+ }
+ ],
+ "חניות־": [
+ {
+ "word_nikkud": "חֲנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6554-chaniya",
+ "gender": "feminine"
+ }
+ ],
+ "מחנה": [
+ {
+ "word_nikkud": "מַחֲנֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3847-machane",
+ "gender": "masculine"
+ }
+ ],
+ "מחנות": [
+ {
+ "word_nikkud": "מַחֲנֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3847-machane",
+ "gender": "masculine"
+ }
+ ],
+ "מחנה־": [
+ {
+ "word_nikkud": "מַחֲנֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3847-machane",
+ "gender": "masculine"
+ }
+ ],
+ "מחנות־": [
+ {
+ "word_nikkud": "מַחֲנֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3847-machane",
+ "gender": "masculine"
+ }
+ ],
+ "חנות": [
+ {
+ "word_nikkud": "חֲנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4786-chanut",
+ "gender": "feminine"
+ }
+ ],
+ "חנויות": [
+ {
+ "word_nikkud": "חֲנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4786-chanut",
+ "gender": "feminine"
+ }
+ ],
+ "חנות־": [
+ {
+ "word_nikkud": "חֲנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4786-chanut",
+ "gender": "feminine"
+ }
+ ],
+ "חנויות־": [
+ {
+ "word_nikkud": "חֲנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4786-chanut",
+ "gender": "feminine"
+ }
+ ],
+ "תחנה": [
+ {
+ "word_nikkud": "תַּחֲנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5127-tachana",
+ "gender": "feminine"
+ }
+ ],
+ "תחנות": [
+ {
+ "word_nikkud": "תַּחֲנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5127-tachana",
+ "gender": "feminine"
+ }
+ ],
+ "תחנת־": [
+ {
+ "word_nikkud": "תַּחֲנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5127-tachana",
+ "gender": "feminine"
+ }
+ ],
+ "תחנות־": [
+ {
+ "word_nikkud": "תַּחֲנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5127-tachana",
+ "gender": "feminine"
+ }
+ ],
+ "חניון": [
+ {
+ "word_nikkud": "חַנְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7372-chanyon",
+ "gender": "masculine"
+ }
+ ],
+ "חניונים": [
+ {
+ "word_nikkud": "חַנְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7372-chanyon",
+ "gender": "masculine"
+ }
+ ],
+ "חניון־": [
+ {
+ "word_nikkud": "חַנְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7372-chanyon",
+ "gender": "masculine"
+ }
+ ],
+ "חניוני־": [
+ {
+ "word_nikkud": "חַנְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7372-chanyon",
+ "gender": "masculine"
+ }
+ ],
+ "חינוך": [
+ {
+ "word_nikkud": "חִנּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2641-chinuch",
+ "gender": "masculine"
+ }
+ ],
+ "חינוכים": [
+ {
+ "word_nikkud": "חִנּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2641-chinuch",
+ "gender": "masculine"
+ }
+ ],
+ "חינוך־": [
+ {
+ "word_nikkud": "חִנּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2641-chinuch",
+ "gender": "masculine"
+ }
+ ],
+ "חינוכי־": [
+ {
+ "word_nikkud": "חִנּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2641-chinuch",
+ "gender": "masculine"
+ }
+ ],
+ "חניך": [
+ {
+ "word_nikkud": "חָנִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3866-chanich",
+ "gender": "masculine"
+ }
+ ],
+ "חניכים": [
+ {
+ "word_nikkud": "חָנִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3866-chanich",
+ "gender": "masculine"
+ }
+ ],
+ "חניך־": [
+ {
+ "word_nikkud": "חָנִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3866-chanich",
+ "gender": "masculine"
+ }
+ ],
+ "חניכי־": [
+ {
+ "word_nikkud": "חָנִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3866-chanich",
+ "gender": "masculine"
+ }
+ ],
+ "חנוכה": [
+ {
+ "word_nikkud": "חֲנֻכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3934-chanuka",
+ "gender": "feminine"
+ }
+ ],
+ "חנוכת־": [
+ {
+ "word_nikkud": "חֲנֻכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3934-chanuka",
+ "gender": "feminine"
+ }
+ ],
+ "חנוכייה": [
+ {
+ "word_nikkud": "חֲנֻכִּיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6876-chanukiya",
+ "gender": "feminine"
+ }
+ ],
+ "חנוכיות": [
+ {
+ "word_nikkud": "חֲנֻכִּיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6876-chanukiya",
+ "gender": "feminine"
+ }
+ ],
+ "חנוכיית־": [
+ {
+ "word_nikkud": "חֲנֻכִּיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6876-chanukiya",
+ "gender": "feminine"
+ }
+ ],
+ "חנוכיות־": [
+ {
+ "word_nikkud": "חֲנֻכִּיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6876-chanukiya",
+ "gender": "feminine"
+ }
+ ],
+ "חנון": [
+ {
+ "word_nikkud": "חְנוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7702-chnun",
+ "gender": ""
+ }
+ ],
+ "חנונים": [
+ {
+ "word_nikkud": "חְנוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7702-chnun",
+ "gender": ""
+ }
+ ],
+ "חנון־": [
+ {
+ "word_nikkud": "חְנוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7702-chnun",
+ "gender": ""
+ }
+ ],
+ "חנוני־": [
+ {
+ "word_nikkud": "חְנוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7702-chnun",
+ "gender": ""
+ }
+ ],
+ "חן": [
+ {
+ "word_nikkud": "חֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6596-chen",
+ "gender": "masculine"
+ }
+ ],
+ "חן־": [
+ {
+ "word_nikkud": "חֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6596-chen",
+ "gender": "masculine"
+ }
+ ],
+ "חנפן": [
+ {
+ "word_nikkud": "חַנְפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3430-chanfan",
+ "gender": "masculine"
+ }
+ ],
+ "חנפנים": [
+ {
+ "word_nikkud": "חַנְפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3430-chanfan",
+ "gender": "masculine"
+ }
+ ],
+ "חנפן־": [
+ {
+ "word_nikkud": "חַנְפָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3430-chanfan",
+ "gender": "masculine"
+ }
+ ],
+ "חנפני־": [
+ {
+ "word_nikkud": "חַנְפָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3430-chanfan",
+ "gender": "masculine"
+ }
+ ],
+ "חניקה": [
+ {
+ "word_nikkud": "חֲנִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3985-chanika",
+ "gender": "feminine"
+ }
+ ],
+ "חניקות": [
+ {
+ "word_nikkud": "חֲנִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3985-chanika",
+ "gender": "feminine"
+ }
+ ],
+ "חניקת־": [
+ {
+ "word_nikkud": "חֲנִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3985-chanika",
+ "gender": "feminine"
+ }
+ ],
+ "חניקות־": [
+ {
+ "word_nikkud": "חֲנִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3985-chanika",
+ "gender": "feminine"
+ }
+ ],
+ "חנק": [
+ {
+ "word_nikkud": "חֶנֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4999-chenek",
+ "gender": "masculine"
+ }
+ ],
+ "חנק־": [
+ {
+ "word_nikkud": "חֶנֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4999-chenek",
+ "gender": "masculine"
+ }
+ ],
+ "מחנק": [
+ {
+ "word_nikkud": "מַחֲנָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6244-machanak",
+ "gender": "masculine"
+ }
+ ],
+ "מחנק־": [
+ {
+ "word_nikkud": "מַחֲנָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6244-machanak",
+ "gender": "masculine"
+ }
+ ],
+ "חסד": [
+ {
+ "word_nikkud": "חֶסֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4752-chesed",
+ "gender": "masculine"
+ }
+ ],
+ "חסדים": [
+ {
+ "word_nikkud": "חֶסֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4752-chesed",
+ "gender": "masculine"
+ }
+ ],
+ "חסד־": [
+ {
+ "word_nikkud": "חֶסֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4752-chesed",
+ "gender": "masculine"
+ }
+ ],
+ "חסדי־": [
+ {
+ "word_nikkud": "חֶסֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4752-chesed",
+ "gender": "masculine"
+ }
+ ],
+ "חסידה": [
+ {
+ "word_nikkud": "חֲסִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4753-chasida",
+ "gender": "feminine"
+ }
+ ],
+ "חסידות": [
+ {
+ "word_nikkud": "חֲסִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4753-chasida",
+ "gender": "feminine"
+ }
+ ],
+ "חסידת־": [
+ {
+ "word_nikkud": "חֲסִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4753-chasida",
+ "gender": "feminine"
+ }
+ ],
+ "חסידות־": [
+ {
+ "word_nikkud": "חֲסִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4753-chasida",
+ "gender": "feminine"
+ }
+ ],
+ "חסה": [
+ {
+ "word_nikkud": "חַסָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6365-chasa",
+ "gender": "feminine"
+ }
+ ],
+ "חסות": [
+ {
+ "word_nikkud": "חַסָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6365-chasa",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חָסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3773-chasut",
+ "gender": "feminine"
+ }
+ ],
+ "חסת־": [
+ {
+ "word_nikkud": "חַסָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6365-chasa",
+ "gender": "feminine"
+ }
+ ],
+ "חסות־": [
+ {
+ "word_nikkud": "חַסָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6365-chasa",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חָסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3773-chasut",
+ "gender": "feminine"
+ }
+ ],
+ "חסויות": [
+ {
+ "word_nikkud": "חָסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3773-chasut",
+ "gender": "feminine"
+ }
+ ],
+ "חסויות־": [
+ {
+ "word_nikkud": "חָסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3773-chasut",
+ "gender": "feminine"
+ }
+ ],
+ "חיסיון": [
+ {
+ "word_nikkud": "חִסָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4538-chisayon",
+ "gender": "masculine"
+ }
+ ],
+ "חסיונות": [
+ {
+ "word_nikkud": "חִסָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4538-chisayon",
+ "gender": "masculine"
+ }
+ ],
+ "חסיון־": [
+ {
+ "word_nikkud": "חִסָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4538-chisayon",
+ "gender": "masculine"
+ }
+ ],
+ "חסיונות־": [
+ {
+ "word_nikkud": "חִסָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4538-chisayon",
+ "gender": "masculine"
+ }
+ ],
+ "מחסה": [
+ {
+ "word_nikkud": "מַחֲסֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9090-machase",
+ "gender": "masculine"
+ }
+ ],
+ "מחסים": [
+ {
+ "word_nikkud": "מַחֲסֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9090-machase",
+ "gender": "masculine"
+ }
+ ],
+ "מחסה־": [
+ {
+ "word_nikkud": "מַחֲסֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9090-machase",
+ "gender": "masculine"
+ }
+ ],
+ "מחסי־": [
+ {
+ "word_nikkud": "מַחֲסֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9090-machase",
+ "gender": "masculine"
+ }
+ ],
+ "חיסכון": [
+ {
+ "word_nikkud": "חִסָּכוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3579-chisachon",
+ "gender": "masculine"
+ }
+ ],
+ "חסכונות": [
+ {
+ "word_nikkud": "חִסָּכוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3579-chisachon",
+ "gender": "masculine"
+ }
+ ],
+ "חסכון־": [
+ {
+ "word_nikkud": "חִסָּכוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3579-chisachon",
+ "gender": "masculine"
+ }
+ ],
+ "חסכונות־": [
+ {
+ "word_nikkud": "חִסָּכוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3579-chisachon",
+ "gender": "masculine"
+ }
+ ],
+ "חסכן": [
+ {
+ "word_nikkud": "חַסְכָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8756-chaschan",
+ "gender": "masculine"
+ }
+ ],
+ "חסכנים": [
+ {
+ "word_nikkud": "חַסְכָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8756-chaschan",
+ "gender": "masculine"
+ }
+ ],
+ "חסכן־": [
+ {
+ "word_nikkud": "חַסְכָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8756-chaschan",
+ "gender": "masculine"
+ }
+ ],
+ "חסכני־": [
+ {
+ "word_nikkud": "חַסְכָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8756-chaschan",
+ "gender": "masculine"
+ }
+ ],
+ "חסכנות": [
+ {
+ "word_nikkud": "חַסְכָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8757-chaschanut",
+ "gender": "feminine"
+ }
+ ],
+ "חסכנות־": [
+ {
+ "word_nikkud": "חַסְכָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8757-chaschanut",
+ "gender": "feminine"
+ }
+ ],
+ "חיסול": [
+ {
+ "word_nikkud": "חִסּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3986-chisul",
+ "gender": "masculine"
+ }
+ ],
+ "חיסולים": [
+ {
+ "word_nikkud": "חִסּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3986-chisul",
+ "gender": "masculine"
+ }
+ ],
+ "חיסול־": [
+ {
+ "word_nikkud": "חִסּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3986-chisul",
+ "gender": "masculine"
+ }
+ ],
+ "חיסולי־": [
+ {
+ "word_nikkud": "חִסּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3986-chisul",
+ "gender": "masculine"
+ }
+ ],
+ "חסילון": [
+ {
+ "word_nikkud": "חֲסִילוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8830-chasilon",
+ "gender": "masculine"
+ }
+ ],
+ "חסילונים": [
+ {
+ "word_nikkud": "חֲסִילוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8830-chasilon",
+ "gender": "masculine"
+ }
+ ],
+ "חסילון־": [
+ {
+ "word_nikkud": "חֲסִילוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8830-chasilon",
+ "gender": "masculine"
+ }
+ ],
+ "חסילוני־": [
+ {
+ "word_nikkud": "חֲסִילוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8830-chasilon",
+ "gender": "masculine"
+ }
+ ],
+ "חסיל": [
+ {
+ "word_nikkud": "חָסִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8829-chasil",
+ "gender": "masculine"
+ }
+ ],
+ "חסילים": [
+ {
+ "word_nikkud": "חָסִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8829-chasil",
+ "gender": "masculine"
+ }
+ ],
+ "חסיל־": [
+ {
+ "word_nikkud": "חָסִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8829-chasil",
+ "gender": "masculine"
+ }
+ ],
+ "חסילי־": [
+ {
+ "word_nikkud": "חָסִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8829-chasil",
+ "gender": "masculine"
+ }
+ ],
+ "מחסום": [
+ {
+ "word_nikkud": "מַחְסוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3679-machsom",
+ "gender": "masculine"
+ }
+ ],
+ "מחסומים": [
+ {
+ "word_nikkud": "מַחְסוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3679-machsom",
+ "gender": "masculine"
+ }
+ ],
+ "מחסום־": [
+ {
+ "word_nikkud": "מַחְסוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3679-machsom",
+ "gender": "masculine"
+ }
+ ],
+ "מחסומי־": [
+ {
+ "word_nikkud": "מַחְסוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3679-machsom",
+ "gender": "masculine"
+ }
+ ],
+ "חסימה": [
+ {
+ "word_nikkud": "חֲסִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8870-chasima",
+ "gender": "feminine"
+ }
+ ],
+ "חסימות": [
+ {
+ "word_nikkud": "חֲסִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8870-chasima",
+ "gender": "feminine"
+ }
+ ],
+ "חסימת־": [
+ {
+ "word_nikkud": "חֲסִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8870-chasima",
+ "gender": "feminine"
+ }
+ ],
+ "חסימות־": [
+ {
+ "word_nikkud": "חֲסִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8870-chasima",
+ "gender": "feminine"
+ }
+ ],
+ "התחסנות": [
+ {
+ "word_nikkud": "הִתְחַסְּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8234-hitchasnut",
+ "gender": "feminine"
+ }
+ ],
+ "התחסנויות": [
+ {
+ "word_nikkud": "הִתְחַסְּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8234-hitchasnut",
+ "gender": "feminine"
+ }
+ ],
+ "התחסנות־": [
+ {
+ "word_nikkud": "הִתְחַסְּנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8234-hitchasnut",
+ "gender": "feminine"
+ }
+ ],
+ "התחסנויות־": [
+ {
+ "word_nikkud": "הִתְחַסְּנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8234-hitchasnut",
+ "gender": "feminine"
+ }
+ ],
+ "חוסן": [
+ {
+ "word_nikkud": "חֹסֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4749-chosen",
+ "gender": "masculine"
+ }
+ ],
+ "חוסנים": [
+ {
+ "word_nikkud": "חֹסֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4749-chosen",
+ "gender": "masculine"
+ }
+ ],
+ "חוסן־": [
+ {
+ "word_nikkud": "חֹסֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4749-chosen",
+ "gender": "masculine"
+ }
+ ],
+ "חוסני־": [
+ {
+ "word_nikkud": "חֹסֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4749-chosen",
+ "gender": "masculine"
+ }
+ ],
+ "מחסן": [
+ {
+ "word_nikkud": "מַחְסָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4747-machsan",
+ "gender": "masculine"
+ }
+ ],
+ "מחסנים": [
+ {
+ "word_nikkud": "מַחְסָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4747-machsan",
+ "gender": "masculine"
+ }
+ ],
+ "מחסן־": [
+ {
+ "word_nikkud": "מַחְסָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4747-machsan",
+ "gender": "masculine"
+ }
+ ],
+ "מחסני־": [
+ {
+ "word_nikkud": "מַחְסָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4747-machsan",
+ "gender": "masculine"
+ }
+ ],
+ "מחסנית": [
+ {
+ "word_nikkud": "מַחְסָנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4748-machsanit",
+ "gender": "feminine"
+ }
+ ],
+ "מחסניות": [
+ {
+ "word_nikkud": "מַחְסָנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4748-machsanit",
+ "gender": "feminine"
+ }
+ ],
+ "מחסנית־": [
+ {
+ "word_nikkud": "מַחְסָנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4748-machsanit",
+ "gender": "feminine"
+ }
+ ],
+ "מחסניות־": [
+ {
+ "word_nikkud": "מַחְסָנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4748-machsanit",
+ "gender": "feminine"
+ }
+ ],
+ "חיסון": [
+ {
+ "word_nikkud": "חִסּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7696-chisun",
+ "gender": "masculine"
+ }
+ ],
+ "חיסונים": [
+ {
+ "word_nikkud": "חִסּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7696-chisun",
+ "gender": "masculine"
+ }
+ ],
+ "חיסון־": [
+ {
+ "word_nikkud": "חִסּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7696-chisun",
+ "gender": "masculine"
+ }
+ ],
+ "חיסוני־": [
+ {
+ "word_nikkud": "חִסּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7696-chisun",
+ "gender": "masculine"
+ }
+ ],
+ "חסינות": [
+ {
+ "word_nikkud": "חֲסִינוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6134-chasinut",
+ "gender": "feminine"
+ }
+ ],
+ "חסינויות": [
+ {
+ "word_nikkud": "חֲסִינוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6134-chasinut",
+ "gender": "feminine"
+ }
+ ],
+ "חסינות־": [
+ {
+ "word_nikkud": "חֲסִינוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6134-chasinut",
+ "gender": "feminine"
+ }
+ ],
+ "חסינויות־": [
+ {
+ "word_nikkud": "חֲסִינוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6134-chasinut",
+ "gender": "feminine"
+ }
+ ],
+ "חיסור": [
+ {
+ "word_nikkud": "חִסּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4839-chisur",
+ "gender": "masculine"
+ }
+ ],
+ "חיסורים": [
+ {
+ "word_nikkud": "חִסּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4839-chisur",
+ "gender": "masculine"
+ }
+ ],
+ "חיסור־": [
+ {
+ "word_nikkud": "חִסּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4839-chisur",
+ "gender": "masculine"
+ }
+ ],
+ "חיסורי־": [
+ {
+ "word_nikkud": "חִסּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4839-chisur",
+ "gender": "masculine"
+ }
+ ],
+ "חיסרון": [
+ {
+ "word_nikkud": "חִסָּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4569-chisaron",
+ "gender": "masculine"
+ }
+ ],
+ "חסרונות": [
+ {
+ "word_nikkud": "חִסָּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4569-chisaron",
+ "gender": "masculine"
+ }
+ ],
+ "חסרון־": [
+ {
+ "word_nikkud": "חִסָּרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4569-chisaron",
+ "gender": "masculine"
+ }
+ ],
+ "חסרונות־": [
+ {
+ "word_nikkud": "חִסָּרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4569-chisaron",
+ "gender": "masculine"
+ }
+ ],
+ "חוסר": [
+ {
+ "word_nikkud": "חֹסֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4683-choser",
+ "gender": "masculine"
+ }
+ ],
+ "חוסר־": [
+ {
+ "word_nikkud": "חֹסֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4683-choser",
+ "gender": "masculine"
+ }
+ ],
+ "מחסור": [
+ {
+ "word_nikkud": "מַחְסוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7961-machsor",
+ "gender": "masculine"
+ }
+ ],
+ "מחסורים": [
+ {
+ "word_nikkud": "מַחְסוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7961-machsor",
+ "gender": "masculine"
+ }
+ ],
+ "מחסור־": [
+ {
+ "word_nikkud": "מַחְסוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7961-machsor",
+ "gender": "masculine"
+ }
+ ],
+ "מחסורי־": [
+ {
+ "word_nikkud": "מַחְסוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7961-machsor",
+ "gender": "masculine"
+ }
+ ],
+ "חיפוי": [
+ {
+ "word_nikkud": "חִפּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6977-chipuy",
+ "gender": "masculine"
+ }
+ ],
+ "חיפויים": [
+ {
+ "word_nikkud": "חִפּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6977-chipuy",
+ "gender": "masculine"
+ }
+ ],
+ "חיפוי־": [
+ {
+ "word_nikkud": "חִפּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6977-chipuy",
+ "gender": "masculine"
+ }
+ ],
+ "חיפויי־": [
+ {
+ "word_nikkud": "חִפּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6977-chipuy",
+ "gender": "masculine"
+ }
+ ],
+ "חופן": [
+ {
+ "word_nikkud": "חֹפֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8062-chofen",
+ "gender": "masculine"
+ }
+ ],
+ "חופניים": [
+ {
+ "word_nikkud": "חֹפֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8062-chofen",
+ "gender": "masculine"
+ }
+ ],
+ "חופן־": [
+ {
+ "word_nikkud": "חֹפֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8062-chofen",
+ "gender": "masculine"
+ }
+ ],
+ "חופני־": [
+ {
+ "word_nikkud": "חֹפֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8062-chofen",
+ "gender": "masculine"
+ }
+ ],
+ "חפיסה": [
+ {
+ "word_nikkud": "חֲפִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7219-chafisa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיסות": [
+ {
+ "word_nikkud": "חֲפִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7219-chafisa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיסת־": [
+ {
+ "word_nikkud": "חֲפִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7219-chafisa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיסות־": [
+ {
+ "word_nikkud": "חֲפִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7219-chafisa",
+ "gender": "feminine"
+ }
+ ],
+ "חופה": [
+ {
+ "word_nikkud": "חֻפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9087-chupa",
+ "gender": "feminine"
+ }
+ ],
+ "חופות": [
+ {
+ "word_nikkud": "חֻפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9087-chupa",
+ "gender": "feminine"
+ }
+ ],
+ "חופת־": [
+ {
+ "word_nikkud": "חֻפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9087-chupa",
+ "gender": "feminine"
+ }
+ ],
+ "חופות־": [
+ {
+ "word_nikkud": "חֻפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9087-chupa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיפה": [
+ {
+ "word_nikkud": "חֲפִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7165-chafifa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיפות": [
+ {
+ "word_nikkud": "חֲפִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7165-chafifa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיפת־": [
+ {
+ "word_nikkud": "חֲפִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7165-chafifa",
+ "gender": "feminine"
+ }
+ ],
+ "חפיפות־": [
+ {
+ "word_nikkud": "חֲפִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7165-chafifa",
+ "gender": "feminine"
+ }
+ ],
+ "חפץ": [
+ {
+ "word_nikkud": "חֵפֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7773-chefetz",
+ "gender": "masculine"
+ }
+ ],
+ "חפצים": [
+ {
+ "word_nikkud": "חֵפֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7773-chefetz",
+ "gender": "masculine"
+ }
+ ],
+ "חפץ־": [
+ {
+ "word_nikkud": "חֵפֶץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7773-chefetz",
+ "gender": "masculine"
+ }
+ ],
+ "חפצי־": [
+ {
+ "word_nikkud": "חֵפֶץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7773-chefetz",
+ "gender": "masculine"
+ }
+ ],
+ "חפירה": [
+ {
+ "word_nikkud": "חֲפִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6693-chafira",
+ "gender": "feminine"
+ }
+ ],
+ "חפירות": [
+ {
+ "word_nikkud": "חֲפִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6693-chafira",
+ "gender": "feminine"
+ }
+ ],
+ "חפירת־": [
+ {
+ "word_nikkud": "חֲפִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6693-chafira",
+ "gender": "feminine"
+ }
+ ],
+ "חפירות־": [
+ {
+ "word_nikkud": "חֲפִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6693-chafira",
+ "gender": "feminine"
+ }
+ ],
+ "מחפר": [
+ {
+ "word_nikkud": "מַחְפֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6712-machper",
+ "gender": "masculine"
+ }
+ ],
+ "מחפרים": [
+ {
+ "word_nikkud": "מַחְפֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6712-machper",
+ "gender": "masculine"
+ }
+ ],
+ "מחפר־": [
+ {
+ "word_nikkud": "מַחְפֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6712-machper",
+ "gender": "masculine"
+ }
+ ],
+ "מחפרי־": [
+ {
+ "word_nikkud": "מַחְפֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6712-machper",
+ "gender": "masculine"
+ }
+ ],
+ "חיפוש": [
+ {
+ "word_nikkud": "חִפּוּשׂ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2964-chipus",
+ "gender": "masculine"
+ }
+ ],
+ "חיפושים": [
+ {
+ "word_nikkud": "חִפּוּשׂ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2964-chipus",
+ "gender": "masculine"
+ }
+ ],
+ "חיפוש־": [
+ {
+ "word_nikkud": "חִפּוּשׂ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2964-chipus",
+ "gender": "masculine"
+ }
+ ],
+ "חיפושי־": [
+ {
+ "word_nikkud": "חִפּוּשׂ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2964-chipus",
+ "gender": "masculine"
+ }
+ ],
+ "תחפושת": [
+ {
+ "word_nikkud": "תַּחְפֹּשֶׂת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4078-tachposet",
+ "gender": "feminine"
+ }
+ ],
+ "תחפושות": [
+ {
+ "word_nikkud": "תַּחְפֹּשֶׂת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4078-tachposet",
+ "gender": "feminine"
+ }
+ ],
+ "תחפושת־": [
+ {
+ "word_nikkud": "תַּחְפֹּשֶׂת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4078-tachposet",
+ "gender": "feminine"
+ }
+ ],
+ "תחפושות־": [
+ {
+ "word_nikkud": "תַּחְפֹּשֶׂת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4078-tachposet",
+ "gender": "feminine"
+ }
+ ],
+ "חופש": [
+ {
+ "word_nikkud": "חֹפֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5397-chofesh",
+ "gender": "masculine"
+ }
+ ],
+ "חופשים": [
+ {
+ "word_nikkud": "חֹפֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5397-chofesh",
+ "gender": "masculine"
+ }
+ ],
+ "חופש־": [
+ {
+ "word_nikkud": "חֹפֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5397-chofesh",
+ "gender": "masculine"
+ }
+ ],
+ "חופשי־": [
+ {
+ "word_nikkud": "חֹפֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5397-chofesh",
+ "gender": "masculine"
+ }
+ ],
+ "חופשה": [
+ {
+ "word_nikkud": "חֻפְשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6135-chufsha",
+ "gender": "feminine"
+ }
+ ],
+ "חופשות": [
+ {
+ "word_nikkud": "חֻפְשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6135-chufsha",
+ "gender": "feminine"
+ }
+ ],
+ "חופשת־": [
+ {
+ "word_nikkud": "חֻפְשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6135-chufsha",
+ "gender": "feminine"
+ }
+ ],
+ "חופשות־": [
+ {
+ "word_nikkud": "חֻפְשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6135-chufsha",
+ "gender": "feminine"
+ }
+ ],
+ "מחצב": [
+ {
+ "word_nikkud": "מַחְצָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3523-machtzav",
+ "gender": "masculine"
+ }
+ ],
+ "מחצבים": [
+ {
+ "word_nikkud": "מַחְצָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3523-machtzav",
+ "gender": "masculine"
+ }
+ ],
+ "מחצב־": [
+ {
+ "word_nikkud": "מַחְצָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3523-machtzav",
+ "gender": "masculine"
+ }
+ ],
+ "מחצבי־": [
+ {
+ "word_nikkud": "מַחְצָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3523-machtzav",
+ "gender": "masculine"
+ }
+ ],
+ "חצב": [
+ {
+ "word_nikkud": "חָצָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4105-chatzav",
+ "gender": "masculine"
+ }
+ ],
+ "חצבים": [
+ {
+ "word_nikkud": "חָצָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4105-chatzav",
+ "gender": "masculine"
+ }
+ ],
+ "חצב־": [
+ {
+ "word_nikkud": "חָצָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4105-chatzav",
+ "gender": "masculine"
+ }
+ ],
+ "חצבי־": [
+ {
+ "word_nikkud": "חָצָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4105-chatzav",
+ "gender": "masculine"
+ }
+ ],
+ "חצובה": [
+ {
+ "word_nikkud": "חֲצוּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7988-chatzuva",
+ "gender": "feminine"
+ }
+ ],
+ "חצובות": [
+ {
+ "word_nikkud": "חֲצוּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7988-chatzuva",
+ "gender": "feminine"
+ }
+ ],
+ "חצובת־": [
+ {
+ "word_nikkud": "חֲצוּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7988-chatzuva",
+ "gender": "feminine"
+ }
+ ],
+ "חצובות־": [
+ {
+ "word_nikkud": "חֲצוּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7988-chatzuva",
+ "gender": "feminine"
+ }
+ ],
+ "חצבת": [
+ {
+ "word_nikkud": "חַצֶּבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8025-chatzevet",
+ "gender": "feminine"
+ }
+ ],
+ "חצבות": [
+ {
+ "word_nikkud": "חַצֶּבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8025-chatzevet",
+ "gender": "feminine"
+ }
+ ],
+ "חצבת־": [
+ {
+ "word_nikkud": "חַצֶּבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8025-chatzevet",
+ "gender": "feminine"
+ }
+ ],
+ "חצבות־": [
+ {
+ "word_nikkud": "חַצֶּבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8025-chatzevet",
+ "gender": "feminine"
+ }
+ ],
+ "חוצב": [
+ {
+ "word_nikkud": "חוֹצֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9196-chotzev",
+ "gender": "masculine"
+ }
+ ],
+ "חוצבים": [
+ {
+ "word_nikkud": "חוֹצֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9196-chotzev",
+ "gender": "masculine"
+ }
+ ],
+ "חוצב־": [
+ {
+ "word_nikkud": "חוֹצֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9196-chotzev",
+ "gender": "masculine"
+ }
+ ],
+ "חוצבי־": [
+ {
+ "word_nikkud": "חוֹצֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9196-chotzev",
+ "gender": "masculine"
+ }
+ ],
+ "חצוצרה": [
+ {
+ "word_nikkud": "חֲצוֹצְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8275-chatzotzra",
+ "gender": "feminine"
+ }
+ ],
+ "חצוצרות": [
+ {
+ "word_nikkud": "חֲצוֹצְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8275-chatzotzra",
+ "gender": "feminine"
+ }
+ ],
+ "חצוצרת־": [
+ {
+ "word_nikkud": "חֲצוֹצְרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8275-chatzotzra",
+ "gender": "feminine"
+ }
+ ],
+ "חצוצרות־": [
+ {
+ "word_nikkud": "חֲצוֹצְרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8275-chatzotzra",
+ "gender": "feminine"
+ }
+ ],
+ "מחצית": [
+ {
+ "word_nikkud": "מַחֲצִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5313-machatzit",
+ "gender": "feminine"
+ }
+ ],
+ "מחציות": [
+ {
+ "word_nikkud": "מַחֲצִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5313-machatzit",
+ "gender": "feminine"
+ }
+ ],
+ "מחצית־": [
+ {
+ "word_nikkud": "מַחֲצִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5313-machatzit",
+ "gender": "feminine"
+ }
+ ],
+ "מחציות־": [
+ {
+ "word_nikkud": "מַחֲצִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5313-machatzit",
+ "gender": "feminine"
+ }
+ ],
+ "חצאית": [
+ {
+ "word_nikkud": "חֲצָאִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5744-chatzait",
+ "gender": "feminine"
+ }
+ ],
+ "חצאיות": [
+ {
+ "word_nikkud": "חֲצָאִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5744-chatzait",
+ "gender": "feminine"
+ }
+ ],
+ "חצאית־": [
+ {
+ "word_nikkud": "חֲצָאִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5744-chatzait",
+ "gender": "feminine"
+ }
+ ],
+ "חצאיות־": [
+ {
+ "word_nikkud": "חֲצָאִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5744-chatzait",
+ "gender": "feminine"
+ }
+ ],
+ "חצי": [
+ {
+ "word_nikkud": "חֶצִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4488-chetzi",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חֶצִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4488-chetzi",
+ "gender": "masculine"
+ }
+ ],
+ "חצאים": [
+ {
+ "word_nikkud": "חֶצִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4488-chetzi",
+ "gender": "masculine"
+ }
+ ],
+ "חצי־": [
+ {
+ "word_nikkud": "חֶצִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4488-chetzi",
+ "gender": "masculine"
+ }
+ ],
+ "חצאי־": [
+ {
+ "word_nikkud": "חֶצִי",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4488-chetzi",
+ "gender": "masculine"
+ }
+ ],
+ "יחץ": [
+ {
+ "word_nikkud": "יַחַץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6167-yachatz",
+ "gender": ""
+ }
+ ],
+ "חצות": [
+ {
+ "word_nikkud": "חֲצוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6515-chatzot",
+ "gender": "feminine"
+ }
+ ],
+ "חצות־": [
+ {
+ "word_nikkud": "חֲצוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6515-chatzot",
+ "gender": "feminine"
+ }
+ ],
+ "חציל": [
+ {
+ "word_nikkud": "חָצִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7382-chatzil",
+ "gender": "masculine"
+ }
+ ],
+ "חצילים": [
+ {
+ "word_nikkud": "חָצִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7382-chatzil",
+ "gender": "masculine"
+ }
+ ],
+ "חציל־": [
+ {
+ "word_nikkud": "חָצִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7382-chatzil",
+ "gender": "masculine"
+ }
+ ],
+ "חצילי־": [
+ {
+ "word_nikkud": "חָצִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7382-chatzil",
+ "gender": "masculine"
+ }
+ ],
+ "מחצלת": [
+ {
+ "word_nikkud": "מַחְצֶלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7288-machtzelet",
+ "gender": "feminine"
+ }
+ ],
+ "מחצלות": [
+ {
+ "word_nikkud": "מַחְצֶלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7288-machtzelet",
+ "gender": "feminine"
+ }
+ ],
+ "מחצלת־": [
+ {
+ "word_nikkud": "מַחְצֶלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7288-machtzelet",
+ "gender": "feminine"
+ }
+ ],
+ "מחצלות־": [
+ {
+ "word_nikkud": "מַחְצֶלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7288-machtzelet",
+ "gender": "feminine"
+ }
+ ],
+ "חוצפה": [
+ {
+ "word_nikkud": "חֻצְפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3239-chutzpa",
+ "gender": "feminine"
+ }
+ ],
+ "חוצפת־": [
+ {
+ "word_nikkud": "חֻצְפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3239-chutzpa",
+ "gender": "feminine"
+ }
+ ],
+ "חץ": [
+ {
+ "word_nikkud": "חֵץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6850-chetz",
+ "gender": "masculine"
+ }
+ ],
+ "חיצים": [
+ {
+ "word_nikkud": "חֵץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6850-chetz",
+ "gender": "masculine"
+ }
+ ],
+ "חץ־": [
+ {
+ "word_nikkud": "חֵץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6850-chetz",
+ "gender": "masculine"
+ }
+ ],
+ "חיצי־": [
+ {
+ "word_nikkud": "חֵץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6850-chetz",
+ "gender": "masculine"
+ }
+ ],
+ "מחיצה": [
+ {
+ "word_nikkud": "מְחִצָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3791-mechitza",
+ "gender": "feminine"
+ }
+ ],
+ "מחיצות": [
+ {
+ "word_nikkud": "מְחִצָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3791-mechitza",
+ "gender": "feminine"
+ }
+ ],
+ "מחיצת־": [
+ {
+ "word_nikkud": "מְחִצָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3791-mechitza",
+ "gender": "feminine"
+ }
+ ],
+ "מחיצות־": [
+ {
+ "word_nikkud": "מְחִצָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3791-mechitza",
+ "gender": "feminine"
+ }
+ ],
+ "חצץ": [
+ {
+ "word_nikkud": "חָצָץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7767-chatzatz",
+ "gender": "masculine"
+ }
+ ],
+ "חצצים": [
+ {
+ "word_nikkud": "חָצָץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7767-chatzatz",
+ "gender": "masculine"
+ }
+ ],
+ "חצץ־": [
+ {
+ "word_nikkud": "חָצָץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7767-chatzatz",
+ "gender": "masculine"
+ }
+ ],
+ "חצצי־": [
+ {
+ "word_nikkud": "חָצָץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7767-chatzatz",
+ "gender": "masculine"
+ }
+ ],
+ "חצר": [
+ {
+ "word_nikkud": "חָצֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4571-chatzer",
+ "gender": "feminine"
+ }
+ ],
+ "חצרות": [
+ {
+ "word_nikkud": "חָצֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4571-chatzer",
+ "gender": "feminine"
+ }
+ ],
+ "חצר־": [
+ {
+ "word_nikkud": "חָצֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4571-chatzer",
+ "gender": "feminine"
+ }
+ ],
+ "חצרות־": [
+ {
+ "word_nikkud": "חָצֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4571-chatzer",
+ "gender": "feminine"
+ }
+ ],
+ "חציר": [
+ {
+ "word_nikkud": "חָצִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8253-chatzir",
+ "gender": "masculine"
+ }
+ ],
+ "חצירים": [
+ {
+ "word_nikkud": "חָצִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8253-chatzir",
+ "gender": "masculine"
+ }
+ ],
+ "חציר־": [
+ {
+ "word_nikkud": "חָצִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8253-chatzir",
+ "gender": "masculine"
+ }
+ ],
+ "חצירי־": [
+ {
+ "word_nikkud": "חָצִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8253-chatzir",
+ "gender": "masculine"
+ }
+ ],
+ "חיקוי": [
+ {
+ "word_nikkud": "חִקּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4354-chikuy",
+ "gender": "masculine"
+ }
+ ],
+ "חיקויים": [
+ {
+ "word_nikkud": "חִקּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4354-chikuy",
+ "gender": "masculine"
+ }
+ ],
+ "חיקוי־": [
+ {
+ "word_nikkud": "חִקּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4354-chikuy",
+ "gender": "masculine"
+ }
+ ],
+ "חיקויי־": [
+ {
+ "word_nikkud": "חִקּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4354-chikuy",
+ "gender": "masculine"
+ }
+ ],
+ "חקיין": [
+ {
+ "word_nikkud": "חַקְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3431-chakyan",
+ "gender": "masculine"
+ }
+ ],
+ "חקיינים": [
+ {
+ "word_nikkud": "חַקְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3431-chakyan",
+ "gender": "masculine"
+ }
+ ],
+ "חקיין־": [
+ {
+ "word_nikkud": "חַקְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3431-chakyan",
+ "gender": "masculine"
+ }
+ ],
+ "חקייני־": [
+ {
+ "word_nikkud": "חַקְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3431-chakyan",
+ "gender": "masculine"
+ }
+ ],
+ "חקלאות": [
+ {
+ "word_nikkud": "חַקְלָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6582-chaklaut",
+ "gender": "feminine"
+ }
+ ],
+ "חקלאויות": [
+ {
+ "word_nikkud": "חַקְלָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6582-chaklaut",
+ "gender": "feminine"
+ }
+ ],
+ "חקלאות־": [
+ {
+ "word_nikkud": "חַקְלָאוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6582-chaklaut",
+ "gender": "feminine"
+ }
+ ],
+ "חקלאויות־": [
+ {
+ "word_nikkud": "חַקְלָאוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6582-chaklaut",
+ "gender": "feminine"
+ }
+ ],
+ "חקלאי": [
+ {
+ "word_nikkud": "חַקְלַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6580-chaklay",
+ "gender": "masculine"
+ }
+ ],
+ "חקלאים": [
+ {
+ "word_nikkud": "חַקְלַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6580-chaklay",
+ "gender": "masculine"
+ }
+ ],
+ "חקלאי־": [
+ {
+ "word_nikkud": "חַקְלַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6580-chaklay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חַקְלַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6580-chaklay",
+ "gender": "masculine"
+ }
+ ],
+ "חוקן": [
+ {
+ "word_nikkud": "חֹקֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3946-choken",
+ "gender": "masculine"
+ }
+ ],
+ "חוקנים": [
+ {
+ "word_nikkud": "חֹקֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3946-choken",
+ "gender": "masculine"
+ }
+ ],
+ "חוקן־": [
+ {
+ "word_nikkud": "חֹקֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3946-choken",
+ "gender": "masculine"
+ }
+ ],
+ "חוקני־": [
+ {
+ "word_nikkud": "חֹקֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3946-choken",
+ "gender": "masculine"
+ }
+ ],
+ "חוקה": [
+ {
+ "word_nikkud": "חֻקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8036-chuka",
+ "gender": "feminine"
+ }
+ ],
+ "חוקות": [
+ {
+ "word_nikkud": "חֻקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8036-chuka",
+ "gender": "feminine"
+ }
+ ],
+ "חוקת־": [
+ {
+ "word_nikkud": "חֻקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8036-chuka",
+ "gender": "feminine"
+ }
+ ],
+ "חוקות־": [
+ {
+ "word_nikkud": "חֻקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8036-chuka",
+ "gender": "feminine"
+ }
+ ],
+ "תחיקה": [
+ {
+ "word_nikkud": "תְּחִקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3795-tchika",
+ "gender": "feminine"
+ }
+ ],
+ "תחיקות": [
+ {
+ "word_nikkud": "תְּחִקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3795-tchika",
+ "gender": "feminine"
+ }
+ ],
+ "תחיקת־": [
+ {
+ "word_nikkud": "תְּחִקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3795-tchika",
+ "gender": "feminine"
+ }
+ ],
+ "תחיקות־": [
+ {
+ "word_nikkud": "תְּחִקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3795-tchika",
+ "gender": "feminine"
+ }
+ ],
+ "חוק": [
+ {
+ "word_nikkud": "חֹק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5269-chok",
+ "gender": "masculine"
+ }
+ ],
+ "חוקים": [
+ {
+ "word_nikkud": "חֹק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5269-chok",
+ "gender": "masculine"
+ }
+ ],
+ "חוק־": [
+ {
+ "word_nikkud": "חֹק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5269-chok",
+ "gender": "masculine"
+ }
+ ],
+ "חוקי־": [
+ {
+ "word_nikkud": "חֹק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5269-chok",
+ "gender": "masculine"
+ }
+ ],
+ "חקיקה": [
+ {
+ "word_nikkud": "חֲקִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6708-chakika",
+ "gender": "feminine"
+ }
+ ],
+ "חקיקות": [
+ {
+ "word_nikkud": "חֲקִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6708-chakika",
+ "gender": "feminine"
+ }
+ ],
+ "חקיקת־": [
+ {
+ "word_nikkud": "חֲקִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6708-chakika",
+ "gender": "feminine"
+ }
+ ],
+ "חקיקות־": [
+ {
+ "word_nikkud": "חֲקִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6708-chakika",
+ "gender": "feminine"
+ }
+ ],
+ "תחקיר": [
+ {
+ "word_nikkud": "תַּחְקִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3920-tachkir",
+ "gender": "masculine"
+ }
+ ],
+ "תחקירים": [
+ {
+ "word_nikkud": "תַּחְקִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3920-tachkir",
+ "gender": "masculine"
+ }
+ ],
+ "תחקיר־": [
+ {
+ "word_nikkud": "תַּחְקִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3920-tachkir",
+ "gender": "masculine"
+ }
+ ],
+ "תחקירי־": [
+ {
+ "word_nikkud": "תַּחְקִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3920-tachkir",
+ "gender": "masculine"
+ }
+ ],
+ "מחקר": [
+ {
+ "word_nikkud": "מֶחְקָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4134-mechkar",
+ "gender": "masculine"
+ }
+ ],
+ "מחקרים": [
+ {
+ "word_nikkud": "מֶחְקָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4134-mechkar",
+ "gender": "masculine"
+ }
+ ],
+ "מחקר־": [
+ {
+ "word_nikkud": "מֶחְקָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4134-mechkar",
+ "gender": "masculine"
+ }
+ ],
+ "מחקרי־": [
+ {
+ "word_nikkud": "מֶחְקָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4134-mechkar",
+ "gender": "masculine"
+ }
+ ],
+ "חקר": [
+ {
+ "word_nikkud": "חֵקֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4135-cheker",
+ "gender": "masculine"
+ }
+ ],
+ "חקרים": [
+ {
+ "word_nikkud": "חֵקֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4135-cheker",
+ "gender": "masculine"
+ }
+ ],
+ "חקר־": [
+ {
+ "word_nikkud": "חֵקֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4135-cheker",
+ "gender": "masculine"
+ }
+ ],
+ "חקרי־": [
+ {
+ "word_nikkud": "חֵקֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4135-cheker",
+ "gender": "masculine"
+ }
+ ],
+ "חקירה": [
+ {
+ "word_nikkud": "חֲקִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8540-chakira",
+ "gender": "feminine"
+ }
+ ],
+ "חקירות": [
+ {
+ "word_nikkud": "חֲקִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8540-chakira",
+ "gender": "feminine"
+ }
+ ],
+ "חקירת־": [
+ {
+ "word_nikkud": "חֲקִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8540-chakira",
+ "gender": "feminine"
+ }
+ ],
+ "חקירות־": [
+ {
+ "word_nikkud": "חֲקִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8540-chakira",
+ "gender": "feminine"
+ }
+ ],
+ "חרא": [
+ {
+ "word_nikkud": "חָרָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7655-chara",
+ "gender": ""
+ }
+ ],
+ "חורבן": [
+ {
+ "word_nikkud": "חֻרְבָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4917-churban",
+ "gender": "masculine"
+ }
+ ],
+ "חורבנות": [
+ {
+ "word_nikkud": "חֻרְבָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4917-churban",
+ "gender": "masculine"
+ }
+ ],
+ "חורבן־": [
+ {
+ "word_nikkud": "חֻרְבָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4917-churban",
+ "gender": "masculine"
+ }
+ ],
+ "חורבנות־": [
+ {
+ "word_nikkud": "חֻרְבָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4917-churban",
+ "gender": "masculine"
+ }
+ ],
+ "חרב": [
+ {
+ "word_nikkud": "חֶרֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6495-cherev",
+ "gender": "feminine"
+ }
+ ],
+ "חרבות": [
+ {
+ "word_nikkud": "חֶרֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6495-cherev",
+ "gender": "feminine"
+ }
+ ],
+ "חרב־": [
+ {
+ "word_nikkud": "חֶרֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6495-cherev",
+ "gender": "feminine"
+ }
+ ],
+ "חרבות־": [
+ {
+ "word_nikkud": "חֶרֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6495-cherev",
+ "gender": "feminine"
+ }
+ ],
+ "חריגה": [
+ {
+ "word_nikkud": "חֲרִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7562-chariga",
+ "gender": "feminine"
+ }
+ ],
+ "חריגות": [
+ {
+ "word_nikkud": "חֲרִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7562-chariga",
+ "gender": "feminine"
+ }
+ ],
+ "חריגת־": [
+ {
+ "word_nikkud": "חֲרִיגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7562-chariga",
+ "gender": "feminine"
+ }
+ ],
+ "חריגות־": [
+ {
+ "word_nikkud": "חֲרִיגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7562-chariga",
+ "gender": "feminine"
+ }
+ ],
+ "חרדה": [
+ {
+ "word_nikkud": "חֲרָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4977-charada",
+ "gender": "feminine"
+ }
+ ],
+ "חרדות": [
+ {
+ "word_nikkud": "חֲרָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4977-charada",
+ "gender": "feminine"
+ }
+ ],
+ "חרדת־": [
+ {
+ "word_nikkud": "חֲרָדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4977-charada",
+ "gender": "feminine"
+ }
+ ],
+ "חרדות־": [
+ {
+ "word_nikkud": "חֲרָדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4977-charada",
+ "gender": "feminine"
+ }
+ ],
+ "חרדל": [
+ {
+ "word_nikkud": "חַרְדָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7208-chardal",
+ "gender": ""
+ }
+ ],
+ "חרדלים": [
+ {
+ "word_nikkud": "חַרְדָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7208-chardal",
+ "gender": ""
+ }
+ ],
+ "חרדל־": [
+ {
+ "word_nikkud": "חַרְדָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7208-chardal",
+ "gender": ""
+ }
+ ],
+ "חרדלי־": [
+ {
+ "word_nikkud": "חַרְדָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7208-chardal",
+ "gender": ""
+ }
+ ],
+ "חרוז": [
+ {
+ "word_nikkud": "חָרוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5867-charuz",
+ "gender": "masculine"
+ }
+ ],
+ "חרוזים": [
+ {
+ "word_nikkud": "חָרוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5867-charuz",
+ "gender": "masculine"
+ }
+ ],
+ "חרוז־": [
+ {
+ "word_nikkud": "חָרוּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5867-charuz",
+ "gender": "masculine"
+ }
+ ],
+ "חרוזי־": [
+ {
+ "word_nikkud": "חָרוּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5867-charuz",
+ "gender": "masculine"
+ }
+ ],
+ "חריזה": [
+ {
+ "word_nikkud": "חֲרִיזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5866-chariza",
+ "gender": "feminine"
+ }
+ ],
+ "חריזות": [
+ {
+ "word_nikkud": "חֲרִיזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5866-chariza",
+ "gender": "feminine"
+ }
+ ],
+ "חריזת־": [
+ {
+ "word_nikkud": "חֲרִיזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5866-chariza",
+ "gender": "feminine"
+ }
+ ],
+ "חריזות־": [
+ {
+ "word_nikkud": "חֲרִיזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5866-chariza",
+ "gender": "feminine"
+ }
+ ],
+ "מחרוזת": [
+ {
+ "word_nikkud": "מַחְרֹזֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7363-machrozet",
+ "gender": "feminine"
+ }
+ ],
+ "מחרוזות": [
+ {
+ "word_nikkud": "מַחְרֹזֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7363-machrozet",
+ "gender": "feminine"
+ }
+ ],
+ "מחרוזת־": [
+ {
+ "word_nikkud": "מַחְרֹזֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7363-machrozet",
+ "gender": "feminine"
+ }
+ ],
+ "מחרוזות־": [
+ {
+ "word_nikkud": "מַחְרֹזֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7363-machrozet",
+ "gender": "feminine"
+ }
+ ],
+ "חרטה": [
+ {
+ "word_nikkud": "חֲרָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3824-charata",
+ "gender": "feminine"
+ }
+ ],
+ "חרטות": [
+ {
+ "word_nikkud": "חֲרָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3824-charata",
+ "gender": "feminine"
+ }
+ ],
+ "חרטת־": [
+ {
+ "word_nikkud": "חֲרָטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3824-charata",
+ "gender": "feminine"
+ }
+ ],
+ "חרטות־": [
+ {
+ "word_nikkud": "חֲרָטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3824-charata",
+ "gender": "feminine"
+ }
+ ],
+ "חרטט": [
+ {
+ "word_nikkud": "חַרְטָט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4608-chartat",
+ "gender": "masculine"
+ }
+ ],
+ "תחרות": [
+ {
+ "word_nikkud": "תַּחֲרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5907-tacharut",
+ "gender": "feminine"
+ }
+ ],
+ "תחרויות": [
+ {
+ "word_nikkud": "תַּחֲרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5907-tacharut",
+ "gender": "feminine"
+ }
+ ],
+ "תחרות־": [
+ {
+ "word_nikkud": "תַּחֲרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5907-tacharut",
+ "gender": "feminine"
+ }
+ ],
+ "תחרויות־": [
+ {
+ "word_nikkud": "תַּחֲרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5907-tacharut",
+ "gender": "feminine"
+ }
+ ],
+ "התחרות": [
+ {
+ "word_nikkud": "הִתְחָרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5047-hitcharut",
+ "gender": "feminine"
+ }
+ ],
+ "התחרויות": [
+ {
+ "word_nikkud": "הִתְחָרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5047-hitcharut",
+ "gender": "feminine"
+ }
+ ],
+ "התחרות־": [
+ {
+ "word_nikkud": "הִתְחָרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5047-hitcharut",
+ "gender": "feminine"
+ }
+ ],
+ "התחרויות־": [
+ {
+ "word_nikkud": "הִתְחָרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5047-hitcharut",
+ "gender": "feminine"
+ }
+ ],
+ "מתחרה": [
+ {
+ "word_nikkud": "מִתְחָרֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5046-mitchare",
+ "gender": "masculine"
+ }
+ ],
+ "מתחרים": [
+ {
+ "word_nikkud": "מִתְחָרֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5046-mitchare",
+ "gender": "masculine"
+ }
+ ],
+ "מתחרה־": [
+ {
+ "word_nikkud": "מִתְחָרֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5046-mitchare",
+ "gender": "masculine"
+ }
+ ],
+ "מתחרי־": [
+ {
+ "word_nikkud": "מִתְחָרֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5046-mitchare",
+ "gender": "masculine"
+ }
+ ],
+ "חרון": [
+ {
+ "word_nikkud": "חָרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9091-charon",
+ "gender": "masculine"
+ }
+ ],
+ "חרונים": [
+ {
+ "word_nikkud": "חָרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9091-charon",
+ "gender": "masculine"
+ }
+ ],
+ "חרון־": [
+ {
+ "word_nikkud": "חָרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9091-charon",
+ "gender": "masculine"
+ }
+ ],
+ "חרוני־": [
+ {
+ "word_nikkud": "חָרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9091-charon",
+ "gender": "masculine"
+ }
+ ],
+ "חרך": [
+ {
+ "word_nikkud": "חָרָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4161-charach",
+ "gender": "masculine"
+ }
+ ],
+ "חרכים": [
+ {
+ "word_nikkud": "חָרָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4161-charach",
+ "gender": "masculine"
+ }
+ ],
+ "חרך־": [
+ {
+ "word_nikkud": "חָרָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4161-charach",
+ "gender": "masculine"
+ }
+ ],
+ "חרכי־": [
+ {
+ "word_nikkud": "חָרָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4161-charach",
+ "gender": "masculine"
+ }
+ ],
+ "חריכה": [
+ {
+ "word_nikkud": "חֲרִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8282-charicha",
+ "gender": "feminine"
+ }
+ ],
+ "חריכות": [
+ {
+ "word_nikkud": "חֲרִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8282-charicha",
+ "gender": "feminine"
+ }
+ ],
+ "חריכת־": [
+ {
+ "word_nikkud": "חֲרִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8282-charicha",
+ "gender": "feminine"
+ }
+ ],
+ "חריכות־": [
+ {
+ "word_nikkud": "חֲרִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8282-charicha",
+ "gender": "feminine"
+ }
+ ],
+ "חירום": [
+ {
+ "word_nikkud": "חֵרוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5199-cherum",
+ "gender": "masculine"
+ }
+ ],
+ "חירומים": [
+ {
+ "word_nikkud": "חֵרוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5199-cherum",
+ "gender": "masculine"
+ }
+ ],
+ "חירום־": [
+ {
+ "word_nikkud": "חֵרוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5199-cherum",
+ "gender": "masculine"
+ }
+ ],
+ "חירומי־": [
+ {
+ "word_nikkud": "חֵרוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5199-cherum",
+ "gender": "masculine"
+ }
+ ],
+ "חרם": [
+ {
+ "word_nikkud": "חֵרֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8902-cherem",
+ "gender": "masculine"
+ }
+ ],
+ "חרמים": [
+ {
+ "word_nikkud": "חֵרֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8902-cherem",
+ "gender": "masculine"
+ }
+ ],
+ "חרם־": [
+ {
+ "word_nikkud": "חֵרֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8902-cherem",
+ "gender": "masculine"
+ }
+ ],
+ "חרמי־": [
+ {
+ "word_nikkud": "חֵרֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8902-cherem",
+ "gender": "masculine"
+ }
+ ],
+ "חרס": [
+ {
+ "word_nikkud": "חֶרֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6615-cheres",
+ "gender": "masculine"
+ }
+ ],
+ "חרסים": [
+ {
+ "word_nikkud": "חֶרֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6615-cheres",
+ "gender": "masculine"
+ }
+ ],
+ "חרס־": [
+ {
+ "word_nikkud": "חֶרֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6615-cheres",
+ "gender": "masculine"
+ }
+ ],
+ "חרסי־": [
+ {
+ "word_nikkud": "חֶרֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6615-cheres",
+ "gender": "masculine"
+ }
+ ],
+ "חרסית": [
+ {
+ "word_nikkud": "חַרְסִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6616-charsit",
+ "gender": "feminine"
+ }
+ ],
+ "חרסיות": [
+ {
+ "word_nikkud": "חַרְסִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6616-charsit",
+ "gender": "feminine"
+ }
+ ],
+ "חרסית־": [
+ {
+ "word_nikkud": "חַרְסִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6616-charsit",
+ "gender": "feminine"
+ }
+ ],
+ "חרסיות־": [
+ {
+ "word_nikkud": "חַרְסִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6616-charsit",
+ "gender": "feminine"
+ }
+ ],
+ "חרסינה": [
+ {
+ "word_nikkud": "חַרְסִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8945-charsina",
+ "gender": "feminine"
+ }
+ ],
+ "חרסינת־": [
+ {
+ "word_nikkud": "חַרְסִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8945-charsina",
+ "gender": "feminine"
+ }
+ ],
+ "חורף": [
+ {
+ "word_nikkud": "חֹרֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4033-choref",
+ "gender": "masculine"
+ }
+ ],
+ "חורפים": [
+ {
+ "word_nikkud": "חֹרֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4033-choref",
+ "gender": "masculine"
+ }
+ ],
+ "חורף־": [
+ {
+ "word_nikkud": "חֹרֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4033-choref",
+ "gender": "masculine"
+ }
+ ],
+ "חורפי־": [
+ {
+ "word_nikkud": "חֹרֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4033-choref",
+ "gender": "masculine"
+ }
+ ],
+ "חרפה": [
+ {
+ "word_nikkud": "חֶרְפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9242-cherpa",
+ "gender": "feminine"
+ }
+ ],
+ "חרפות": [
+ {
+ "word_nikkud": "חֶרְפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9242-cherpa",
+ "gender": "feminine"
+ }
+ ],
+ "חרפת־": [
+ {
+ "word_nikkud": "חֶרְפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9242-cherpa",
+ "gender": "feminine"
+ }
+ ],
+ "חרפות־": [
+ {
+ "word_nikkud": "חֶרְפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9242-cherpa",
+ "gender": "feminine"
+ }
+ ],
+ "חריץ": [
+ {
+ "word_nikkud": "חָרִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8956-charitz",
+ "gender": "masculine"
+ }
+ ],
+ "חריצים": [
+ {
+ "word_nikkud": "חָרִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8956-charitz",
+ "gender": "masculine"
+ }
+ ],
+ "חריץ־": [
+ {
+ "word_nikkud": "חָרִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8956-charitz",
+ "gender": "masculine"
+ }
+ ],
+ "חריצי־": [
+ {
+ "word_nikkud": "חָרִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8956-charitz",
+ "gender": "masculine"
+ }
+ ],
+ "חרק": [
+ {
+ "word_nikkud": "חֶרֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6157-cherek",
+ "gender": "masculine"
+ }
+ ],
+ "חרקים": [
+ {
+ "word_nikkud": "חֶרֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6157-cherek",
+ "gender": "masculine"
+ }
+ ],
+ "חרק־": [
+ {
+ "word_nikkud": "חֶרֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6157-cherek",
+ "gender": "masculine"
+ }
+ ],
+ "חרקי־": [
+ {
+ "word_nikkud": "חֶרֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6157-cherek",
+ "gender": "masculine"
+ }
+ ],
+ "חור": [
+ {
+ "word_nikkud": "חֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6399-chor",
+ "gender": "masculine"
+ }
+ ],
+ "חורים": [
+ {
+ "word_nikkud": "חֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6399-chor",
+ "gender": "masculine"
+ }
+ ],
+ "חור־": [
+ {
+ "word_nikkud": "חֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6399-chor",
+ "gender": "masculine"
+ }
+ ],
+ "חורי־": [
+ {
+ "word_nikkud": "חֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6399-chor",
+ "gender": "masculine"
+ }
+ ],
+ "חירות": [
+ {
+ "word_nikkud": "חֵרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5497-cherut",
+ "gender": "feminine"
+ }
+ ],
+ "חירויות": [
+ {
+ "word_nikkud": "חֵרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5497-cherut",
+ "gender": "feminine"
+ }
+ ],
+ "חירות־": [
+ {
+ "word_nikkud": "חֵרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5497-cherut",
+ "gender": "feminine"
+ }
+ ],
+ "חירויות־": [
+ {
+ "word_nikkud": "חֵרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5497-cherut",
+ "gender": "feminine"
+ }
+ ],
+ "מחרשה": [
+ {
+ "word_nikkud": "מַחְרֵשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4127-machresha",
+ "gender": "feminine"
+ }
+ ],
+ "מחרשות": [
+ {
+ "word_nikkud": "מַחְרֵשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4127-machresha",
+ "gender": "feminine"
+ }
+ ],
+ "מחרשת־": [
+ {
+ "word_nikkud": "מַחְרֵשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4127-machresha",
+ "gender": "feminine"
+ }
+ ],
+ "מחרשות־": [
+ {
+ "word_nikkud": "מַחְרֵשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4127-machresha",
+ "gender": "feminine"
+ }
+ ],
+ "חורשה": [
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ }
+ ],
+ "חורשות": [
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ }
+ ],
+ "חורשת־": [
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ }
+ ],
+ "חורשות־": [
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "חֻרְשָׁה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "9146-chursha",
+ "gender": "feminine"
+ }
+ ],
+ "חשבונייה": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7668-cheshboniya",
+ "gender": "masculine"
+ }
+ ],
+ "חשבוניות": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7668-cheshboniya",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5142-cheshbonit",
+ "gender": "feminine"
+ }
+ ],
+ "חשבוניית־": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7668-cheshboniya",
+ "gender": "masculine"
+ }
+ ],
+ "חשבוניות־": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7668-cheshboniya",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5142-cheshbonit",
+ "gender": "feminine"
+ }
+ ],
+ "חישוב": [
+ {
+ "word_nikkud": "חִשּׁוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2965-chishuv",
+ "gender": "masculine"
+ }
+ ],
+ "חישובים": [
+ {
+ "word_nikkud": "חִשּׁוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2965-chishuv",
+ "gender": "masculine"
+ }
+ ],
+ "חישוב־": [
+ {
+ "word_nikkud": "חִשּׁוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2965-chishuv",
+ "gender": "masculine"
+ }
+ ],
+ "חישובי־": [
+ {
+ "word_nikkud": "חִשּׁוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2965-chishuv",
+ "gender": "masculine"
+ }
+ ],
+ "התחשבות": [
+ {
+ "word_nikkud": "הִתְחַשְּׁבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3014-hitchashvut",
+ "gender": "feminine"
+ }
+ ],
+ "התחשבות־": [
+ {
+ "word_nikkud": "הִתְחַשְּׁבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3014-hitchashvut",
+ "gender": "feminine"
+ }
+ ],
+ "מחשב": [
+ {
+ "word_nikkud": "מַחְשֵׁב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3100-machshev",
+ "gender": "masculine"
+ }
+ ],
+ "מחשבים": [
+ {
+ "word_nikkud": "מַחְשֵׁב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3100-machshev",
+ "gender": "masculine"
+ }
+ ],
+ "מחשב־": [
+ {
+ "word_nikkud": "מַחְשֵׁב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3100-machshev",
+ "gender": "masculine"
+ }
+ ],
+ "מחשבי־": [
+ {
+ "word_nikkud": "מַחְשֵׁב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3100-machshev",
+ "gender": "masculine"
+ }
+ ],
+ "חשב": [
+ {
+ "word_nikkud": "חַשָּׁב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3349-chashav",
+ "gender": "masculine"
+ }
+ ],
+ "חשבים": [
+ {
+ "word_nikkud": "חַשָּׁב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3349-chashav",
+ "gender": "masculine"
+ }
+ ],
+ "חשב־": [
+ {
+ "word_nikkud": "חַשָּׁב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3349-chashav",
+ "gender": "masculine"
+ }
+ ],
+ "חשבי־": [
+ {
+ "word_nikkud": "חַשָּׁב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3349-chashav",
+ "gender": "masculine"
+ }
+ ],
+ "חשבון": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3594-cheshbon",
+ "gender": "masculine"
+ }
+ ],
+ "חשבונות": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3594-cheshbon",
+ "gender": "masculine"
+ }
+ ],
+ "חשבון־": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3594-cheshbon",
+ "gender": "masculine"
+ }
+ ],
+ "חשבונות־": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3594-cheshbon",
+ "gender": "masculine"
+ }
+ ],
+ "חשבונית": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5142-cheshbonit",
+ "gender": "feminine"
+ }
+ ],
+ "חשבונית־": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5142-cheshbonit",
+ "gender": "feminine"
+ }
+ ],
+ "מחשבון": [
+ {
+ "word_nikkud": "מַחְשְׁבוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7669-machshevon",
+ "gender": "masculine"
+ }
+ ],
+ "מחשבונים": [
+ {
+ "word_nikkud": "מַחְשְׁבוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7669-machshevon",
+ "gender": "masculine"
+ }
+ ],
+ "מחשבון־": [
+ {
+ "word_nikkud": "מַחְשְׁבוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7669-machshevon",
+ "gender": "masculine"
+ }
+ ],
+ "מחשבוני־": [
+ {
+ "word_nikkud": "מַחְשְׁבוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7669-machshevon",
+ "gender": "masculine"
+ }
+ ],
+ "חשבונאי": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7671-cheshbonay",
+ "gender": "masculine"
+ }
+ ],
+ "חשבונאים": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7671-cheshbonay",
+ "gender": "masculine"
+ }
+ ],
+ "חשבונאי־": [
+ {
+ "word_nikkud": "חֶשְׁבּוֹנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7671-cheshbonay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חֶשְׁבּוֹנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7671-cheshbonay",
+ "gender": "masculine"
+ }
+ ],
+ "חשיבה": [
+ {
+ "word_nikkud": "חֲשִׁיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8412-chashiva",
+ "gender": "feminine"
+ }
+ ],
+ "חשיבת־": [
+ {
+ "word_nikkud": "חֲשִׁיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8412-chashiva",
+ "gender": "feminine"
+ }
+ ],
+ "חשיבות": [
+ {
+ "word_nikkud": "חֲשִׁיבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8957-chashivut",
+ "gender": "feminine"
+ }
+ ],
+ "חשיבות־": [
+ {
+ "word_nikkud": "חֲשִׁיבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8957-chashivut",
+ "gender": "feminine"
+ }
+ ],
+ "מחשבה": [
+ {
+ "word_nikkud": "מַחְשָׁבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6430-machshava",
+ "gender": "feminine"
+ }
+ ],
+ "מחשבות": [
+ {
+ "word_nikkud": "מַחְשָׁבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6430-machshava",
+ "gender": "feminine"
+ }
+ ],
+ "מחשבת־": [
+ {
+ "word_nikkud": "מַחְשָׁבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6430-machshava",
+ "gender": "feminine"
+ }
+ ],
+ "מחשבות־": [
+ {
+ "word_nikkud": "מַחְשָׁבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6430-machshava",
+ "gender": "feminine"
+ }
+ ],
+ "חשד": [
+ {
+ "word_nikkud": "חֲשָׁד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3677-chashad",
+ "gender": "masculine"
+ }
+ ],
+ "חשדות": [
+ {
+ "word_nikkud": "חֲשָׁד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3677-chashad",
+ "gender": "masculine"
+ }
+ ],
+ "חשד־": [
+ {
+ "word_nikkud": "חֲשָׁד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3677-chashad",
+ "gender": "masculine"
+ }
+ ],
+ "חשדות־": [
+ {
+ "word_nikkud": "חֲשָׁד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3677-chashad",
+ "gender": "masculine"
+ }
+ ],
+ "חשאיות": [
+ {
+ "word_nikkud": "חֲשָׁאִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8139-chashaiyut",
+ "gender": "feminine"
+ }
+ ],
+ "חשאיויות": [
+ {
+ "word_nikkud": "חֲשָׁאִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8139-chashaiyut",
+ "gender": "feminine"
+ }
+ ],
+ "חשאיות־": [
+ {
+ "word_nikkud": "חֲשָׁאִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8139-chashaiyut",
+ "gender": "feminine"
+ }
+ ],
+ "חשאיויות־": [
+ {
+ "word_nikkud": "חֲשָׁאִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8139-chashaiyut",
+ "gender": "feminine"
+ }
+ ],
+ "חשאי": [
+ {
+ "word_nikkud": "חֲשַׁאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3855-chashay",
+ "gender": ""
+ }
+ ],
+ "חושך": [
+ {
+ "word_nikkud": "חֹשֶׁךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3210-choshech",
+ "gender": "masculine"
+ }
+ ],
+ "חושך־": [
+ {
+ "word_nikkud": "חֹשֶׁךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3210-choshech",
+ "gender": "masculine"
+ }
+ ],
+ "התחשמלות": [
+ {
+ "word_nikkud": "הִתְחַשְׁמְלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8330-hitchashmelut",
+ "gender": "feminine"
+ }
+ ],
+ "התחשמלויות": [
+ {
+ "word_nikkud": "הִתְחַשְׁמְלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8330-hitchashmelut",
+ "gender": "feminine"
+ }
+ ],
+ "התחשמלות־": [
+ {
+ "word_nikkud": "הִתְחַשְׁמְלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8330-hitchashmelut",
+ "gender": "feminine"
+ }
+ ],
+ "התחשמלויות־": [
+ {
+ "word_nikkud": "הִתְחַשְׁמְלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8330-hitchashmelut",
+ "gender": "feminine"
+ }
+ ],
+ "חשמל": [
+ {
+ "word_nikkud": "חַשְׁמָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4757-chashmal",
+ "gender": "masculine"
+ }
+ ],
+ "חשמל־": [
+ {
+ "word_nikkud": "חַשְׁמָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4757-chashmal",
+ "gender": "masculine"
+ }
+ ],
+ "חשמלאי": [
+ {
+ "word_nikkud": "חַשְׁמָלַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7112-chashmalay",
+ "gender": "masculine"
+ }
+ ],
+ "חשמלאים": [
+ {
+ "word_nikkud": "חַשְׁמָלַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7112-chashmalay",
+ "gender": "masculine"
+ }
+ ],
+ "חשמלאי־": [
+ {
+ "word_nikkud": "חַשְׁמָלַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7112-chashmalay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "חַשְׁמָלַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7112-chashmalay",
+ "gender": "masculine"
+ }
+ ],
+ "חשפנות": [
+ {
+ "word_nikkud": "חַשְׂפָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4575-chasfanut",
+ "gender": "feminine"
+ }
+ ],
+ "חשפנות־": [
+ {
+ "word_nikkud": "חַשְׂפָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4575-chasfanut",
+ "gender": "feminine"
+ }
+ ],
+ "חשיפה": [
+ {
+ "word_nikkud": "חֲשִׂיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3976-chasifa",
+ "gender": "feminine"
+ }
+ ],
+ "חשיפות": [
+ {
+ "word_nikkud": "חֲשִׂיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3976-chasifa",
+ "gender": "feminine"
+ }
+ ],
+ "חשיפת־": [
+ {
+ "word_nikkud": "חֲשִׂיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3976-chasifa",
+ "gender": "feminine"
+ }
+ ],
+ "חשיפות־": [
+ {
+ "word_nikkud": "חֲשִׂיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3976-chasifa",
+ "gender": "feminine"
+ }
+ ],
+ "חשפן": [
+ {
+ "word_nikkud": "חַשְׂפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4573-chasfan",
+ "gender": "masculine"
+ }
+ ],
+ "חשפנים": [
+ {
+ "word_nikkud": "חַשְׂפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4573-chasfan",
+ "gender": "masculine"
+ }
+ ],
+ "חשפן־": [
+ {
+ "word_nikkud": "חַשְׂפָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4573-chasfan",
+ "gender": "masculine"
+ }
+ ],
+ "חשפני־": [
+ {
+ "word_nikkud": "חַשְׂפָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4573-chasfan",
+ "gender": "masculine"
+ }
+ ],
+ "חשפנית": [
+ {
+ "word_nikkud": "חַשְׂפָנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4574-chasfanit",
+ "gender": "feminine"
+ }
+ ],
+ "חשפניות": [
+ {
+ "word_nikkud": "חַשְׂפָנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4574-chasfanit",
+ "gender": "feminine"
+ }
+ ],
+ "חשפנית־": [
+ {
+ "word_nikkud": "חַשְׂפָנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4574-chasfanit",
+ "gender": "feminine"
+ }
+ ],
+ "חשפניות־": [
+ {
+ "word_nikkud": "חַשְׂפָנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4574-chasfanit",
+ "gender": "feminine"
+ }
+ ],
+ "מחשוף": [
+ {
+ "word_nikkud": "מַחְשׂוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7555-machsof",
+ "gender": "masculine"
+ }
+ ],
+ "מחשופים": [
+ {
+ "word_nikkud": "מַחְשׂוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7555-machsof",
+ "gender": "masculine"
+ }
+ ],
+ "מחשוף־": [
+ {
+ "word_nikkud": "מַחְשׂוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7555-machsof",
+ "gender": "masculine"
+ }
+ ],
+ "מחשופי־": [
+ {
+ "word_nikkud": "מַחְשׂוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7555-machsof",
+ "gender": "masculine"
+ }
+ ],
+ "חשק": [
+ {
+ "word_nikkud": "חֵשֶׁק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3197-cheshek",
+ "gender": "masculine"
+ }
+ ],
+ "חשקים": [
+ {
+ "word_nikkud": "חֵשֶׁק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3197-cheshek",
+ "gender": "masculine"
+ }
+ ],
+ "חשק־": [
+ {
+ "word_nikkud": "חֵשֶׁק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3197-cheshek",
+ "gender": "masculine"
+ }
+ ],
+ "חשקי־": [
+ {
+ "word_nikkud": "חֵשֶׁק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3197-cheshek",
+ "gender": "masculine"
+ }
+ ],
+ "חשש": [
+ {
+ "word_nikkud": "חֲשָׁשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4742-chashash",
+ "gender": "masculine"
+ }
+ ],
+ "חששות": [
+ {
+ "word_nikkud": "חֲשָׁשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4742-chashash",
+ "gender": "masculine"
+ }
+ ],
+ "חשש־": [
+ {
+ "word_nikkud": "חֲשָׁשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4742-chashash",
+ "gender": "masculine"
+ }
+ ],
+ "חששות־": [
+ {
+ "word_nikkud": "חֲשָׁשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4742-chashash",
+ "gender": "masculine"
+ }
+ ],
+ "חתול": [
+ {
+ "word_nikkud": "חָתוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4673-chatul",
+ "gender": "masculine"
+ }
+ ],
+ "חתולים": [
+ {
+ "word_nikkud": "חָתוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4673-chatul",
+ "gender": "masculine"
+ }
+ ],
+ "חתול־": [
+ {
+ "word_nikkud": "חָתוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4673-chatul",
+ "gender": "masculine"
+ }
+ ],
+ "חתולי־": [
+ {
+ "word_nikkud": "חָתוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4673-chatul",
+ "gender": "masculine"
+ }
+ ],
+ "חתולה": [
+ {
+ "word_nikkud": "חֲתוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4674-chatula",
+ "gender": "feminine"
+ }
+ ],
+ "חתולות": [
+ {
+ "word_nikkud": "חֲתוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4674-chatula",
+ "gender": "feminine"
+ }
+ ],
+ "חתולת־": [
+ {
+ "word_nikkud": "חֲתוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4674-chatula",
+ "gender": "feminine"
+ }
+ ],
+ "חתולות־": [
+ {
+ "word_nikkud": "חֲתוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4674-chatula",
+ "gender": "feminine"
+ }
+ ],
+ "חתך": [
+ {
+ "word_nikkud": "חֲתָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5617-chatach",
+ "gender": "masculine"
+ }
+ ],
+ "חתכים": [
+ {
+ "word_nikkud": "חֲתָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5617-chatach",
+ "gender": "masculine"
+ }
+ ],
+ "חתך־": [
+ {
+ "word_nikkud": "חֲתָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5617-chatach",
+ "gender": "masculine"
+ }
+ ],
+ "חתכי־": [
+ {
+ "word_nikkud": "חֲתָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5617-chatach",
+ "gender": "masculine"
+ }
+ ],
+ "חתיך": [
+ {
+ "word_nikkud": "חָתִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4863-chatich",
+ "gender": "masculine"
+ }
+ ],
+ "חתיכים": [
+ {
+ "word_nikkud": "חָתִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4863-chatich",
+ "gender": "masculine"
+ }
+ ],
+ "חתיך־": [
+ {
+ "word_nikkud": "חָתִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4863-chatich",
+ "gender": "masculine"
+ }
+ ],
+ "חתיכי־": [
+ {
+ "word_nikkud": "חָתִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4863-chatich",
+ "gender": "masculine"
+ }
+ ],
+ "חתיכה": [
+ {
+ "word_nikkud": "חֲתִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4864-chaticha",
+ "gender": "feminine"
+ }
+ ],
+ "חתיכות": [
+ {
+ "word_nikkud": "חֲתִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4864-chaticha",
+ "gender": "feminine"
+ }
+ ],
+ "חתיכת־": [
+ {
+ "word_nikkud": "חֲתִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4864-chaticha",
+ "gender": "feminine"
+ }
+ ],
+ "חתיכות־": [
+ {
+ "word_nikkud": "חֲתִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4864-chaticha",
+ "gender": "feminine"
+ }
+ ],
+ "חתלתול": [
+ {
+ "word_nikkud": "חֲתַלְתּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4675-chataltul",
+ "gender": ""
+ }
+ ],
+ "חתלתולים": [
+ {
+ "word_nikkud": "חֲתַלְתּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4675-chataltul",
+ "gender": ""
+ }
+ ],
+ "חתלתול־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4675-chataltul",
+ "gender": ""
+ }
+ ],
+ "חתלתולי־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4675-chataltul",
+ "gender": ""
+ }
+ ],
+ "חתלתולה": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4677-chataltula",
+ "gender": "feminine"
+ }
+ ],
+ "חתלתולות": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4677-chataltula",
+ "gender": "feminine"
+ }
+ ],
+ "חתלתולת־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4677-chataltula",
+ "gender": "feminine"
+ }
+ ],
+ "חתלתולות־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4677-chataltula",
+ "gender": "feminine"
+ }
+ ],
+ "חתלתולון": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4678-chataltulon",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולונים": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4678-chataltulon",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולון־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4678-chataltulon",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולוני־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4678-chataltulon",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולונת": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלֹנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4679-chataltulonet",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולונות": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלֹנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4679-chataltulonet",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולונת־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלֹנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4679-chataltulonet",
+ "gender": "masculine"
+ }
+ ],
+ "חתלתולונות־": [
+ {
+ "word_nikkud": "חֲתַלְתּוּלֹנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4679-chataltulonet",
+ "gender": "masculine"
+ }
+ ],
+ "חתימה": [
+ {
+ "word_nikkud": "חֲתִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5255-chatima",
+ "gender": "feminine"
+ }
+ ],
+ "חתימות": [
+ {
+ "word_nikkud": "חֲתִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5255-chatima",
+ "gender": "feminine"
+ }
+ ],
+ "חתימת־": [
+ {
+ "word_nikkud": "חֲתִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5255-chatima",
+ "gender": "feminine"
+ }
+ ],
+ "חתימות־": [
+ {
+ "word_nikkud": "חֲתִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5255-chatima",
+ "gender": "feminine"
+ }
+ ],
+ "חתונה": [
+ {
+ "word_nikkud": "חֲתֻנָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5075-chatuna",
+ "gender": "feminine"
+ }
+ ],
+ "חתונות": [
+ {
+ "word_nikkud": "חֲתֻנָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5075-chatuna",
+ "gender": "feminine"
+ }
+ ],
+ "חתונת־": [
+ {
+ "word_nikkud": "חֲתֻנָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5075-chatuna",
+ "gender": "feminine"
+ }
+ ],
+ "חתונות־": [
+ {
+ "word_nikkud": "חֲתֻנָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5075-chatuna",
+ "gender": "feminine"
+ }
+ ],
+ "חתן": [
+ {
+ "word_nikkud": "חָתָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5076-chatan",
+ "gender": "masculine"
+ }
+ ],
+ "חתנים": [
+ {
+ "word_nikkud": "חָתָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5076-chatan",
+ "gender": "masculine"
+ }
+ ],
+ "חתן־": [
+ {
+ "word_nikkud": "חָתָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5076-chatan",
+ "gender": "masculine"
+ }
+ ],
+ "חתני־": [
+ {
+ "word_nikkud": "חָתָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5076-chatan",
+ "gender": "masculine"
+ }
+ ],
+ "מחתרת": [
+ {
+ "word_nikkud": "מַחְתֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3288-machteret",
+ "gender": "feminine"
+ }
+ ],
+ "מחתרות": [
+ {
+ "word_nikkud": "מַחְתֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3288-machteret",
+ "gender": "feminine"
+ }
+ ],
+ "מחתרת־": [
+ {
+ "word_nikkud": "מַחְתֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3288-machteret",
+ "gender": "feminine"
+ }
+ ],
+ "מחתרות־": [
+ {
+ "word_nikkud": "מַחְתֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3288-machteret",
+ "gender": "feminine"
+ }
+ ],
+ "חתת": [
+ {
+ "word_nikkud": "חֲתָת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8730-chatat",
+ "gender": "feminine"
+ }
+ ],
+ "חתת־": [
+ {
+ "word_nikkud": "חֲתָת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8730-chatat",
+ "gender": "feminine"
+ }
+ ],
+ "מטאטא": [
+ {
+ "word_nikkud": "מַטְאֲטֵא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5548-matate",
+ "gender": "masculine"
+ }
+ ],
+ "מטאטאים": [
+ {
+ "word_nikkud": "מַטְאֲטֵא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5548-matate",
+ "gender": "masculine"
+ }
+ ],
+ "מטאטא־": [
+ {
+ "word_nikkud": "מַטְאֲטֵא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5548-matate",
+ "gender": "masculine"
+ }
+ ],
+ "מטאטאי־": [
+ {
+ "word_nikkud": "מַטְאֲטֵא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5548-matate",
+ "gender": "masculine"
+ }
+ ],
+ "טבח": [
+ {
+ "word_nikkud": "טַבָּח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2646-tabach",
+ "gender": "masculine"
+ }
+ ],
+ "טבחים": [
+ {
+ "word_nikkud": "טַבָּח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2646-tabach",
+ "gender": "masculine"
+ }
+ ],
+ "טבח־": [
+ {
+ "word_nikkud": "טַבָּח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2646-tabach",
+ "gender": "masculine"
+ }
+ ],
+ "טבחי־": [
+ {
+ "word_nikkud": "טַבָּח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2646-tabach",
+ "gender": "masculine"
+ }
+ ],
+ "מטבח": [
+ {
+ "word_nikkud": "מִטְבָּח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2647-mitbach",
+ "gender": "masculine"
+ }
+ ],
+ "מטבחים": [
+ {
+ "word_nikkud": "מִטְבָּח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2647-mitbach",
+ "gender": "masculine"
+ }
+ ],
+ "מטבח־": [
+ {
+ "word_nikkud": "מִטְבָּח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2647-mitbach",
+ "gender": "masculine"
+ }
+ ],
+ "מטבחי־": [
+ {
+ "word_nikkud": "מִטְבָּח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2647-mitbach",
+ "gender": "masculine"
+ }
+ ],
+ "טבעונות": [
+ {
+ "word_nikkud": "טִבְעוֹנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5209-tivonut",
+ "gender": "masculine"
+ }
+ ],
+ "טבעונות־": [
+ {
+ "word_nikkud": "טִבְעוֹנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5209-tivonut",
+ "gender": "masculine"
+ }
+ ],
+ "מטבע": [
+ {
+ "word_nikkud": "מַטְבֵּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3522-matbea",
+ "gender": ""
+ }
+ ],
+ "מטבעות": [
+ {
+ "word_nikkud": "מַטְבֵּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3522-matbea",
+ "gender": ""
+ }
+ ],
+ "מטבע־": [
+ {
+ "word_nikkud": "מַטְבֵּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3522-matbea",
+ "gender": ""
+ }
+ ],
+ "מטבעות־": [
+ {
+ "word_nikkud": "מַטְבֵּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3522-matbea",
+ "gender": ""
+ }
+ ],
+ "טבע": [
+ {
+ "word_nikkud": "טֶבַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4522-teva",
+ "gender": "masculine"
+ }
+ ],
+ "טבע־": [
+ {
+ "word_nikkud": "טֶבַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4522-teva",
+ "gender": "masculine"
+ }
+ ],
+ "טבעת": [
+ {
+ "word_nikkud": "טַבַּעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4842-tabaat",
+ "gender": "feminine"
+ }
+ ],
+ "טבעות": [
+ {
+ "word_nikkud": "טַבַּעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4842-tabaat",
+ "gender": "feminine"
+ }
+ ],
+ "טבעת־": [
+ {
+ "word_nikkud": "טַבַּעַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4842-tabaat",
+ "gender": "feminine"
+ }
+ ],
+ "טבעות־": [
+ {
+ "word_nikkud": "טַבַּעַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4842-tabaat",
+ "gender": "feminine"
+ }
+ ],
+ "טוהר": [
+ {
+ "word_nikkud": "טֹהַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4936-tohar",
+ "gender": "masculine"
+ }
+ ],
+ "טוהר־": [
+ {
+ "word_nikkud": "טֹהַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4936-tohar",
+ "gender": "masculine"
+ }
+ ],
+ "טיהור": [
+ {
+ "word_nikkud": "טִהוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7875-tihur",
+ "gender": "masculine"
+ }
+ ],
+ "טיהורים": [
+ {
+ "word_nikkud": "טִהוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7875-tihur",
+ "gender": "masculine"
+ }
+ ],
+ "טיהור־": [
+ {
+ "word_nikkud": "טִהוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7875-tihur",
+ "gender": "masculine"
+ }
+ ],
+ "טיהורי־": [
+ {
+ "word_nikkud": "טִהוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7875-tihur",
+ "gender": "masculine"
+ }
+ ],
+ "טובה": [
+ {
+ "word_nikkud": "טוֹבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5423-tova",
+ "gender": "feminine"
+ }
+ ],
+ "טובות": [
+ {
+ "word_nikkud": "טוֹבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5423-tova",
+ "gender": "feminine"
+ }
+ ],
+ "טובת־": [
+ {
+ "word_nikkud": "טוֹבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5423-tova",
+ "gender": "feminine"
+ }
+ ],
+ "טובות־": [
+ {
+ "word_nikkud": "טוֹבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5423-tova",
+ "gender": "feminine"
+ }
+ ],
+ "טיב": [
+ {
+ "word_nikkud": "טִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8170-tiv",
+ "gender": "masculine"
+ }
+ ],
+ "טיבים": [
+ {
+ "word_nikkud": "טִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8170-tiv",
+ "gender": "masculine"
+ }
+ ],
+ "טיב־": [
+ {
+ "word_nikkud": "טִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8170-tiv",
+ "gender": "masculine"
+ }
+ ],
+ "טיבי־": [
+ {
+ "word_nikkud": "טִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8170-tiv",
+ "gender": "masculine"
+ }
+ ],
+ "טוב": [
+ {
+ "word_nikkud": "טוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8995-tuv",
+ "gender": ""
+ }
+ ],
+ "טוב־": [
+ {
+ "word_nikkud": "טוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8995-tuv",
+ "gender": ""
+ }
+ ],
+ "טווס": [
+ {
+ "word_nikkud": "טַוָּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8685-tavas",
+ "gender": "masculine"
+ }
+ ],
+ "טווסים": [
+ {
+ "word_nikkud": "טַוָּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8685-tavas",
+ "gender": "masculine"
+ }
+ ],
+ "טווס־": [
+ {
+ "word_nikkud": "טַוָּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8685-tavas",
+ "gender": "masculine"
+ }
+ ],
+ "טווסי־": [
+ {
+ "word_nikkud": "טַוָּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8685-tavas",
+ "gender": "masculine"
+ }
+ ],
+ "טוזיג": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טווזיג": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טוזיגים": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טווזיגים": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טוזיג־": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טווזיג־": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טוזיגי־": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טווזיגי־": [
+ {
+ "word_nikkud": "טוּזִיג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5024-tuzig",
+ "gender": "masculine"
+ }
+ ],
+ "טווח": [
+ {
+ "word_nikkud": "טְוָח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3494-tvach",
+ "gender": "masculine"
+ }
+ ],
+ "טווחים": [
+ {
+ "word_nikkud": "טְוָח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3494-tvach",
+ "gender": "masculine"
+ }
+ ],
+ "טווח־": [
+ {
+ "word_nikkud": "טְוָח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3494-tvach",
+ "gender": "masculine"
+ }
+ ],
+ "טווחי־": [
+ {
+ "word_nikkud": "טְוָח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3494-tvach",
+ "gender": "masculine"
+ }
+ ],
+ "טיל": [
+ {
+ "word_nikkud": "טִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7814-til",
+ "gender": ""
+ }
+ ],
+ "טילים": [
+ {
+ "word_nikkud": "טִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7814-til",
+ "gender": ""
+ }
+ ],
+ "טיל־": [
+ {
+ "word_nikkud": "טִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7814-til",
+ "gender": ""
+ }
+ ],
+ "טילי־": [
+ {
+ "word_nikkud": "טִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7814-til",
+ "gender": ""
+ }
+ ],
+ "מטוס": [
+ {
+ "word_nikkud": "מָטוֹס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3724-matos",
+ "gender": "masculine"
+ }
+ ],
+ "מטוסים": [
+ {
+ "word_nikkud": "מָטוֹס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3724-matos",
+ "gender": "masculine"
+ }
+ ],
+ "מטוס־": [
+ {
+ "word_nikkud": "מָטוֹס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3724-matos",
+ "gender": "masculine"
+ }
+ ],
+ "מטוסי־": [
+ {
+ "word_nikkud": "מָטוֹס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3724-matos",
+ "gender": "masculine"
+ }
+ ],
+ "טיסה": [
+ {
+ "word_nikkud": "טִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4769-tisa",
+ "gender": "feminine"
+ }
+ ],
+ "טיסות": [
+ {
+ "word_nikkud": "טִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4769-tisa",
+ "gender": "feminine"
+ }
+ ],
+ "טיסת־": [
+ {
+ "word_nikkud": "טִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4769-tisa",
+ "gender": "feminine"
+ }
+ ],
+ "טיסות־": [
+ {
+ "word_nikkud": "טִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4769-tisa",
+ "gender": "feminine"
+ }
+ ],
+ "טוסיק": [
+ {
+ "word_nikkud": "טוּסִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8927-tusik",
+ "gender": "masculine"
+ }
+ ],
+ "טור": [
+ {
+ "word_nikkud": "טוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8783-tur",
+ "gender": "masculine"
+ }
+ ],
+ "טורים": [
+ {
+ "word_nikkud": "טוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8783-tur",
+ "gender": "masculine"
+ }
+ ],
+ "טור־": [
+ {
+ "word_nikkud": "טוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8783-tur",
+ "gender": "masculine"
+ }
+ ],
+ "טורי־": [
+ {
+ "word_nikkud": "טוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8783-tur",
+ "gender": "masculine"
+ }
+ ],
+ "טורניר": [
+ {
+ "word_nikkud": "טוּרְנִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7648-turnir",
+ "gender": "masculine"
+ }
+ ],
+ "טורנירים": [
+ {
+ "word_nikkud": "טוּרְנִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7648-turnir",
+ "gender": "masculine"
+ }
+ ],
+ "טורניר־": [
+ {
+ "word_nikkud": "טוּרְנִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7648-turnir",
+ "gender": "masculine"
+ }
+ ],
+ "טורנירי־": [
+ {
+ "word_nikkud": "טוּרְנִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7648-turnir",
+ "gender": "masculine"
+ }
+ ],
+ "טוש": [
+ {
+ "word_nikkud": "טוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8338-tush",
+ "gender": "masculine"
+ }
+ ],
+ "טושים": [
+ {
+ "word_nikkud": "טוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8338-tush",
+ "gender": "masculine"
+ }
+ ],
+ "טוש־": [
+ {
+ "word_nikkud": "טוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8338-tush",
+ "gender": "masculine"
+ }
+ ],
+ "טושי־": [
+ {
+ "word_nikkud": "טוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8338-tush",
+ "gender": "masculine"
+ }
+ ],
+ "טחב": [
+ {
+ "word_nikkud": "טְחָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8020-tchav",
+ "gender": "masculine"
+ }
+ ],
+ "טחבים": [
+ {
+ "word_nikkud": "טְחָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8020-tchav",
+ "gender": "masculine"
+ }
+ ],
+ "טחב־": [
+ {
+ "word_nikkud": "טְחָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8020-tchav",
+ "gender": "masculine"
+ }
+ ],
+ "טחבי־": [
+ {
+ "word_nikkud": "טְחָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8020-tchav",
+ "gender": "masculine"
+ }
+ ],
+ "מטחנה": [
+ {
+ "word_nikkud": "מַטְחֵנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3558-matchena",
+ "gender": "feminine"
+ }
+ ],
+ "מטחנות": [
+ {
+ "word_nikkud": "מַטְחֵנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3558-matchena",
+ "gender": "feminine"
+ }
+ ],
+ "מטחנת־": [
+ {
+ "word_nikkud": "מַטְחֵנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3558-matchena",
+ "gender": "feminine"
+ }
+ ],
+ "מטחנות־": [
+ {
+ "word_nikkud": "מַטְחֵנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3558-matchena",
+ "gender": "feminine"
+ }
+ ],
+ "טחינה": [
+ {
+ "word_nikkud": "טְחִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4064-tchina",
+ "gender": "feminine"
+ }
+ ],
+ "טחינות": [
+ {
+ "word_nikkud": "טְחִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4064-tchina",
+ "gender": "feminine"
+ }
+ ],
+ "טחינת־": [
+ {
+ "word_nikkud": "טְחִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4064-tchina",
+ "gender": "feminine"
+ }
+ ],
+ "טחינות־": [
+ {
+ "word_nikkud": "טְחִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4064-tchina",
+ "gender": "feminine"
+ }
+ ],
+ "טיח": [
+ {
+ "word_nikkud": "טִיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6669-tiach",
+ "gender": "masculine"
+ }
+ ],
+ "טיחים": [
+ {
+ "word_nikkud": "טִיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6669-tiach",
+ "gender": "masculine"
+ }
+ ],
+ "טיח־": [
+ {
+ "word_nikkud": "טִיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6669-tiach",
+ "gender": "masculine"
+ }
+ ],
+ "טיחי־": [
+ {
+ "word_nikkud": "טִיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6669-tiach",
+ "gender": "masculine"
+ }
+ ],
+ "טיוח": [
+ {
+ "word_nikkud": "טִיּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6715-tiyuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיוחים": [
+ {
+ "word_nikkud": "טִיּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6715-tiyuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיוח־": [
+ {
+ "word_nikkud": "טִיּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6715-tiyuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיוחי־": [
+ {
+ "word_nikkud": "טִיּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6715-tiyuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיוטה": [
+ {
+ "word_nikkud": "טְיוּטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7992-tyuta",
+ "gender": "feminine"
+ }
+ ],
+ "טיוטות": [
+ {
+ "word_nikkud": "טְיוּטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7992-tyuta",
+ "gender": "feminine"
+ }
+ ],
+ "טיוטת־": [
+ {
+ "word_nikkud": "טְיוּטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7992-tyuta",
+ "gender": "feminine"
+ }
+ ],
+ "טיוטות־": [
+ {
+ "word_nikkud": "טְיוּטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7992-tyuta",
+ "gender": "feminine"
+ }
+ ],
+ "טיט": [
+ {
+ "word_nikkud": "טִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8358-tit",
+ "gender": "masculine"
+ }
+ ],
+ "טיטים": [
+ {
+ "word_nikkud": "טִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8358-tit",
+ "gender": "masculine"
+ }
+ ],
+ "טיט־": [
+ {
+ "word_nikkud": "טִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8358-tit",
+ "gender": "masculine"
+ }
+ ],
+ "טיטי־": [
+ {
+ "word_nikkud": "טִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8358-tit",
+ "gender": "masculine"
+ }
+ ],
+ "טייץ": [
+ {
+ "word_nikkud": "טַיְץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7039-taytz",
+ "gender": "masculine"
+ }
+ ],
+ "טייץ־": [
+ {
+ "word_nikkud": "טַיְץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7039-taytz",
+ "gender": "masculine"
+ }
+ ],
+ "טיילת": [
+ {
+ "word_nikkud": "טַיֶּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3290-tayelet",
+ "gender": "feminine"
+ }
+ ],
+ "טיילות": [
+ {
+ "word_nikkud": "טַיֶּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3290-tayelet",
+ "gender": "feminine"
+ }
+ ],
+ "טיילת־": [
+ {
+ "word_nikkud": "טַיֶּלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3290-tayelet",
+ "gender": "feminine"
+ }
+ ],
+ "טיילות־": [
+ {
+ "word_nikkud": "טַיֶּלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3290-tayelet",
+ "gender": "feminine"
+ }
+ ],
+ "טיול": [
+ {
+ "word_nikkud": "טִיּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2966-tiyul",
+ "gender": "masculine"
+ }
+ ],
+ "טיולים": [
+ {
+ "word_nikkud": "טִיּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2966-tiyul",
+ "gender": "masculine"
+ }
+ ],
+ "טיול־": [
+ {
+ "word_nikkud": "טִיּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2966-tiyul",
+ "gender": "masculine"
+ }
+ ],
+ "טיולי־": [
+ {
+ "word_nikkud": "טִיּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2966-tiyul",
+ "gender": "masculine"
+ }
+ ],
+ "טיליה": [
+ {
+ "word_nikkud": "טִילְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7757-tilya",
+ "gender": ""
+ }
+ ],
+ "טיליות": [
+ {
+ "word_nikkud": "טִילְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7757-tilya",
+ "gender": ""
+ }
+ ],
+ "טיליית־": [
+ {
+ "word_nikkud": "טִילְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7757-tilya",
+ "gender": ""
+ }
+ ],
+ "טיליות־": [
+ {
+ "word_nikkud": "טִילְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7757-tilya",
+ "gender": ""
+ }
+ ],
+ "טייס": [
+ {
+ "word_nikkud": "טַיָּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3905-tayas",
+ "gender": "masculine"
+ }
+ ],
+ "טייסים": [
+ {
+ "word_nikkud": "טַיָּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3905-tayas",
+ "gender": "masculine"
+ }
+ ],
+ "טייס־": [
+ {
+ "word_nikkud": "טַיָּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3905-tayas",
+ "gender": "masculine"
+ }
+ ],
+ "טייסי־": [
+ {
+ "word_nikkud": "טַיָּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3905-tayas",
+ "gender": "masculine"
+ }
+ ],
+ "טיפוס": [
+ {
+ "word_nikkud": "טִיפּוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8325-tipus",
+ "gender": ""
+ }
+ ],
+ "טיפוסים": [
+ {
+ "word_nikkud": "טִיפּוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8325-tipus",
+ "gender": ""
+ }
+ ],
+ "טיפוס־": [
+ {
+ "word_nikkud": "טִיפּוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8325-tipus",
+ "gender": ""
+ }
+ ],
+ "טיפוסי־": [
+ {
+ "word_nikkud": "טִיפּוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8325-tipus",
+ "gender": ""
+ }
+ ],
+ "טירה": [
+ {
+ "word_nikkud": "טִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6888-tira",
+ "gender": ""
+ }
+ ],
+ "טירות": [
+ {
+ "word_nikkud": "טִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6888-tira",
+ "gender": ""
+ }
+ ],
+ "טירת־": [
+ {
+ "word_nikkud": "טִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6888-tira",
+ "gender": ""
+ }
+ ],
+ "טירות־": [
+ {
+ "word_nikkud": "טִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6888-tira",
+ "gender": ""
+ }
+ ],
+ "טירון": [
+ {
+ "word_nikkud": "טִירוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6322-tiron",
+ "gender": "masculine"
+ }
+ ],
+ "טירונים": [
+ {
+ "word_nikkud": "טִירוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6322-tiron",
+ "gender": "masculine"
+ }
+ ],
+ "טירון־": [
+ {
+ "word_nikkud": "טִירוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6322-tiron",
+ "gender": "masculine"
+ }
+ ],
+ "טירוני־": [
+ {
+ "word_nikkud": "טִירוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6322-tiron",
+ "gender": "masculine"
+ }
+ ],
+ "טירונות": [
+ {
+ "word_nikkud": "טִירוֹנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6323-tironut",
+ "gender": "feminine"
+ }
+ ],
+ "טירונויות": [
+ {
+ "word_nikkud": "טִירוֹנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6323-tironut",
+ "gender": "feminine"
+ }
+ ],
+ "טירונות־": [
+ {
+ "word_nikkud": "טִירוֹנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6323-tironut",
+ "gender": "feminine"
+ }
+ ],
+ "טירונויות־": [
+ {
+ "word_nikkud": "טִירוֹנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6323-tironut",
+ "gender": "feminine"
+ }
+ ],
+ "טכנאי": [
+ {
+ "word_nikkud": "טֶכְנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7996-technay",
+ "gender": "masculine"
+ }
+ ],
+ "טכנאים": [
+ {
+ "word_nikkud": "טֶכְנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7996-technay",
+ "gender": "masculine"
+ }
+ ],
+ "טכנאי־": [
+ {
+ "word_nikkud": "טֶכְנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7996-technay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "טֶכְנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7996-technay",
+ "gender": "masculine"
+ }
+ ],
+ "טכנולוגיה": [
+ {
+ "word_nikkud": "טֶכְנוֹלוֹגְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8469-technologya",
+ "gender": ""
+ }
+ ],
+ "טכנולוגיות": [
+ {
+ "word_nikkud": "טֶכְנוֹלוֹגְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8469-technologya",
+ "gender": ""
+ }
+ ],
+ "טכנולוגיית־": [
+ {
+ "word_nikkud": "טֶכְנוֹלוֹגְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8469-technologya",
+ "gender": ""
+ }
+ ],
+ "טכנולוגיות־": [
+ {
+ "word_nikkud": "טֶכְנוֹלוֹגְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8469-technologya",
+ "gender": ""
+ }
+ ],
+ "טכניקה": [
+ {
+ "word_nikkud": "טֶכְנִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7883-technika",
+ "gender": "feminine"
+ }
+ ],
+ "טכניקות": [
+ {
+ "word_nikkud": "טֶכְנִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7883-technika",
+ "gender": "feminine"
+ }
+ ],
+ "טכניקת־": [
+ {
+ "word_nikkud": "טֶכְנִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7883-technika",
+ "gender": "feminine"
+ }
+ ],
+ "טכניקות־": [
+ {
+ "word_nikkud": "טֶכְנִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7883-technika",
+ "gender": "feminine"
+ }
+ ],
+ "טלאי": [
+ {
+ "word_nikkud": "טְלַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7792-tlay",
+ "gender": "masculine"
+ }
+ ],
+ "טלאים": [
+ {
+ "word_nikkud": "טְלַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7792-tlay",
+ "gender": "masculine"
+ }
+ ],
+ "טלאי־": [
+ {
+ "word_nikkud": "טְלַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7792-tlay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "טְלַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7792-tlay",
+ "gender": "masculine"
+ }
+ ],
+ "טלוויזיה": [
+ {
+ "word_nikkud": "טֶלֶוִיזְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6722-televizya",
+ "gender": "feminine"
+ }
+ ],
+ "טלוויזיית־": [
+ {
+ "word_nikkud": "טֶלֶוִיזְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6722-televizya",
+ "gender": "feminine"
+ }
+ ],
+ "טלית": [
+ {
+ "word_nikkud": "טַלִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5764-talit",
+ "gender": "feminine"
+ }
+ ],
+ "טליתות": [
+ {
+ "word_nikkud": "טַלִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5764-talit",
+ "gender": "feminine"
+ }
+ ],
+ "טלית־": [
+ {
+ "word_nikkud": "טַלִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5764-talit",
+ "gender": "feminine"
+ }
+ ],
+ "טליתות־": [
+ {
+ "word_nikkud": "טַלִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5764-talit",
+ "gender": "feminine"
+ }
+ ],
+ "טל": [
+ {
+ "word_nikkud": "טַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4275-tal",
+ "gender": "masculine"
+ }
+ ],
+ "טללים": [
+ {
+ "word_nikkud": "טַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4275-tal",
+ "gender": "masculine"
+ }
+ ],
+ "טל־": [
+ {
+ "word_nikkud": "טַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4275-tal",
+ "gender": "masculine"
+ }
+ ],
+ "טללי־": [
+ {
+ "word_nikkud": "טַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4275-tal",
+ "gender": "masculine"
+ }
+ ],
+ "טלף": [
+ {
+ "word_nikkud": "טֶלֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2754-telef",
+ "gender": "masculine"
+ }
+ ],
+ "טלפיים": [
+ {
+ "word_nikkud": "טֶלֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2754-telef",
+ "gender": "masculine"
+ }
+ ],
+ "טלף־": [
+ {
+ "word_nikkud": "טֶלֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2754-telef",
+ "gender": "masculine"
+ }
+ ],
+ "טלפי־": [
+ {
+ "word_nikkud": "טֶלֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2754-telef",
+ "gender": "masculine"
+ }
+ ],
+ "טלפון": [
+ {
+ "word_nikkud": "טֶלֶפוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6176-telefon",
+ "gender": "masculine"
+ }
+ ],
+ "טלפונים": [
+ {
+ "word_nikkud": "טֶלֶפוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6176-telefon",
+ "gender": "masculine"
+ }
+ ],
+ "טומאה": [
+ {
+ "word_nikkud": "טֻמְאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8124-tuma",
+ "gender": "feminine"
+ }
+ ],
+ "טומאת־": [
+ {
+ "word_nikkud": "טֻמְאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8124-tuma",
+ "gender": "feminine"
+ }
+ ],
+ "טמטום": [
+ {
+ "word_nikkud": "טִמְטוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7492-timtum",
+ "gender": "masculine"
+ }
+ ],
+ "טמטומים": [
+ {
+ "word_nikkud": "טִמְטוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7492-timtum",
+ "gender": "masculine"
+ }
+ ],
+ "טמטום־": [
+ {
+ "word_nikkud": "טִמְטוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7492-timtum",
+ "gender": "masculine"
+ }
+ ],
+ "טמטומי־": [
+ {
+ "word_nikkud": "טִמְטוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7492-timtum",
+ "gender": "masculine"
+ }
+ ],
+ "היטמעות": [
+ {
+ "word_nikkud": "הִטַּמְּעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7844-hitamut",
+ "gender": "feminine"
+ }
+ ],
+ "היטמעויות": [
+ {
+ "word_nikkud": "הִטַּמְּעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7844-hitamut",
+ "gender": "feminine"
+ }
+ ],
+ "היטמעות־": [
+ {
+ "word_nikkud": "הִטַּמְּעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7844-hitamut",
+ "gender": "feminine"
+ }
+ ],
+ "היטמעויות־": [
+ {
+ "word_nikkud": "הִטַּמְּעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7844-hitamut",
+ "gender": "feminine"
+ }
+ ],
+ "טינופת": [
+ {
+ "word_nikkud": "טִנֹּפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3964-tinofet",
+ "gender": "feminine"
+ }
+ ],
+ "טינופות": [
+ {
+ "word_nikkud": "טִנֹּפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3964-tinofet",
+ "gender": "feminine"
+ }
+ ],
+ "טינופת־": [
+ {
+ "word_nikkud": "טִנֹּפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3964-tinofet",
+ "gender": "feminine"
+ }
+ ],
+ "טינופות־": [
+ {
+ "word_nikkud": "טִנֹּפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3964-tinofet",
+ "gender": "feminine"
+ }
+ ],
+ "טעות": [
+ {
+ "word_nikkud": "טָעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3774-taut",
+ "gender": "feminine"
+ }
+ ],
+ "טעויות": [
+ {
+ "word_nikkud": "טָעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3774-taut",
+ "gender": "feminine"
+ }
+ ],
+ "טעות־": [
+ {
+ "word_nikkud": "טָעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3774-taut",
+ "gender": "feminine"
+ }
+ ],
+ "טעויות־": [
+ {
+ "word_nikkud": "טָעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3774-taut",
+ "gender": "feminine"
+ }
+ ],
+ "טעימה": [
+ {
+ "word_nikkud": "טְעִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3161-teima",
+ "gender": "feminine"
+ }
+ ],
+ "טעימות": [
+ {
+ "word_nikkud": "טְעִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3161-teima",
+ "gender": "feminine"
+ }
+ ],
+ "טעימת־": [
+ {
+ "word_nikkud": "טְעִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3161-teima",
+ "gender": "feminine"
+ }
+ ],
+ "טעימות־": [
+ {
+ "word_nikkud": "טְעִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3161-teima",
+ "gender": "feminine"
+ }
+ ],
+ "מטעם": [
+ {
+ "word_nikkud": "מַטְעָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3517-matam",
+ "gender": "masculine"
+ }
+ ],
+ "מטעמים": [
+ {
+ "word_nikkud": "מַטְעָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3517-matam",
+ "gender": "masculine"
+ }
+ ],
+ "מטעם־": [
+ {
+ "word_nikkud": "מַטְעָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3517-matam",
+ "gender": "masculine"
+ }
+ ],
+ "מטעמי־": [
+ {
+ "word_nikkud": "מַטְעָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3517-matam",
+ "gender": "masculine"
+ }
+ ],
+ "טעם": [
+ {
+ "word_nikkud": "טַעַם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5064-taam",
+ "gender": "masculine"
+ }
+ ],
+ "טעמים": [
+ {
+ "word_nikkud": "טַעַם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5064-taam",
+ "gender": "masculine"
+ }
+ ],
+ "טעם־": [
+ {
+ "word_nikkud": "טַעַם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5064-taam",
+ "gender": "masculine"
+ }
+ ],
+ "טעמי־": [
+ {
+ "word_nikkud": "טַעַם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5064-taam",
+ "gender": "masculine"
+ }
+ ],
+ "מטען": [
+ {
+ "word_nikkud": "מִטְעָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3805-mitan",
+ "gender": "masculine"
+ }
+ ],
+ "מטענים": [
+ {
+ "word_nikkud": "מִטְעָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3805-mitan",
+ "gender": "masculine"
+ }
+ ],
+ "מטען־": [
+ {
+ "word_nikkud": "מִטְעָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3805-mitan",
+ "gender": "masculine"
+ }
+ ],
+ "מטעני־": [
+ {
+ "word_nikkud": "מִטְעָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3805-mitan",
+ "gender": "masculine"
+ }
+ ],
+ "טעינה": [
+ {
+ "word_nikkud": "טְעִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7493-teina",
+ "gender": "feminine"
+ }
+ ],
+ "טעינות": [
+ {
+ "word_nikkud": "טְעִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7493-teina",
+ "gender": "feminine"
+ }
+ ],
+ "טעינת־": [
+ {
+ "word_nikkud": "טְעִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7493-teina",
+ "gender": "feminine"
+ }
+ ],
+ "טעינות־": [
+ {
+ "word_nikkud": "טְעִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7493-teina",
+ "gender": "feminine"
+ }
+ ],
+ "טענה": [
+ {
+ "word_nikkud": "טַעֲנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8618-taana",
+ "gender": "feminine"
+ }
+ ],
+ "טענות": [
+ {
+ "word_nikkud": "טַעֲנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8618-taana",
+ "gender": "feminine"
+ }
+ ],
+ "טענת־": [
+ {
+ "word_nikkud": "טַעֲנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8618-taana",
+ "gender": "feminine"
+ }
+ ],
+ "טענות־": [
+ {
+ "word_nikkud": "טַעֲנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8618-taana",
+ "gender": "feminine"
+ }
+ ],
+ "טיעון": [
+ {
+ "word_nikkud": "טִעוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8826-tiun",
+ "gender": "masculine"
+ }
+ ],
+ "טיעונים": [
+ {
+ "word_nikkud": "טִעוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8826-tiun",
+ "gender": "masculine"
+ }
+ ],
+ "טיעון־": [
+ {
+ "word_nikkud": "טִעוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8826-tiun",
+ "gender": "masculine"
+ }
+ ],
+ "טיעוני־": [
+ {
+ "word_nikkud": "טִעוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8826-tiun",
+ "gender": "masculine"
+ }
+ ],
+ "טפיחה": [
+ {
+ "word_nikkud": "טְפִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4262-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "טפיחות": [
+ {
+ "word_nikkud": "טְפִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4262-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "טפיחת־": [
+ {
+ "word_nikkud": "טְפִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4262-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "טפיחות־": [
+ {
+ "word_nikkud": "טְפִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4262-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "טפח": [
+ {
+ "word_nikkud": "טֶפַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8717-tefach",
+ "gender": "masculine"
+ }
+ ],
+ "טפחים": [
+ {
+ "word_nikkud": "טֶפַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8717-tefach",
+ "gender": "masculine"
+ }
+ ],
+ "טפח־": [
+ {
+ "word_nikkud": "טֶפַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8717-tefach",
+ "gender": "masculine"
+ }
+ ],
+ "טפחי־": [
+ {
+ "word_nikkud": "טֶפַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8717-tefach",
+ "gender": "masculine"
+ }
+ ],
+ "טיפוח": [
+ {
+ "word_nikkud": "טִפּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8263-tipuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיפוחים": [
+ {
+ "word_nikkud": "טִפּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8263-tipuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיפוח־": [
+ {
+ "word_nikkud": "טִפּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8263-tipuach",
+ "gender": "masculine"
+ }
+ ],
+ "טיפוחי־": [
+ {
+ "word_nikkud": "טִפּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8263-tipuach",
+ "gender": "masculine"
+ }
+ ],
+ "מטפחת": [
+ {
+ "word_nikkud": "מִטְפַּחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8385-mitpachat",
+ "gender": "feminine"
+ }
+ ],
+ "מטפחות": [
+ {
+ "word_nikkud": "מִטְפַּחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8385-mitpachat",
+ "gender": "feminine"
+ }
+ ],
+ "מטפחת־": [
+ {
+ "word_nikkud": "מִטְפַּחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8385-mitpachat",
+ "gender": "feminine"
+ }
+ ],
+ "מטפחות־": [
+ {
+ "word_nikkud": "מִטְפַּחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8385-mitpachat",
+ "gender": "feminine"
+ }
+ ],
+ "טפטפת": [
+ {
+ "word_nikkud": "טַפְטֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8157-taftefet",
+ "gender": "feminine"
+ }
+ ],
+ "טפטפות": [
+ {
+ "word_nikkud": "טַפְטֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8157-taftefet",
+ "gender": "feminine"
+ }
+ ],
+ "טפטפת־": [
+ {
+ "word_nikkud": "טַפְטֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8157-taftefet",
+ "gender": "feminine"
+ }
+ ],
+ "טפטפות־": [
+ {
+ "word_nikkud": "טַפְטֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8157-taftefet",
+ "gender": "feminine"
+ }
+ ],
+ "טפטוף": [
+ {
+ "word_nikkud": "טִפְטוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6637-tiftuf",
+ "gender": "masculine"
+ }
+ ],
+ "טפטופים": [
+ {
+ "word_nikkud": "טִפְטוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6637-tiftuf",
+ "gender": "masculine"
+ }
+ ],
+ "טפטוף־": [
+ {
+ "word_nikkud": "טִפְטוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6637-tiftuf",
+ "gender": "masculine"
+ }
+ ],
+ "טפטופי־": [
+ {
+ "word_nikkud": "טִפְטוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6637-tiftuf",
+ "gender": "masculine"
+ }
+ ],
+ "טיפול": [
+ {
+ "word_nikkud": "טִפּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3812-tipul",
+ "gender": "masculine"
+ }
+ ],
+ "טיפולים": [
+ {
+ "word_nikkud": "טִפּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3812-tipul",
+ "gender": "masculine"
+ }
+ ],
+ "טיפול־": [
+ {
+ "word_nikkud": "טִפּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3812-tipul",
+ "gender": "masculine"
+ }
+ ],
+ "טיפולי־": [
+ {
+ "word_nikkud": "טִפּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3812-tipul",
+ "gender": "masculine"
+ }
+ ],
+ "טופס": [
+ {
+ "word_nikkud": "טֹפֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3961-tofes",
+ "gender": "masculine"
+ }
+ ],
+ "טפסים": [
+ {
+ "word_nikkud": "טֹפֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3961-tofes",
+ "gender": "masculine"
+ }
+ ],
+ "טופס־": [
+ {
+ "word_nikkud": "טֹפֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3961-tofes",
+ "gender": "masculine"
+ }
+ ],
+ "טפסי־": [
+ {
+ "word_nikkud": "טֹפֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3961-tofes",
+ "gender": "masculine"
+ }
+ ],
+ "טף": [
+ {
+ "word_nikkud": "טַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8742-taf",
+ "gender": "masculine"
+ }
+ ],
+ "טף־": [
+ {
+ "word_nikkud": "טַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8742-taf",
+ "gender": "masculine"
+ }
+ ],
+ "טיפה": [
+ {
+ "word_nikkud": "טִפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7118-tipa",
+ "gender": "feminine"
+ }
+ ],
+ "טיפות": [
+ {
+ "word_nikkud": "טִפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7118-tipa",
+ "gender": "feminine"
+ }
+ ],
+ "טיפת־": [
+ {
+ "word_nikkud": "טִפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7118-tipa",
+ "gender": "feminine"
+ }
+ ],
+ "טיפות־": [
+ {
+ "word_nikkud": "טִפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7118-tipa",
+ "gender": "feminine"
+ }
+ ],
+ "טקס": [
+ {
+ "word_nikkud": "טֶקֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4865-tekes",
+ "gender": "masculine"
+ }
+ ],
+ "טקסים": [
+ {
+ "word_nikkud": "טֶקֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4865-tekes",
+ "gender": "masculine"
+ }
+ ],
+ "טקס־": [
+ {
+ "word_nikkud": "טֶקֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4865-tekes",
+ "gender": "masculine"
+ }
+ ],
+ "טקסי־": [
+ {
+ "word_nikkud": "טֶקֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4865-tekes",
+ "gender": "masculine"
+ }
+ ],
+ "הטרדה": [
+ {
+ "word_nikkud": "הַטְרָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2881-hatrada",
+ "gender": "feminine"
+ }
+ ],
+ "הטרדת־": [
+ {
+ "word_nikkud": "הַטְרָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2881-hatrada",
+ "gender": "feminine"
+ }
+ ],
+ "מטרד": [
+ {
+ "word_nikkud": "מִטְרָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6848-mitrad",
+ "gender": "masculine"
+ }
+ ],
+ "מטרדים": [
+ {
+ "word_nikkud": "מִטְרָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6848-mitrad",
+ "gender": "masculine"
+ }
+ ],
+ "מטרד־": [
+ {
+ "word_nikkud": "מִטְרָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6848-mitrad",
+ "gender": "masculine"
+ }
+ ],
+ "מטרדי־": [
+ {
+ "word_nikkud": "מִטְרָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6848-mitrad",
+ "gender": "masculine"
+ }
+ ],
+ "טרדה": [
+ {
+ "word_nikkud": "טִרְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7244-tirda",
+ "gender": "feminine"
+ }
+ ],
+ "טרדות": [
+ {
+ "word_nikkud": "טִרְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7244-tirda",
+ "gender": "feminine"
+ }
+ ],
+ "טרדת־": [
+ {
+ "word_nikkud": "טִרְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7244-tirda",
+ "gender": "feminine"
+ }
+ ],
+ "טרדות־": [
+ {
+ "word_nikkud": "טִרְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7244-tirda",
+ "gender": "feminine"
+ }
+ ],
+ "טריות": [
+ {
+ "word_nikkud": "טְרִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5443-triyut",
+ "gender": "feminine"
+ }
+ ],
+ "טריות־": [
+ {
+ "word_nikkud": "טְרִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5443-triyut",
+ "gender": "feminine"
+ }
+ ],
+ "טרמפ": [
+ {
+ "word_nikkud": "טְרֶמְפּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8050-tremp",
+ "gender": "masculine"
+ }
+ ],
+ "טרמפים": [
+ {
+ "word_nikkud": "טְרֶמְפּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8050-tremp",
+ "gender": "masculine"
+ }
+ ],
+ "טירוף": [
+ {
+ "word_nikkud": "טֵרוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8000-teruf",
+ "gender": "masculine"
+ }
+ ],
+ "טירופים": [
+ {
+ "word_nikkud": "טֵרוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8000-teruf",
+ "gender": "masculine"
+ }
+ ],
+ "טירוף־": [
+ {
+ "word_nikkud": "טֵרוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8000-teruf",
+ "gender": "masculine"
+ }
+ ],
+ "טירופי־": [
+ {
+ "word_nikkud": "טֵרוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8000-teruf",
+ "gender": "masculine"
+ }
+ ],
+ "טרף": [
+ {
+ "word_nikkud": "טֶרֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8655-teref",
+ "gender": "masculine"
+ }
+ ],
+ "טרף־": [
+ {
+ "word_nikkud": "טֶרֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8655-teref",
+ "gender": "masculine"
+ }
+ ],
+ "טרפדת": [
+ {
+ "word_nikkud": "טַרְפֶּדֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6751-tarpedet",
+ "gender": "feminine"
+ }
+ ],
+ "טרפדות": [
+ {
+ "word_nikkud": "טַרְפֶּדֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6751-tarpedet",
+ "gender": "feminine"
+ }
+ ],
+ "טרפדת־": [
+ {
+ "word_nikkud": "טַרְפֶּדֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6751-tarpedet",
+ "gender": "feminine"
+ }
+ ],
+ "טרפדות־": [
+ {
+ "word_nikkud": "טַרְפֶּדֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6751-tarpedet",
+ "gender": "feminine"
+ }
+ ],
+ "טריקה": [
+ {
+ "word_nikkud": "טְרִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8681-trika",
+ "gender": "feminine"
+ }
+ ],
+ "טריקות": [
+ {
+ "word_nikkud": "טְרִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8681-trika",
+ "gender": "feminine"
+ }
+ ],
+ "טריקת־": [
+ {
+ "word_nikkud": "טְרִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8681-trika",
+ "gender": "feminine"
+ }
+ ],
+ "טריקות־": [
+ {
+ "word_nikkud": "טְרִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8681-trika",
+ "gender": "feminine"
+ }
+ ],
+ "טרשת": [
+ {
+ "word_nikkud": "טָרֶשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3956-tareshet",
+ "gender": "feminine"
+ }
+ ],
+ "טרשת־": [
+ {
+ "word_nikkud": "טָרֶשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3956-tareshet",
+ "gender": "feminine"
+ }
+ ],
+ "יאכטה": [
+ {
+ "word_nikkud": "יַאכְטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6923-yachta",
+ "gender": ""
+ }
+ ],
+ "יאכטות": [
+ {
+ "word_nikkud": "יַאכְטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6923-yachta",
+ "gender": ""
+ }
+ ],
+ "יאכטת־": [
+ {
+ "word_nikkud": "יַאכְטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6923-yachta",
+ "gender": ""
+ }
+ ],
+ "יאכטות־": [
+ {
+ "word_nikkud": "יַאכְטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6923-yachta",
+ "gender": ""
+ }
+ ],
+ "ייאוש": [
+ {
+ "word_nikkud": "יֵאוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4638-yeush",
+ "gender": "masculine"
+ }
+ ],
+ "ייאושים": [
+ {
+ "word_nikkud": "יֵאוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4638-yeush",
+ "gender": "masculine"
+ }
+ ],
+ "ייאוש־": [
+ {
+ "word_nikkud": "יֵאוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4638-yeush",
+ "gender": "masculine"
+ }
+ ],
+ "ייאושי־": [
+ {
+ "word_nikkud": "יֵאוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4638-yeush",
+ "gender": "masculine"
+ }
+ ],
+ "ייבוא": [
+ {
+ "word_nikkud": "יִבּוּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8994-yibu",
+ "gender": "masculine"
+ }
+ ],
+ "ייבואים": [
+ {
+ "word_nikkud": "יִבּוּא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8994-yibu",
+ "gender": "masculine"
+ }
+ ],
+ "ייבוא־": [
+ {
+ "word_nikkud": "יִבּוּא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8994-yibu",
+ "gender": "masculine"
+ }
+ ],
+ "ייבואי־": [
+ {
+ "word_nikkud": "יִבּוּא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8994-yibu",
+ "gender": "masculine"
+ }
+ ],
+ "יבלת": [
+ {
+ "word_nikkud": "יַבֶּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3291-yabelet",
+ "gender": "feminine"
+ }
+ ],
+ "יבלות": [
+ {
+ "word_nikkud": "יַבֶּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3291-yabelet",
+ "gender": "feminine"
+ }
+ ],
+ "יבלת־": [
+ {
+ "word_nikkud": "יַבֶּלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3291-yabelet",
+ "gender": "feminine"
+ }
+ ],
+ "יבלות־": [
+ {
+ "word_nikkud": "יַבֶּלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3291-yabelet",
+ "gender": "feminine"
+ }
+ ],
+ "מבול": [
+ {
+ "word_nikkud": "מַבּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4846-mabul",
+ "gender": "masculine"
+ }
+ ],
+ "מבולים": [
+ {
+ "word_nikkud": "מַבּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4846-mabul",
+ "gender": "masculine"
+ }
+ ],
+ "מבול־": [
+ {
+ "word_nikkud": "מַבּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4846-mabul",
+ "gender": "masculine"
+ }
+ ],
+ "מבולי־": [
+ {
+ "word_nikkud": "מַבּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4846-mabul",
+ "gender": "masculine"
+ }
+ ],
+ "יבול": [
+ {
+ "word_nikkud": "יְבוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8746-yevul",
+ "gender": "masculine"
+ }
+ ],
+ "יבולים": [
+ {
+ "word_nikkud": "יְבוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8746-yevul",
+ "gender": "masculine"
+ }
+ ],
+ "יבול־": [
+ {
+ "word_nikkud": "יְבוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8746-yevul",
+ "gender": "masculine"
+ }
+ ],
+ "יבולי־": [
+ {
+ "word_nikkud": "יְבוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8746-yevul",
+ "gender": "masculine"
+ }
+ ],
+ "הובלה": [
+ {
+ "word_nikkud": "הוֹבָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6264-hovala",
+ "gender": "feminine"
+ }
+ ],
+ "הובלות": [
+ {
+ "word_nikkud": "הוֹבָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6264-hovala",
+ "gender": "feminine"
+ }
+ ],
+ "הובלת־": [
+ {
+ "word_nikkud": "הוֹבָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6264-hovala",
+ "gender": "feminine"
+ }
+ ],
+ "הובלות־": [
+ {
+ "word_nikkud": "הוֹבָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6264-hovala",
+ "gender": "feminine"
+ }
+ ],
+ "ייבוש": [
+ {
+ "word_nikkud": "יִבּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4293-yibush",
+ "gender": "masculine"
+ }
+ ],
+ "ייבושים": [
+ {
+ "word_nikkud": "יִבּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4293-yibush",
+ "gender": "masculine"
+ }
+ ],
+ "ייבוש־": [
+ {
+ "word_nikkud": "יִבּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4293-yibush",
+ "gender": "masculine"
+ }
+ ],
+ "ייבושי־": [
+ {
+ "word_nikkud": "יִבּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4293-yibush",
+ "gender": "masculine"
+ }
+ ],
+ "יבשת": [
+ {
+ "word_nikkud": "יַבֶּשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4482-yabeshet",
+ "gender": "feminine"
+ }
+ ],
+ "יבשות": [
+ {
+ "word_nikkud": "יַבֶּשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4482-yabeshet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יַבָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4483-yabasha",
+ "gender": "feminine"
+ }
+ ],
+ "יבשת־": [
+ {
+ "word_nikkud": "יַבֶּשֶׁת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4482-yabeshet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יַבָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4483-yabasha",
+ "gender": "feminine"
+ }
+ ],
+ "יבשות־": [
+ {
+ "word_nikkud": "יַבֶּשֶׁת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4482-yabeshet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יַבָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4483-yabasha",
+ "gender": "feminine"
+ }
+ ],
+ "יבשה": [
+ {
+ "word_nikkud": "יַבָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4483-yabasha",
+ "gender": "feminine"
+ }
+ ],
+ "התייבשות": [
+ {
+ "word_nikkud": "הִתְיַבְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8404-hityabshut",
+ "gender": "feminine"
+ }
+ ],
+ "התייבשות־": [
+ {
+ "word_nikkud": "הִתְיַבְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8404-hityabshut",
+ "gender": "feminine"
+ }
+ ],
+ "תוגה": [
+ {
+ "word_nikkud": "תּוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4997-tuga",
+ "gender": "feminine"
+ }
+ ],
+ "תוגות": [
+ {
+ "word_nikkud": "תּוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4997-tuga",
+ "gender": "feminine"
+ }
+ ],
+ "תוגת־": [
+ {
+ "word_nikkud": "תּוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4997-tuga",
+ "gender": "feminine"
+ }
+ ],
+ "תוגות־": [
+ {
+ "word_nikkud": "תּוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4997-tuga",
+ "gender": "feminine"
+ }
+ ],
+ "יד": [
+ {
+ "word_nikkud": "יָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4086-yad",
+ "gender": "feminine"
+ }
+ ],
+ "ידות": [
+ {
+ "word_nikkud": "יָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4086-yad",
+ "gender": "feminine"
+ }
+ ],
+ "יד־": [
+ {
+ "word_nikkud": "יָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4086-yad",
+ "gender": "feminine"
+ }
+ ],
+ "ידות־": [
+ {
+ "word_nikkud": "יָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4086-yad",
+ "gender": "feminine"
+ }
+ ],
+ "ידידות": [
+ {
+ "word_nikkud": "יְדִידוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5581-yedidut",
+ "gender": "feminine"
+ }
+ ],
+ "ידידויות": [
+ {
+ "word_nikkud": "יְדִידוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5581-yedidut",
+ "gender": "feminine"
+ }
+ ],
+ "ידידות־": [
+ {
+ "word_nikkud": "יְדִידוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5581-yedidut",
+ "gender": "feminine"
+ }
+ ],
+ "ידידויות־": [
+ {
+ "word_nikkud": "יְדִידוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5581-yedidut",
+ "gender": "feminine"
+ }
+ ],
+ "ידיד": [
+ {
+ "word_nikkud": "יָדִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5580-yadid",
+ "gender": "masculine"
+ }
+ ],
+ "ידידים": [
+ {
+ "word_nikkud": "יָדִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5580-yadid",
+ "gender": "masculine"
+ }
+ ],
+ "ידיד־": [
+ {
+ "word_nikkud": "יָדִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5580-yadid",
+ "gender": "masculine"
+ }
+ ],
+ "ידידי־": [
+ {
+ "word_nikkud": "יָדִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5580-yadid",
+ "gender": "masculine"
+ }
+ ],
+ "הודיה": [
+ {
+ "word_nikkud": "הוֹדָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8075-hodaya",
+ "gender": "feminine"
+ }
+ ],
+ "הודיות": [
+ {
+ "word_nikkud": "הוֹדָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8075-hodaya",
+ "gender": "feminine"
+ }
+ ],
+ "הודיית־": [
+ {
+ "word_nikkud": "הוֹדָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8075-hodaya",
+ "gender": "feminine"
+ }
+ ],
+ "הודיות־": [
+ {
+ "word_nikkud": "הוֹדָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8075-hodaya",
+ "gender": "feminine"
+ }
+ ],
+ "תודה": [
+ {
+ "word_nikkud": "תּוֹדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4995-toda",
+ "gender": "feminine"
+ }
+ ],
+ "תודות": [
+ {
+ "word_nikkud": "תּוֹדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4995-toda",
+ "gender": "feminine"
+ }
+ ],
+ "תודת־": [
+ {
+ "word_nikkud": "תּוֹדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4995-toda",
+ "gender": "feminine"
+ }
+ ],
+ "תודות־": [
+ {
+ "word_nikkud": "תּוֹדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4995-toda",
+ "gender": "feminine"
+ }
+ ],
+ "מודעה": [
+ {
+ "word_nikkud": "מוֹדָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5657-modaa",
+ "gender": "feminine"
+ }
+ ],
+ "מודעות": [
+ {
+ "word_nikkud": "מוֹדָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5657-modaa",
+ "gender": "feminine"
+ }
+ ],
+ "מודעת־": [
+ {
+ "word_nikkud": "מוֹדָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5657-modaa",
+ "gender": "feminine"
+ }
+ ],
+ "מודעות־": [
+ {
+ "word_nikkud": "מוֹדָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5657-modaa",
+ "gender": "feminine"
+ }
+ ],
+ "דעת": [
+ {
+ "word_nikkud": "דַּעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4189-daat",
+ "gender": "feminine"
+ }
+ ],
+ "דיעה": [
+ {
+ "word_nikkud": "דַּעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4189-daat",
+ "gender": "feminine"
+ }
+ ],
+ "דעת־": [
+ {
+ "word_nikkud": "דַּעַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4189-daat",
+ "gender": "feminine"
+ }
+ ],
+ "ידיעה": [
+ {
+ "word_nikkud": "יְדִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2817-yedia",
+ "gender": "feminine"
+ }
+ ],
+ "ידיעות": [
+ {
+ "word_nikkud": "יְדִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2817-yedia",
+ "gender": "feminine"
+ }
+ ],
+ "ידיעת־": [
+ {
+ "word_nikkud": "יְדִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2817-yedia",
+ "gender": "feminine"
+ }
+ ],
+ "ידיעות־": [
+ {
+ "word_nikkud": "יְדִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2817-yedia",
+ "gender": "feminine"
+ }
+ ],
+ "ידע": [
+ {
+ "word_nikkud": "יֶדַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5350-yeda",
+ "gender": "masculine"
+ }
+ ],
+ "ידע־": [
+ {
+ "word_nikkud": "יֶדַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5350-yeda",
+ "gender": "masculine"
+ }
+ ],
+ "ידען": [
+ {
+ "word_nikkud": "יַדְעָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3432-yadan",
+ "gender": "masculine"
+ }
+ ],
+ "ידענים": [
+ {
+ "word_nikkud": "יַדְעָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3432-yadan",
+ "gender": "masculine"
+ }
+ ],
+ "ידען־": [
+ {
+ "word_nikkud": "יַדְעָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3432-yadan",
+ "gender": "masculine"
+ }
+ ],
+ "ידעני־": [
+ {
+ "word_nikkud": "יַדְעָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3432-yadan",
+ "gender": "masculine"
+ }
+ ],
+ "הודעה": [
+ {
+ "word_nikkud": "הוֹדָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3535-hodaa",
+ "gender": "feminine"
+ }
+ ],
+ "הודעות": [
+ {
+ "word_nikkud": "הוֹדָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3535-hodaa",
+ "gender": "feminine"
+ }
+ ],
+ "הודעת־": [
+ {
+ "word_nikkud": "הוֹדָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3535-hodaa",
+ "gender": "feminine"
+ }
+ ],
+ "הודעות־": [
+ {
+ "word_nikkud": "הוֹדָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3535-hodaa",
+ "gender": "feminine"
+ }
+ ],
+ "מדע": [
+ {
+ "word_nikkud": "מַדָּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4790-mada",
+ "gender": "masculine"
+ }
+ ],
+ "מדעים": [
+ {
+ "word_nikkud": "מַדָּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4790-mada",
+ "gender": "masculine"
+ }
+ ],
+ "מדע־": [
+ {
+ "word_nikkud": "מַדָּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4790-mada",
+ "gender": "masculine"
+ }
+ ],
+ "מדעי־": [
+ {
+ "word_nikkud": "מַדָּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4790-mada",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַדָּעִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8347-madai",
+ "gender": "masculine"
+ }
+ ],
+ "מידע": [
+ {
+ "word_nikkud": "מֵידָע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4791-meda",
+ "gender": "masculine"
+ }
+ ],
+ "מידע־": [
+ {
+ "word_nikkud": "מֵידָע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4791-meda",
+ "gender": "masculine"
+ }
+ ],
+ "מדעי": [
+ {
+ "word_nikkud": "מַדָּעִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8347-madai",
+ "gender": "masculine"
+ }
+ ],
+ "מדעיים": [
+ {
+ "word_nikkud": "מַדָּעִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8347-madai",
+ "gender": "masculine"
+ }
+ ],
+ "מדעיי־": [
+ {
+ "word_nikkud": "מַדָּעִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8347-madai",
+ "gender": "masculine"
+ }
+ ],
+ "ידעוני": [
+ {
+ "word_nikkud": "יִדְּעוֹנִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8459-yidoni",
+ "gender": ""
+ }
+ ],
+ "ידעוניים": [
+ {
+ "word_nikkud": "יִדְּעוֹנִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8459-yidoni",
+ "gender": ""
+ }
+ ],
+ "ידעוני־": [
+ {
+ "word_nikkud": "יִדְּעוֹנִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8459-yidoni",
+ "gender": ""
+ }
+ ],
+ "ידעוניי־": [
+ {
+ "word_nikkud": "יִדְּעוֹנִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8459-yidoni",
+ "gender": ""
+ }
+ ],
+ "מדען": [
+ {
+ "word_nikkud": "מַדְעָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5995-madan",
+ "gender": ""
+ }
+ ],
+ "מדענים": [
+ {
+ "word_nikkud": "מַדְעָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5995-madan",
+ "gender": ""
+ }
+ ],
+ "מדען־": [
+ {
+ "word_nikkud": "מַדְעָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5995-madan",
+ "gender": ""
+ }
+ ],
+ "מדעני־": [
+ {
+ "word_nikkud": "מַדְעָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5995-madan",
+ "gender": ""
+ }
+ ],
+ "מודיעין": [
+ {
+ "word_nikkud": "מוֹדִיעִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6657-modiin",
+ "gender": "masculine"
+ }
+ ],
+ "תודעה": [
+ {
+ "word_nikkud": "תּוֹדָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7337-todaa",
+ "gender": "feminine"
+ }
+ ],
+ "תודעות": [
+ {
+ "word_nikkud": "תּוֹדָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7337-todaa",
+ "gender": "feminine"
+ }
+ ],
+ "תודעת־": [
+ {
+ "word_nikkud": "תּוֹדָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7337-todaa",
+ "gender": "feminine"
+ }
+ ],
+ "תודעות־": [
+ {
+ "word_nikkud": "תּוֹדָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7337-todaa",
+ "gender": "feminine"
+ }
+ ],
+ "ידית": [
+ {
+ "word_nikkud": "יָדִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7837-yadit",
+ "gender": "feminine"
+ }
+ ],
+ "ידיות": [
+ {
+ "word_nikkud": "יָדִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7837-yadit",
+ "gender": "feminine"
+ }
+ ],
+ "ידית־": [
+ {
+ "word_nikkud": "יָדִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7837-yadit",
+ "gender": "feminine"
+ }
+ ],
+ "ידיות־": [
+ {
+ "word_nikkud": "יָדִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7837-yadit",
+ "gender": "feminine"
+ }
+ ],
+ "יהב": [
+ {
+ "word_nikkud": "יְהָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8885-yehav",
+ "gender": "masculine"
+ }
+ ],
+ "יהב־": [
+ {
+ "word_nikkud": "יְהָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8885-yehav",
+ "gender": "masculine"
+ }
+ ],
+ "יהדות": [
+ {
+ "word_nikkud": "יַהֲדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6191-yahadut",
+ "gender": "feminine"
+ }
+ ],
+ "יהדות־": [
+ {
+ "word_nikkud": "יַהֲדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6191-yahadut",
+ "gender": "feminine"
+ }
+ ],
+ "יהודייה": [
+ {
+ "word_nikkud": "יְהוּדִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6189-yehudiya",
+ "gender": "feminine"
+ }
+ ],
+ "יהודייות": [
+ {
+ "word_nikkud": "יְהוּדִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6189-yehudiya",
+ "gender": "feminine"
+ }
+ ],
+ "יהודיית־": [
+ {
+ "word_nikkud": "יְהוּדִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6189-yehudiya",
+ "gender": "feminine"
+ }
+ ],
+ "יהודייות־": [
+ {
+ "word_nikkud": "יְהוּדִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6189-yehudiya",
+ "gender": "feminine"
+ }
+ ],
+ "יהודי": [
+ {
+ "word_nikkud": "יְהוּדִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6188-yehudi",
+ "gender": "masculine"
+ }
+ ],
+ "יהודים": [
+ {
+ "word_nikkud": "יְהוּדִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6188-yehudi",
+ "gender": "masculine"
+ }
+ ],
+ "יהודי־": [
+ {
+ "word_nikkud": "יְהוּדִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6188-yehudi",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "יְהוּדִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6188-yehudi",
+ "gender": "masculine"
+ }
+ ],
+ "יהלום": [
+ {
+ "word_nikkud": "יַהֲלוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6720-yahalom",
+ "gender": ""
+ }
+ ],
+ "יהלומים": [
+ {
+ "word_nikkud": "יַהֲלוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6720-yahalom",
+ "gender": ""
+ }
+ ],
+ "יהלום־": [
+ {
+ "word_nikkud": "יַהֲלוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6720-yahalom",
+ "gender": ""
+ }
+ ],
+ "יהלומי־": [
+ {
+ "word_nikkud": "יַהֲלוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6720-yahalom",
+ "gender": ""
+ }
+ ],
+ "יוהרה": [
+ {
+ "word_nikkud": "יֻהֲרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7360-yuhara",
+ "gender": "feminine"
+ }
+ ],
+ "יוהרות": [
+ {
+ "word_nikkud": "יֻהֲרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7360-yuhara",
+ "gender": "feminine"
+ }
+ ],
+ "יוהרת־": [
+ {
+ "word_nikkud": "יֻהֲרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7360-yuhara",
+ "gender": "feminine"
+ }
+ ],
+ "יוהרות־": [
+ {
+ "word_nikkud": "יֻהֲרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7360-yuhara",
+ "gender": "feminine"
+ }
+ ],
+ "יוגה": [
+ {
+ "word_nikkud": "יוֹגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7102-yoga",
+ "gender": "feminine"
+ }
+ ],
+ "יום": [
+ {
+ "word_nikkud": "יוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3061-yom",
+ "gender": "masculine"
+ }
+ ],
+ "ימים": [
+ {
+ "word_nikkud": "יוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3061-yom",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "יָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4137-yam",
+ "gender": "masculine"
+ }
+ ],
+ "יום־": [
+ {
+ "word_nikkud": "יוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3061-yom",
+ "gender": "masculine"
+ }
+ ],
+ "ימי־": [
+ {
+ "word_nikkud": "יוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3061-yom",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "יָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4137-yam",
+ "gender": "masculine"
+ }
+ ],
+ "ימות־": [
+ {
+ "word_nikkud": "יוֹם",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3061-yom",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "יַמָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5239-yama",
+ "gender": "feminine"
+ }
+ ],
+ "יומיים": [
+ {
+ "word_nikkud": "יוֹמַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7863-yomayim",
+ "gender": "masculine"
+ }
+ ],
+ "יומן": [
+ {
+ "word_nikkud": "יוֹמָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5301-yoman",
+ "gender": "masculine"
+ }
+ ],
+ "יומנים": [
+ {
+ "word_nikkud": "יוֹמָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5301-yoman",
+ "gender": "masculine"
+ }
+ ],
+ "יומן־": [
+ {
+ "word_nikkud": "יוֹמָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5301-yoman",
+ "gender": "masculine"
+ }
+ ],
+ "יומני־": [
+ {
+ "word_nikkud": "יוֹמָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5301-yoman",
+ "gender": "masculine"
+ }
+ ],
+ "יונה": [
+ {
+ "word_nikkud": "יוֹנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7139-yona",
+ "gender": "feminine"
+ }
+ ],
+ "יונים": [
+ {
+ "word_nikkud": "יוֹנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7139-yona",
+ "gender": "feminine"
+ }
+ ],
+ "יונת־": [
+ {
+ "word_nikkud": "יוֹנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7139-yona",
+ "gender": "feminine"
+ }
+ ],
+ "יוני־": [
+ {
+ "word_nikkud": "יוֹנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7139-yona",
+ "gender": "feminine"
+ }
+ ],
+ "יוזמה": [
+ {
+ "word_nikkud": "יָזְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3232-yozma",
+ "gender": "feminine"
+ }
+ ],
+ "יוזמות": [
+ {
+ "word_nikkud": "יָזְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3232-yozma",
+ "gender": "feminine"
+ }
+ ],
+ "יוזמת־": [
+ {
+ "word_nikkud": "יָזְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3232-yozma",
+ "gender": "feminine"
+ }
+ ],
+ "יוזמות־": [
+ {
+ "word_nikkud": "יָזְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3232-yozma",
+ "gender": "feminine"
+ }
+ ],
+ "יזם": [
+ {
+ "word_nikkud": "יַזָּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3063-yazam",
+ "gender": "masculine"
+ }
+ ],
+ "יזמים": [
+ {
+ "word_nikkud": "יַזָּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3063-yazam",
+ "gender": "masculine"
+ }
+ ],
+ "יזם־": [
+ {
+ "word_nikkud": "יַזָּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3063-yazam",
+ "gender": "masculine"
+ }
+ ],
+ "יזמי־": [
+ {
+ "word_nikkud": "יַזָּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3063-yazam",
+ "gender": "masculine"
+ }
+ ],
+ "מיזם": [
+ {
+ "word_nikkud": "מֵיזָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3064-mezam",
+ "gender": "masculine"
+ }
+ ],
+ "מיזמים": [
+ {
+ "word_nikkud": "מֵיזָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3064-mezam",
+ "gender": "masculine"
+ }
+ ],
+ "מיזם־": [
+ {
+ "word_nikkud": "מֵיזָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3064-mezam",
+ "gender": "masculine"
+ }
+ ],
+ "מיזמי־": [
+ {
+ "word_nikkud": "מֵיזָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3064-mezam",
+ "gender": "masculine"
+ }
+ ],
+ "יזע": [
+ {
+ "word_nikkud": "יֶזַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6973-yeza",
+ "gender": "masculine"
+ }
+ ],
+ "יזע־": [
+ {
+ "word_nikkud": "יֶזַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6973-yeza",
+ "gender": "masculine"
+ }
+ ],
+ "זיעה": [
+ {
+ "word_nikkud": "זֵעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6974-zea",
+ "gender": "feminine"
+ }
+ ],
+ "זיעת־": [
+ {
+ "word_nikkud": "זֵעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6974-zea",
+ "gender": "feminine"
+ }
+ ],
+ "ייחוד": [
+ {
+ "word_nikkud": "יִחוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4629-yichud",
+ "gender": "masculine"
+ }
+ ],
+ "ייחודים": [
+ {
+ "word_nikkud": "יִחוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4629-yichud",
+ "gender": "masculine"
+ }
+ ],
+ "ייחוד־": [
+ {
+ "word_nikkud": "יִחוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4629-yichud",
+ "gender": "masculine"
+ }
+ ],
+ "ייחודי־": [
+ {
+ "word_nikkud": "יִחוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4629-yichud",
+ "gender": "masculine"
+ }
+ ],
+ "תוחלת": [
+ {
+ "word_nikkud": "תּוֹחֶלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6908-tochelet",
+ "gender": "feminine"
+ }
+ ],
+ "תוחלות": [
+ {
+ "word_nikkud": "תּוֹחֶלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6908-tochelet",
+ "gender": "feminine"
+ }
+ ],
+ "תוחלת־": [
+ {
+ "word_nikkud": "תּוֹחֶלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6908-tochelet",
+ "gender": "feminine"
+ }
+ ],
+ "תוחלות־": [
+ {
+ "word_nikkud": "תּוֹחֶלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6908-tochelet",
+ "gender": "feminine"
+ }
+ ],
+ "יחס": [
+ {
+ "word_nikkud": "יַחַס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3827-yachas",
+ "gender": "masculine"
+ }
+ ],
+ "יחסים": [
+ {
+ "word_nikkud": "יַחַס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3827-yachas",
+ "gender": "masculine"
+ }
+ ],
+ "יחס־": [
+ {
+ "word_nikkud": "יַחַס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3827-yachas",
+ "gender": "masculine"
+ }
+ ],
+ "יחסי־": [
+ {
+ "word_nikkud": "יַחַס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3827-yachas",
+ "gender": "masculine"
+ }
+ ],
+ "התייחסות": [
+ {
+ "word_nikkud": "הִתְיַחֲסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8126-hityachasut",
+ "gender": "feminine"
+ }
+ ],
+ "התייחסויות": [
+ {
+ "word_nikkud": "הִתְיַחֲסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8126-hityachasut",
+ "gender": "feminine"
+ }
+ ],
+ "התייחסות־": [
+ {
+ "word_nikkud": "הִתְיַחֲסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8126-hityachasut",
+ "gender": "feminine"
+ }
+ ],
+ "התייחסויות־": [
+ {
+ "word_nikkud": "הִתְיַחֲסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8126-hityachasut",
+ "gender": "feminine"
+ }
+ ],
+ "יחסות": [
+ {
+ "word_nikkud": "יַחֲסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8408-yachasut",
+ "gender": "feminine"
+ }
+ ],
+ "יחסות־": [
+ {
+ "word_nikkud": "יַחֲסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8408-yachasut",
+ "gender": "feminine"
+ }
+ ],
+ "יוחסין": [
+ {
+ "word_nikkud": "יֻחֲסִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8636-yuchasin",
+ "gender": ""
+ }
+ ],
+ "מיטב": [
+ {
+ "word_nikkud": "מֵיטָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6891-metav",
+ "gender": "masculine"
+ }
+ ],
+ "מיטב־": [
+ {
+ "word_nikkud": "מֵיטָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6891-metav",
+ "gender": "masculine"
+ }
+ ],
+ "יין": [
+ {
+ "word_nikkud": "יַיִן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5960-yayin",
+ "gender": "masculine"
+ }
+ ],
+ "יינות": [
+ {
+ "word_nikkud": "יַיִן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5960-yayin",
+ "gender": "masculine"
+ }
+ ],
+ "יין־": [
+ {
+ "word_nikkud": "יַיִן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5960-yayin",
+ "gender": "masculine"
+ }
+ ],
+ "יינות־": [
+ {
+ "word_nikkud": "יַיִן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5960-yayin",
+ "gender": "masculine"
+ }
+ ],
+ "הוכחה": [
+ {
+ "word_nikkud": "הוֹכָחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7265-hochacha",
+ "gender": "feminine"
+ }
+ ],
+ "הוכחות": [
+ {
+ "word_nikkud": "הוֹכָחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7265-hochacha",
+ "gender": "feminine"
+ }
+ ],
+ "הוכחת־": [
+ {
+ "word_nikkud": "הוֹכָחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7265-hochacha",
+ "gender": "feminine"
+ }
+ ],
+ "הוכחות־": [
+ {
+ "word_nikkud": "הוֹכָחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7265-hochacha",
+ "gender": "feminine"
+ }
+ ],
+ "יכטה": [
+ {
+ "word_nikkud": "יַכְטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7525-yachta",
+ "gender": "feminine"
+ }
+ ],
+ "יכטות": [
+ {
+ "word_nikkud": "יַכְטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7525-yachta",
+ "gender": "feminine"
+ }
+ ],
+ "יכטת־": [
+ {
+ "word_nikkud": "יַכְטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7525-yachta",
+ "gender": "feminine"
+ }
+ ],
+ "יכטות־": [
+ {
+ "word_nikkud": "יַכְטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7525-yachta",
+ "gender": "feminine"
+ }
+ ],
+ "יכולת": [
+ {
+ "word_nikkud": "יְכֹלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3260-yecholet",
+ "gender": "feminine"
+ }
+ ],
+ "יכולות": [
+ {
+ "word_nikkud": "יְכֹלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3260-yecholet",
+ "gender": "feminine"
+ }
+ ],
+ "יכולת־": [
+ {
+ "word_nikkud": "יְכֹלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3260-yecholet",
+ "gender": "feminine"
+ }
+ ],
+ "יכולות־": [
+ {
+ "word_nikkud": "יְכֹלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3260-yecholet",
+ "gender": "feminine"
+ }
+ ],
+ "ילד": [
+ {
+ "word_nikkud": "יֶלֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2650-yeled",
+ "gender": "masculine"
+ }
+ ],
+ "ילדים": [
+ {
+ "word_nikkud": "יֶלֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2650-yeled",
+ "gender": "masculine"
+ }
+ ],
+ "ילד־": [
+ {
+ "word_nikkud": "יֶלֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2650-yeled",
+ "gender": "masculine"
+ }
+ ],
+ "ילדי־": [
+ {
+ "word_nikkud": "יֶלֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2650-yeled",
+ "gender": "masculine"
+ }
+ ],
+ "ילדה": [
+ {
+ "word_nikkud": "יַלְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2651-yalda",
+ "gender": "feminine"
+ }
+ ],
+ "ילדות": [
+ {
+ "word_nikkud": "יַלְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2651-yalda",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יַלְדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3643-yaldut",
+ "gender": "feminine"
+ }
+ ],
+ "ילדת־": [
+ {
+ "word_nikkud": "יַלְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2651-yalda",
+ "gender": "feminine"
+ }
+ ],
+ "ילדות־": [
+ {
+ "word_nikkud": "יַלְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2651-yalda",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יַלְדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3643-yaldut",
+ "gender": "feminine"
+ }
+ ],
+ "מולדת": [
+ {
+ "word_nikkud": "מוֹלֶדֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5430-moledet",
+ "gender": "feminine"
+ }
+ ],
+ "מולדות": [
+ {
+ "word_nikkud": "מוֹלֶדֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5430-moledet",
+ "gender": "feminine"
+ }
+ ],
+ "מולדת־": [
+ {
+ "word_nikkud": "מוֹלֶדֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5430-moledet",
+ "gender": "feminine"
+ }
+ ],
+ "מולדות־": [
+ {
+ "word_nikkud": "מוֹלֶדֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5430-moledet",
+ "gender": "feminine"
+ }
+ ],
+ "לידה": [
+ {
+ "word_nikkud": "לֵדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5409-leda",
+ "gender": "feminine"
+ }
+ ],
+ "לידת־": [
+ {
+ "word_nikkud": "לֵדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5409-leda",
+ "gender": "feminine"
+ }
+ ],
+ "ילודה": [
+ {
+ "word_nikkud": "יְלוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3659-yeluda",
+ "gender": "feminine"
+ }
+ ],
+ "ילודת־": [
+ {
+ "word_nikkud": "יְלוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3659-yeluda",
+ "gender": "feminine"
+ }
+ ],
+ "הולדת": [
+ {
+ "word_nikkud": "הֻלֶּדֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8560-huledet",
+ "gender": "feminine"
+ }
+ ],
+ "הולדת־": [
+ {
+ "word_nikkud": "הֻלֶּדֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8560-huledet",
+ "gender": "feminine"
+ }
+ ],
+ "תולדה": [
+ {
+ "word_nikkud": "תּוֹלָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6287-tolada",
+ "gender": "feminine"
+ }
+ ],
+ "תולדות": [
+ {
+ "word_nikkud": "תּוֹלָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6287-tolada",
+ "gender": "feminine"
+ }
+ ],
+ "תולדת־": [
+ {
+ "word_nikkud": "תּוֹלָדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6287-tolada",
+ "gender": "feminine"
+ }
+ ],
+ "תולדות־": [
+ {
+ "word_nikkud": "תּוֹלָדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6287-tolada",
+ "gender": "feminine"
+ }
+ ],
+ "יליד": [
+ {
+ "word_nikkud": "יָלִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9075-yalid",
+ "gender": "masculine"
+ }
+ ],
+ "ילידים": [
+ {
+ "word_nikkud": "יָלִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9075-yalid",
+ "gender": "masculine"
+ }
+ ],
+ "יליד־": [
+ {
+ "word_nikkud": "יָלִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9075-yalid",
+ "gender": "masculine"
+ }
+ ],
+ "ילידי־": [
+ {
+ "word_nikkud": "יָלִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9075-yalid",
+ "gender": "masculine"
+ }
+ ],
+ "יללה": [
+ {
+ "word_nikkud": "יְלָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2848-yelala",
+ "gender": "feminine"
+ }
+ ],
+ "יללות": [
+ {
+ "word_nikkud": "יְלָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2848-yelala",
+ "gender": "feminine"
+ }
+ ],
+ "יללת־": [
+ {
+ "word_nikkud": "יְלָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2848-yelala",
+ "gender": "feminine"
+ }
+ ],
+ "יללות־": [
+ {
+ "word_nikkud": "יְלָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2848-yelala",
+ "gender": "feminine"
+ }
+ ],
+ "תולעת": [
+ {
+ "word_nikkud": "תּוֹלַעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5433-tolaat",
+ "gender": "feminine"
+ }
+ ],
+ "תולעה": [
+ {
+ "word_nikkud": "תּוֹלַעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5433-tolaat",
+ "gender": "feminine"
+ }
+ ],
+ "תולעים": [
+ {
+ "word_nikkud": "תּוֹלַעַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5433-tolaat",
+ "gender": "feminine"
+ }
+ ],
+ "תולעת־": [
+ {
+ "word_nikkud": "תּוֹלַעַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5433-tolaat",
+ "gender": "feminine"
+ }
+ ],
+ "תולעי־": [
+ {
+ "word_nikkud": "תּוֹלַעַת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5433-tolaat",
+ "gender": "feminine"
+ }
+ ],
+ "ימין": [
+ {
+ "word_nikkud": "יָמִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7092-yamin",
+ "gender": "masculine"
+ }
+ ],
+ "ימין־": [
+ {
+ "word_nikkud": "יָמִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7092-yamin",
+ "gender": "masculine"
+ }
+ ],
+ "ימה": [
+ {
+ "word_nikkud": "יַמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5239-yama",
+ "gender": "feminine"
+ }
+ ],
+ "ימות": [
+ {
+ "word_nikkud": "יַמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5239-yama",
+ "gender": "feminine"
+ }
+ ],
+ "ימת־": [
+ {
+ "word_nikkud": "יַמָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5239-yama",
+ "gender": "feminine"
+ }
+ ],
+ "ים": [
+ {
+ "word_nikkud": "יָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4137-yam",
+ "gender": "masculine"
+ }
+ ],
+ "ים־": [
+ {
+ "word_nikkud": "יָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4137-yam",
+ "gender": "masculine"
+ }
+ ],
+ "יממה": [
+ {
+ "word_nikkud": "יְמָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8929-yemama",
+ "gender": "feminine"
+ }
+ ],
+ "יממות": [
+ {
+ "word_nikkud": "יְמָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8929-yemama",
+ "gender": "feminine"
+ }
+ ],
+ "יממת־": [
+ {
+ "word_nikkud": "יְמָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8929-yemama",
+ "gender": "feminine"
+ }
+ ],
+ "יממות־": [
+ {
+ "word_nikkud": "יְמָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8929-yemama",
+ "gender": "feminine"
+ }
+ ],
+ "מיומנות": [
+ {
+ "word_nikkud": "מְיֻמָּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4425-meyumanut",
+ "gender": "feminine"
+ }
+ ],
+ "מיומנויות": [
+ {
+ "word_nikkud": "מְיֻמָּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4425-meyumanut",
+ "gender": "feminine"
+ }
+ ],
+ "מיומנות־": [
+ {
+ "word_nikkud": "מְיֻמָּנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4425-meyumanut",
+ "gender": "feminine"
+ }
+ ],
+ "מיומנויות־": [
+ {
+ "word_nikkud": "מְיֻמָּנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4425-meyumanut",
+ "gender": "feminine"
+ }
+ ],
+ "יומרה": [
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ }
+ ],
+ "יומרות": [
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ }
+ ],
+ "יומרת־": [
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ }
+ ],
+ "יומרות־": [
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יָמְרָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3233-yomra",
+ "gender": "feminine"
+ }
+ ],
+ "תינוקת": [
+ {
+ "word_nikkud": "תִּינֹקֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6171-tinoket",
+ "gender": "feminine"
+ }
+ ],
+ "תינוקות": [
+ {
+ "word_nikkud": "תִּינֹקֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6171-tinoket",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תִּינוֹק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6170-tinok",
+ "gender": ""
+ }
+ ],
+ "תינוקת־": [
+ {
+ "word_nikkud": "תִּינֹקֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6171-tinoket",
+ "gender": "feminine"
+ }
+ ],
+ "תינוקות־": [
+ {
+ "word_nikkud": "תִּינֹקֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6171-tinoket",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תִּינוֹק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6170-tinok",
+ "gender": ""
+ }
+ ],
+ "תינוק": [
+ {
+ "word_nikkud": "תִּינוֹק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6170-tinok",
+ "gender": ""
+ }
+ ],
+ "תינוק־": [
+ {
+ "word_nikkud": "תִּינוֹק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6170-tinok",
+ "gender": ""
+ }
+ ],
+ "יונק": [
+ {
+ "word_nikkud": "יוֹנֵק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6968-yonek",
+ "gender": "masculine"
+ }
+ ],
+ "יונקים": [
+ {
+ "word_nikkud": "יוֹנֵק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6968-yonek",
+ "gender": "masculine"
+ }
+ ],
+ "יונק־": [
+ {
+ "word_nikkud": "יוֹנֵק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6968-yonek",
+ "gender": "masculine"
+ }
+ ],
+ "יונקי־": [
+ {
+ "word_nikkud": "יוֹנֵק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6968-yonek",
+ "gender": "masculine"
+ }
+ ],
+ "יסודיות": [
+ {
+ "word_nikkud": "יְסוֹדִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5884-yesodiyut",
+ "gender": "feminine"
+ }
+ ],
+ "יסודיות־": [
+ {
+ "word_nikkud": "יְסוֹדִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5884-yesodiyut",
+ "gender": "feminine"
+ }
+ ],
+ "יסוד": [
+ {
+ "word_nikkud": "יְסוֹד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3720-yesod",
+ "gender": "masculine"
+ }
+ ],
+ "יסודות": [
+ {
+ "word_nikkud": "יְסוֹד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3720-yesod",
+ "gender": "masculine"
+ }
+ ],
+ "יסוד־": [
+ {
+ "word_nikkud": "יְסוֹד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3720-yesod",
+ "gender": "masculine"
+ }
+ ],
+ "יסודות־": [
+ {
+ "word_nikkud": "יְסוֹד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3720-yesod",
+ "gender": "masculine"
+ }
+ ],
+ "מוסד": [
+ {
+ "word_nikkud": "מוֹסָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3721-mosad",
+ "gender": "masculine"
+ }
+ ],
+ "מוסדות": [
+ {
+ "word_nikkud": "מוֹסָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3721-mosad",
+ "gender": "masculine"
+ }
+ ],
+ "מוסד־": [
+ {
+ "word_nikkud": "מוֹסָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3721-mosad",
+ "gender": "masculine"
+ }
+ ],
+ "מוסדות־": [
+ {
+ "word_nikkud": "מוֹסָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3721-mosad",
+ "gender": "masculine"
+ }
+ ],
+ "מסד": [
+ {
+ "word_nikkud": "מַסָּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6506-masad",
+ "gender": "masculine"
+ }
+ ],
+ "מסדים": [
+ {
+ "word_nikkud": "מַסָּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6506-masad",
+ "gender": "masculine"
+ }
+ ],
+ "מסד־": [
+ {
+ "word_nikkud": "מַסָּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6506-masad",
+ "gender": "masculine"
+ }
+ ],
+ "מסדי־": [
+ {
+ "word_nikkud": "מַסָּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6506-masad",
+ "gender": "masculine"
+ }
+ ],
+ "תוספת": [
+ {
+ "word_nikkud": "תּוֹסֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5590-tosefet",
+ "gender": "feminine"
+ }
+ ],
+ "תוספות": [
+ {
+ "word_nikkud": "תּוֹסֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5590-tosefet",
+ "gender": "feminine"
+ }
+ ],
+ "תוספת־": [
+ {
+ "word_nikkud": "תּוֹסֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5590-tosefet",
+ "gender": "feminine"
+ }
+ ],
+ "תוספות־": [
+ {
+ "word_nikkud": "תּוֹסֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5590-tosefet",
+ "gender": "feminine"
+ }
+ ],
+ "הוספה": [
+ {
+ "word_nikkud": "הוֹסָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4480-hosafa",
+ "gender": "feminine"
+ }
+ ],
+ "הוספות": [
+ {
+ "word_nikkud": "הוֹסָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4480-hosafa",
+ "gender": "feminine"
+ }
+ ],
+ "הוספת־": [
+ {
+ "word_nikkud": "הוֹסָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4480-hosafa",
+ "gender": "feminine"
+ }
+ ],
+ "הוספות־": [
+ {
+ "word_nikkud": "הוֹסָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4480-hosafa",
+ "gender": "feminine"
+ }
+ ],
+ "ייסורים": [
+ {
+ "word_nikkud": "יִסּוּרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5904-yisurim",
+ "gender": "masculine"
+ }
+ ],
+ "ייסורי־": [
+ {
+ "word_nikkud": "יִסּוּרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5904-yisurim",
+ "gender": "masculine"
+ }
+ ],
+ "מוסר": [
+ {
+ "word_nikkud": "מוּסָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8083-musar",
+ "gender": ""
+ }
+ ],
+ "מוסרים": [
+ {
+ "word_nikkud": "מוּסָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8083-musar",
+ "gender": ""
+ }
+ ],
+ "מוסר־": [
+ {
+ "word_nikkud": "מוּסָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8083-musar",
+ "gender": ""
+ }
+ ],
+ "מוסרי־": [
+ {
+ "word_nikkud": "מוּסָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8083-musar",
+ "gender": ""
+ }
+ ],
+ "יעד": [
+ {
+ "word_nikkud": "יַעַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3896-yaad",
+ "gender": "masculine"
+ }
+ ],
+ "יעדים": [
+ {
+ "word_nikkud": "יַעַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3896-yaad",
+ "gender": "masculine"
+ }
+ ],
+ "יעד־": [
+ {
+ "word_nikkud": "יַעַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3896-yaad",
+ "gender": "masculine"
+ }
+ ],
+ "יעדי־": [
+ {
+ "word_nikkud": "יַעַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3896-yaad",
+ "gender": "masculine"
+ }
+ ],
+ "מועד": [
+ {
+ "word_nikkud": "מוֹעֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6649-moed",
+ "gender": "masculine"
+ }
+ ],
+ "מועדים": [
+ {
+ "word_nikkud": "מוֹעֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6649-moed",
+ "gender": "masculine"
+ }
+ ],
+ "מועד־": [
+ {
+ "word_nikkud": "מוֹעֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6649-moed",
+ "gender": "masculine"
+ }
+ ],
+ "מועדי־": [
+ {
+ "word_nikkud": "מוֹעֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6649-moed",
+ "gender": "masculine"
+ }
+ ],
+ "מועדון": [
+ {
+ "word_nikkud": "מוֹעֲדוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6650-moadon",
+ "gender": "masculine"
+ }
+ ],
+ "מועדונים": [
+ {
+ "word_nikkud": "מוֹעֲדוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6650-moadon",
+ "gender": "masculine"
+ }
+ ],
+ "מועדון־": [
+ {
+ "word_nikkud": "מוֹעֲדוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6650-moadon",
+ "gender": "masculine"
+ }
+ ],
+ "מועדוני־": [
+ {
+ "word_nikkud": "מוֹעֲדוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6650-moadon",
+ "gender": "masculine"
+ }
+ ],
+ "תועלת": [
+ {
+ "word_nikkud": "תּוֹעֶלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5934-toelet",
+ "gender": "feminine"
+ }
+ ],
+ "תועלות": [
+ {
+ "word_nikkud": "תּוֹעֶלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5934-toelet",
+ "gender": "feminine"
+ }
+ ],
+ "תועלת־": [
+ {
+ "word_nikkud": "תּוֹעֶלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5934-toelet",
+ "gender": "feminine"
+ }
+ ],
+ "תועלות־": [
+ {
+ "word_nikkud": "תּוֹעֶלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5934-toelet",
+ "gender": "feminine"
+ }
+ ],
+ "התייעלות": [
+ {
+ "word_nikkud": "הִתְיַעֲלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8961-hityaalut",
+ "gender": "feminine"
+ }
+ ],
+ "התייעלויות": [
+ {
+ "word_nikkud": "הִתְיַעֲלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8961-hityaalut",
+ "gender": "feminine"
+ }
+ ],
+ "התייעלות־": [
+ {
+ "word_nikkud": "הִתְיַעֲלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8961-hityaalut",
+ "gender": "feminine"
+ }
+ ],
+ "התייעלויות־": [
+ {
+ "word_nikkud": "הִתְיַעֲלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8961-hityaalut",
+ "gender": "feminine"
+ }
+ ],
+ "יען": [
+ {
+ "word_nikkud": "יָעֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4402-yaen",
+ "gender": "masculine"
+ }
+ ],
+ "יענים": [
+ {
+ "word_nikkud": "יָעֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4402-yaen",
+ "gender": "masculine"
+ }
+ ],
+ "יען־": [
+ {
+ "word_nikkud": "יָעֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4402-yaen",
+ "gender": "masculine"
+ }
+ ],
+ "יעני־": [
+ {
+ "word_nikkud": "יָעֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4402-yaen",
+ "gender": "masculine"
+ }
+ ],
+ "יעפת": [
+ {
+ "word_nikkud": "יַעֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6872-yaefet",
+ "gender": "feminine"
+ }
+ ],
+ "יעפות": [
+ {
+ "word_nikkud": "יַעֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6872-yaefet",
+ "gender": "feminine"
+ }
+ ],
+ "יעפת־": [
+ {
+ "word_nikkud": "יַעֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6872-yaefet",
+ "gender": "feminine"
+ }
+ ],
+ "יעפות־": [
+ {
+ "word_nikkud": "יַעֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6872-yaefet",
+ "gender": "feminine"
+ }
+ ],
+ "ייעוץ": [
+ {
+ "word_nikkud": "יִעוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4707-yiutz",
+ "gender": "masculine"
+ }
+ ],
+ "ייעוצים": [
+ {
+ "word_nikkud": "יִעוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4707-yiutz",
+ "gender": "masculine"
+ }
+ ],
+ "ייעוץ־": [
+ {
+ "word_nikkud": "יִעוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4707-yiutz",
+ "gender": "masculine"
+ }
+ ],
+ "ייעוצי־": [
+ {
+ "word_nikkud": "יִעוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4707-yiutz",
+ "gender": "masculine"
+ }
+ ],
+ "עיצה": [
+ {
+ "word_nikkud": "עֵצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5451-etza",
+ "gender": "feminine"
+ }
+ ],
+ "עיצות": [
+ {
+ "word_nikkud": "עֵצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5451-etza",
+ "gender": "feminine"
+ }
+ ],
+ "עצת־": [
+ {
+ "word_nikkud": "עֵצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5451-etza",
+ "gender": "feminine"
+ }
+ ],
+ "עצות־": [
+ {
+ "word_nikkud": "עֵצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5451-etza",
+ "gender": "feminine"
+ }
+ ],
+ "התייעצות": [
+ {
+ "word_nikkud": "הִתְיַעֲצוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5903-hityaatzut",
+ "gender": "feminine"
+ }
+ ],
+ "התייעצויות": [
+ {
+ "word_nikkud": "הִתְיַעֲצוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5903-hityaatzut",
+ "gender": "feminine"
+ }
+ ],
+ "התייעצות־": [
+ {
+ "word_nikkud": "הִתְיַעֲצוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5903-hityaatzut",
+ "gender": "feminine"
+ }
+ ],
+ "התייעצויות־": [
+ {
+ "word_nikkud": "הִתְיַעֲצוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5903-hityaatzut",
+ "gender": "feminine"
+ }
+ ],
+ "מועצה": [
+ {
+ "word_nikkud": "מוֹעָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6522-moatza",
+ "gender": "feminine"
+ }
+ ],
+ "מועצות": [
+ {
+ "word_nikkud": "מוֹעָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6522-moatza",
+ "gender": "feminine"
+ }
+ ],
+ "מועצת־": [
+ {
+ "word_nikkud": "מוֹעָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6522-moatza",
+ "gender": "feminine"
+ }
+ ],
+ "מועצות־": [
+ {
+ "word_nikkud": "מוֹעָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6522-moatza",
+ "gender": "feminine"
+ }
+ ],
+ "יער": [
+ {
+ "word_nikkud": "יַעַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7514-yaar",
+ "gender": "masculine"
+ }
+ ],
+ "יערות": [
+ {
+ "word_nikkud": "יַעַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7514-yaar",
+ "gender": "masculine"
+ }
+ ],
+ "יער־": [
+ {
+ "word_nikkud": "יַעַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7514-yaar",
+ "gender": "masculine"
+ }
+ ],
+ "יערות־": [
+ {
+ "word_nikkud": "יַעַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7514-yaar",
+ "gender": "masculine"
+ }
+ ],
+ "יופי": [
+ {
+ "word_nikkud": "יֹפִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5856-yofi",
+ "gender": "masculine"
+ }
+ ],
+ "יופי־": [
+ {
+ "word_nikkud": "יֹפִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5856-yofi",
+ "gender": "masculine"
+ }
+ ],
+ "יפיוף": [
+ {
+ "word_nikkud": "יַפְיוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6853-yafyuf",
+ "gender": "masculine"
+ }
+ ],
+ "יפיופים": [
+ {
+ "word_nikkud": "יַפְיוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6853-yafyuf",
+ "gender": "masculine"
+ }
+ ],
+ "יפיוף־": [
+ {
+ "word_nikkud": "יַפְיוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6853-yafyuf",
+ "gender": "masculine"
+ }
+ ],
+ "יפיופי־": [
+ {
+ "word_nikkud": "יַפְיוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6853-yafyuf",
+ "gender": "masculine"
+ }
+ ],
+ "מופע": [
+ {
+ "word_nikkud": "מוֹפָע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5734-mofa",
+ "gender": "masculine"
+ }
+ ],
+ "מופעים": [
+ {
+ "word_nikkud": "מוֹפָע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5734-mofa",
+ "gender": "masculine"
+ }
+ ],
+ "מופע־": [
+ {
+ "word_nikkud": "מוֹפָע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5734-mofa",
+ "gender": "masculine"
+ }
+ ],
+ "מופעי־": [
+ {
+ "word_nikkud": "מוֹפָע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5734-mofa",
+ "gender": "masculine"
+ }
+ ],
+ "הופעה": [
+ {
+ "word_nikkud": "הוֹפָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8331-hofaa",
+ "gender": "feminine"
+ }
+ ],
+ "הופעות": [
+ {
+ "word_nikkud": "הוֹפָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8331-hofaa",
+ "gender": "feminine"
+ }
+ ],
+ "הופעת־": [
+ {
+ "word_nikkud": "הוֹפָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8331-hofaa",
+ "gender": "feminine"
+ }
+ ],
+ "הופעות־": [
+ {
+ "word_nikkud": "הוֹפָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8331-hofaa",
+ "gender": "feminine"
+ }
+ ],
+ "תופעה": [
+ {
+ "word_nikkud": "תּוֹפָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6239-tofaa",
+ "gender": "feminine"
+ }
+ ],
+ "תופעות": [
+ {
+ "word_nikkud": "תּוֹפָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6239-tofaa",
+ "gender": "feminine"
+ }
+ ],
+ "תופעת־": [
+ {
+ "word_nikkud": "תּוֹפָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6239-tofaa",
+ "gender": "feminine"
+ }
+ ],
+ "תופעות־": [
+ {
+ "word_nikkud": "תּוֹפָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6239-tofaa",
+ "gender": "feminine"
+ }
+ ],
+ "צאת": [
+ {
+ "word_nikkud": "צֵאת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5746-tzet",
+ "gender": "feminine"
+ }
+ ],
+ "צאת־": [
+ {
+ "word_nikkud": "צֵאת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5746-tzet",
+ "gender": "feminine"
+ }
+ ],
+ "תוצאה": [
+ {
+ "word_nikkud": "תּוֹצָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5611-totzaa",
+ "gender": "feminine"
+ }
+ ],
+ "תוצאות": [
+ {
+ "word_nikkud": "תּוֹצָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5611-totzaa",
+ "gender": "feminine"
+ }
+ ],
+ "תוצאת־": [
+ {
+ "word_nikkud": "תּוֹצָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5611-totzaa",
+ "gender": "feminine"
+ }
+ ],
+ "תוצאות־": [
+ {
+ "word_nikkud": "תּוֹצָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5611-totzaa",
+ "gender": "feminine"
+ }
+ ],
+ "מוצא": [
+ {
+ "word_nikkud": "מוֹצָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2680-motza",
+ "gender": "masculine"
+ }
+ ],
+ "מוצאים": [
+ {
+ "word_nikkud": "מוֹצָא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2680-motza",
+ "gender": "masculine"
+ }
+ ],
+ "מוצא־": [
+ {
+ "word_nikkud": "מוֹצָא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2680-motza",
+ "gender": "masculine"
+ }
+ ],
+ "מוצאי־": [
+ {
+ "word_nikkud": "מוֹצָא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2680-motza",
+ "gender": "masculine"
+ }
+ ],
+ "יציאה": [
+ {
+ "word_nikkud": "יְצִיאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2818-yetzia",
+ "gender": "feminine"
+ }
+ ],
+ "יציאות": [
+ {
+ "word_nikkud": "יְצִיאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2818-yetzia",
+ "gender": "feminine"
+ }
+ ],
+ "יציאת־": [
+ {
+ "word_nikkud": "יְצִיאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2818-yetzia",
+ "gender": "feminine"
+ }
+ ],
+ "יציאות־": [
+ {
+ "word_nikkud": "יְצִיאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2818-yetzia",
+ "gender": "feminine"
+ }
+ ],
+ "הוצאה": [
+ {
+ "word_nikkud": "הוֹצָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7848-hotzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הוצאות": [
+ {
+ "word_nikkud": "הוֹצָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7848-hotzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הוצאת־": [
+ {
+ "word_nikkud": "הוֹצָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7848-hotzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הוצאות־": [
+ {
+ "word_nikkud": "הוֹצָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7848-hotzaa",
+ "gender": "feminine"
+ }
+ ],
+ "ייצוא": [
+ {
+ "word_nikkud": "יִצּוּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9139-yitzu",
+ "gender": "masculine"
+ }
+ ],
+ "ייצואים": [
+ {
+ "word_nikkud": "יִצּוּא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9139-yitzu",
+ "gender": "masculine"
+ }
+ ],
+ "ייצוא־": [
+ {
+ "word_nikkud": "יִצּוּא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9139-yitzu",
+ "gender": "masculine"
+ }
+ ],
+ "ייצואי־": [
+ {
+ "word_nikkud": "יִצּוּא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9139-yitzu",
+ "gender": "masculine"
+ }
+ ],
+ "יציבות": [
+ {
+ "word_nikkud": "יַצִּיבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4511-yatzivut",
+ "gender": "feminine"
+ }
+ ],
+ "יציבות־": [
+ {
+ "word_nikkud": "יַצִּיבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4511-yatzivut",
+ "gender": "feminine"
+ }
+ ],
+ "מצב": [
+ {
+ "word_nikkud": "מַצָּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2638-matzav",
+ "gender": "masculine"
+ }
+ ],
+ "מצבים": [
+ {
+ "word_nikkud": "מַצָּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2638-matzav",
+ "gender": "masculine"
+ }
+ ],
+ "מצב־": [
+ {
+ "word_nikkud": "מַצָּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2638-matzav",
+ "gender": "masculine"
+ }
+ ],
+ "מצבי־": [
+ {
+ "word_nikkud": "מַצָּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2638-matzav",
+ "gender": "masculine"
+ }
+ ],
+ "התייצבות": [
+ {
+ "word_nikkud": "הִתְיַצְּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6725-hityatzvut",
+ "gender": "feminine"
+ }
+ ],
+ "התייצבויות": [
+ {
+ "word_nikkud": "הִתְיַצְּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6725-hityatzvut",
+ "gender": "feminine"
+ }
+ ],
+ "התייצבות־": [
+ {
+ "word_nikkud": "הִתְיַצְּבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6725-hityatzvut",
+ "gender": "feminine"
+ }
+ ],
+ "התייצבויות־": [
+ {
+ "word_nikkud": "הִתְיַצְּבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6725-hityatzvut",
+ "gender": "feminine"
+ }
+ ],
+ "הצגה": [
+ {
+ "word_nikkud": "הַצָּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4964-hatzaga",
+ "gender": "feminine"
+ }
+ ],
+ "הצגות": [
+ {
+ "word_nikkud": "הַצָּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4964-hatzaga",
+ "gender": "feminine"
+ }
+ ],
+ "הצגת־": [
+ {
+ "word_nikkud": "הַצָּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4964-hatzaga",
+ "gender": "feminine"
+ }
+ ],
+ "הצגות־": [
+ {
+ "word_nikkud": "הַצָּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4964-hatzaga",
+ "gender": "feminine"
+ }
+ ],
+ "מצגת": [
+ {
+ "word_nikkud": "מַצֶּגֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4965-matzeget",
+ "gender": "feminine"
+ }
+ ],
+ "מצגות": [
+ {
+ "word_nikkud": "מַצֶּגֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4965-matzeget",
+ "gender": "feminine"
+ }
+ ],
+ "מצגת־": [
+ {
+ "word_nikkud": "מַצֶּגֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4965-matzeget",
+ "gender": "feminine"
+ }
+ ],
+ "מצגות־": [
+ {
+ "word_nikkud": "מַצֶּגֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4965-matzeget",
+ "gender": "feminine"
+ }
+ ],
+ "מיצג": [
+ {
+ "word_nikkud": "מֵיצָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8156-metzag",
+ "gender": "masculine"
+ }
+ ],
+ "מיצגים": [
+ {
+ "word_nikkud": "מֵיצָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8156-metzag",
+ "gender": "masculine"
+ }
+ ],
+ "מיצג־": [
+ {
+ "word_nikkud": "מֵיצָג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8156-metzag",
+ "gender": "masculine"
+ }
+ ],
+ "מיצגי־": [
+ {
+ "word_nikkud": "מֵיצָג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8156-metzag",
+ "gender": "masculine"
+ }
+ ],
+ "ייצוג": [
+ {
+ "word_nikkud": "יִצּוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2967-yitzug",
+ "gender": "masculine"
+ }
+ ],
+ "ייצוגים": [
+ {
+ "word_nikkud": "יִצּוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2967-yitzug",
+ "gender": "masculine"
+ }
+ ],
+ "ייצוג־": [
+ {
+ "word_nikkud": "יִצּוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2967-yitzug",
+ "gender": "masculine"
+ }
+ ],
+ "ייצוגי־": [
+ {
+ "word_nikkud": "יִצּוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2967-yitzug",
+ "gender": "masculine"
+ }
+ ],
+ "תצוגה": [
+ {
+ "word_nikkud": "תְּצוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6536-tetzuga",
+ "gender": "feminine"
+ }
+ ],
+ "תצוגות": [
+ {
+ "word_nikkud": "תְּצוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6536-tetzuga",
+ "gender": "feminine"
+ }
+ ],
+ "תצוגת־": [
+ {
+ "word_nikkud": "תְּצוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6536-tetzuga",
+ "gender": "feminine"
+ }
+ ],
+ "תצוגות־": [
+ {
+ "word_nikkud": "תְּצוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6536-tetzuga",
+ "gender": "feminine"
+ }
+ ],
+ "צג": [
+ {
+ "word_nikkud": "צָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9170-tzag",
+ "gender": "masculine"
+ }
+ ],
+ "צגים": [
+ {
+ "word_nikkud": "צָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9170-tzag",
+ "gender": "masculine"
+ }
+ ],
+ "צג־": [
+ {
+ "word_nikkud": "צָג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9170-tzag",
+ "gender": "masculine"
+ }
+ ],
+ "צגי־": [
+ {
+ "word_nikkud": "צָג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9170-tzag",
+ "gender": "masculine"
+ }
+ ],
+ "יצירת מופת": [
+ {
+ "word_nikkud": "יְצִירַת מוֹפֵת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7943-yetzirat-mofet",
+ "gender": ""
+ }
+ ],
+ "יצירות מופת": [
+ {
+ "word_nikkud": "יְצִירַת מוֹפֵת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7943-yetzirat-mofet",
+ "gender": ""
+ }
+ ],
+ "היצע": [
+ {
+ "word_nikkud": "הֶצֵּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5887-hetzea",
+ "gender": "masculine"
+ }
+ ],
+ "היצעים": [
+ {
+ "word_nikkud": "הֶצֵּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5887-hetzea",
+ "gender": "masculine"
+ }
+ ],
+ "היצע־": [
+ {
+ "word_nikkud": "הֶצֵּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5887-hetzea",
+ "gender": "masculine"
+ }
+ ],
+ "היצעי־": [
+ {
+ "word_nikkud": "הֶצֵּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5887-hetzea",
+ "gender": "masculine"
+ }
+ ],
+ "הצעה": [
+ {
+ "word_nikkud": "הַצָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5541-hatzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הצעות": [
+ {
+ "word_nikkud": "הַצָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5541-hatzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הצעת־": [
+ {
+ "word_nikkud": "הַצָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5541-hatzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הצעות־": [
+ {
+ "word_nikkud": "הַצָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5541-hatzaa",
+ "gender": "feminine"
+ }
+ ],
+ "יצירתיות": [
+ {
+ "word_nikkud": "יְצִירָתִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7095-yetziratiyut",
+ "gender": "feminine"
+ }
+ ],
+ "יצירתיויות": [
+ {
+ "word_nikkud": "יְצִירָתִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7095-yetziratiyut",
+ "gender": "feminine"
+ }
+ ],
+ "יצירתיות־": [
+ {
+ "word_nikkud": "יְצִירָתִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7095-yetziratiyut",
+ "gender": "feminine"
+ }
+ ],
+ "יצירתיויות־": [
+ {
+ "word_nikkud": "יְצִירָתִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7095-yetziratiyut",
+ "gender": "feminine"
+ }
+ ],
+ "יצור": [
+ {
+ "word_nikkud": "יְצוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9061-yetzur",
+ "gender": "masculine"
+ }
+ ],
+ "יצורים": [
+ {
+ "word_nikkud": "יְצוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9061-yetzur",
+ "gender": "masculine"
+ }
+ ],
+ "יצור־": [
+ {
+ "word_nikkud": "יְצוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9061-yetzur",
+ "gender": "masculine"
+ }
+ ],
+ "יצורי־": [
+ {
+ "word_nikkud": "יְצוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9061-yetzur",
+ "gender": "masculine"
+ }
+ ],
+ "היווצרות": [
+ {
+ "word_nikkud": "הִוָּצְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3086-hivatzrut",
+ "gender": "feminine"
+ }
+ ],
+ "היווצרות־": [
+ {
+ "word_nikkud": "הִוָּצְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3086-hivatzrut",
+ "gender": "feminine"
+ }
+ ],
+ "יצר": [
+ {
+ "word_nikkud": "יֵצֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3198-yetzer",
+ "gender": "masculine"
+ }
+ ],
+ "יצרים": [
+ {
+ "word_nikkud": "יֵצֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3198-yetzer",
+ "gender": "masculine"
+ }
+ ],
+ "יצר־": [
+ {
+ "word_nikkud": "יֵצֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3198-yetzer",
+ "gender": "masculine"
+ }
+ ],
+ "יצרי־": [
+ {
+ "word_nikkud": "יֵצֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3198-yetzer",
+ "gender": "masculine"
+ }
+ ],
+ "מוצר": [
+ {
+ "word_nikkud": "מוּצָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3305-mutzar",
+ "gender": "masculine"
+ }
+ ],
+ "מוצרים": [
+ {
+ "word_nikkud": "מוּצָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3305-mutzar",
+ "gender": "masculine"
+ }
+ ],
+ "מוצר־": [
+ {
+ "word_nikkud": "מוּצָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3305-mutzar",
+ "gender": "masculine"
+ }
+ ],
+ "מוצרי־": [
+ {
+ "word_nikkud": "מוּצָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3305-mutzar",
+ "gender": "masculine"
+ }
+ ],
+ "יצרן": [
+ {
+ "word_nikkud": "יַצְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3433-yatzran",
+ "gender": "masculine"
+ }
+ ],
+ "יצרנים": [
+ {
+ "word_nikkud": "יַצְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3433-yatzran",
+ "gender": "masculine"
+ }
+ ],
+ "יצרן־": [
+ {
+ "word_nikkud": "יַצְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3433-yatzran",
+ "gender": "masculine"
+ }
+ ],
+ "יצרני־": [
+ {
+ "word_nikkud": "יַצְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3433-yatzran",
+ "gender": "masculine"
+ }
+ ],
+ "יציר": [
+ {
+ "word_nikkud": "יְצִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4358-yetzir",
+ "gender": "masculine"
+ }
+ ],
+ "יצירים": [
+ {
+ "word_nikkud": "יְצִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4358-yetzir",
+ "gender": "masculine"
+ }
+ ],
+ "יציר־": [
+ {
+ "word_nikkud": "יְצִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4358-yetzir",
+ "gender": "masculine"
+ }
+ ],
+ "יצירי־": [
+ {
+ "word_nikkud": "יְצִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4358-yetzir",
+ "gender": "masculine"
+ }
+ ],
+ "יצירה": [
+ {
+ "word_nikkud": "יְצִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6301-yetzira",
+ "gender": "feminine"
+ }
+ ],
+ "יצירות": [
+ {
+ "word_nikkud": "יְצִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6301-yetzira",
+ "gender": "feminine"
+ }
+ ],
+ "יצירת־": [
+ {
+ "word_nikkud": "יְצִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6301-yetzira",
+ "gender": "feminine"
+ }
+ ],
+ "יצירות־": [
+ {
+ "word_nikkud": "יְצִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6301-yetzira",
+ "gender": "feminine"
+ }
+ ],
+ "תוצרת": [
+ {
+ "word_nikkud": "תּוֹצֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6542-totzeret",
+ "gender": "feminine"
+ }
+ ],
+ "תוצרות": [
+ {
+ "word_nikkud": "תּוֹצֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6542-totzeret",
+ "gender": "feminine"
+ }
+ ],
+ "תוצרת־": [
+ {
+ "word_nikkud": "תּוֹצֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6542-totzeret",
+ "gender": "feminine"
+ }
+ ],
+ "תוצרות־": [
+ {
+ "word_nikkud": "תּוֹצֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6542-totzeret",
+ "gender": "feminine"
+ }
+ ],
+ "מצית": [
+ {
+ "word_nikkud": "מַצִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "1783-matzit",
+ "gender": "masculine"
+ }
+ ],
+ "מציתים": [
+ {
+ "word_nikkud": "מַצִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "1783-matzit",
+ "gender": "masculine"
+ }
+ ],
+ "מצית־": [
+ {
+ "word_nikkud": "מַצִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "1783-matzit",
+ "gender": "masculine"
+ }
+ ],
+ "מציתי־": [
+ {
+ "word_nikkud": "מַצִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "1783-matzit",
+ "gender": "masculine"
+ }
+ ],
+ "הצתה": [
+ {
+ "word_nikkud": "הַצָּתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3702-hatzata",
+ "gender": "feminine"
+ }
+ ],
+ "הצתות": [
+ {
+ "word_nikkud": "הַצָּתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3702-hatzata",
+ "gender": "feminine"
+ }
+ ],
+ "הצתת־": [
+ {
+ "word_nikkud": "הַצָּתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3702-hatzata",
+ "gender": "feminine"
+ }
+ ],
+ "הצתות־": [
+ {
+ "word_nikkud": "הַצָּתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3702-hatzata",
+ "gender": "feminine"
+ }
+ ],
+ "מצת": [
+ {
+ "word_nikkud": "מַצָּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4202-matzat",
+ "gender": "masculine"
+ }
+ ],
+ "מצתים": [
+ {
+ "word_nikkud": "מַצָּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4202-matzat",
+ "gender": "masculine"
+ }
+ ],
+ "מצת־": [
+ {
+ "word_nikkud": "מַצָּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4202-matzat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַצָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7080-matza",
+ "gender": "feminine"
+ }
+ ],
+ "מצתי־": [
+ {
+ "word_nikkud": "מַצָּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4202-matzat",
+ "gender": "masculine"
+ }
+ ],
+ "יקב": [
+ {
+ "word_nikkud": "יֶקֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5149-yekev",
+ "gender": "masculine"
+ }
+ ],
+ "יקבים": [
+ {
+ "word_nikkud": "יֶקֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5149-yekev",
+ "gender": "masculine"
+ }
+ ],
+ "יקב־": [
+ {
+ "word_nikkud": "יֶקֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5149-yekev",
+ "gender": "masculine"
+ }
+ ],
+ "יקבי־": [
+ {
+ "word_nikkud": "יֶקֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5149-yekev",
+ "gender": "masculine"
+ }
+ ],
+ "מוקד": [
+ {
+ "word_nikkud": "מוֹקֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5117-moked",
+ "gender": "masculine"
+ }
+ ],
+ "מוקדים": [
+ {
+ "word_nikkud": "מוֹקֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5117-moked",
+ "gender": "masculine"
+ }
+ ],
+ "מוקד־": [
+ {
+ "word_nikkud": "מוֹקֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5117-moked",
+ "gender": "masculine"
+ }
+ ],
+ "מוקדי־": [
+ {
+ "word_nikkud": "מוֹקֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5117-moked",
+ "gender": "masculine"
+ }
+ ],
+ "יקיר": [
+ {
+ "word_nikkud": "יַקִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6024-yakir",
+ "gender": "masculine"
+ }
+ ],
+ "יקירים": [
+ {
+ "word_nikkud": "יַקִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6024-yakir",
+ "gender": "masculine"
+ }
+ ],
+ "יקיר־": [
+ {
+ "word_nikkud": "יַקִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6024-yakir",
+ "gender": "masculine"
+ }
+ ],
+ "יקירי־": [
+ {
+ "word_nikkud": "יַקִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6024-yakir",
+ "gender": "masculine"
+ }
+ ],
+ "יקירה": [
+ {
+ "word_nikkud": "יַקִּירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6025-yakira",
+ "gender": "feminine"
+ }
+ ],
+ "יקירות": [
+ {
+ "word_nikkud": "יַקִּירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6025-yakira",
+ "gender": "feminine"
+ }
+ ],
+ "יקירת־": [
+ {
+ "word_nikkud": "יַקִּירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6025-yakira",
+ "gender": "feminine"
+ }
+ ],
+ "יקירות־": [
+ {
+ "word_nikkud": "יַקִּירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6025-yakira",
+ "gender": "feminine"
+ }
+ ],
+ "התייקרות": [
+ {
+ "word_nikkud": "הִתְיַקְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6638-hityakrut",
+ "gender": "feminine"
+ }
+ ],
+ "התייקרויות": [
+ {
+ "word_nikkud": "הִתְיַקְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6638-hityakrut",
+ "gender": "feminine"
+ }
+ ],
+ "התייקרות־": [
+ {
+ "word_nikkud": "הִתְיַקְּרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6638-hityakrut",
+ "gender": "feminine"
+ }
+ ],
+ "התייקרויות־": [
+ {
+ "word_nikkud": "הִתְיַקְּרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6638-hityakrut",
+ "gender": "feminine"
+ }
+ ],
+ "מוקש": [
+ {
+ "word_nikkud": "מוֹקֵשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3718-mokesh",
+ "gender": "masculine"
+ }
+ ],
+ "מוקשים": [
+ {
+ "word_nikkud": "מוֹקֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3718-mokesh",
+ "gender": "masculine"
+ }
+ ],
+ "מוקש־": [
+ {
+ "word_nikkud": "מוֹקֵשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3718-mokesh",
+ "gender": "masculine"
+ }
+ ],
+ "מוקשי־": [
+ {
+ "word_nikkud": "מוֹקֵשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3718-mokesh",
+ "gender": "masculine"
+ }
+ ],
+ "הוראה": [
+ {
+ "word_nikkud": "הוֹרָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3924-horaa",
+ "gender": "feminine"
+ }
+ ],
+ "הוראות": [
+ {
+ "word_nikkud": "הוֹרָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3924-horaa",
+ "gender": "feminine"
+ }
+ ],
+ "הוראת־": [
+ {
+ "word_nikkud": "הוֹרָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3924-horaa",
+ "gender": "feminine"
+ }
+ ],
+ "הוראות־": [
+ {
+ "word_nikkud": "הוֹרָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3924-horaa",
+ "gender": "feminine"
+ }
+ ],
+ "ירידה": [
+ {
+ "word_nikkud": "יְרִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2819-yerida",
+ "gender": "feminine"
+ }
+ ],
+ "ירידות": [
+ {
+ "word_nikkud": "יְרִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2819-yerida",
+ "gender": "feminine"
+ }
+ ],
+ "ירידת־": [
+ {
+ "word_nikkud": "יְרִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2819-yerida",
+ "gender": "feminine"
+ }
+ ],
+ "ירידות־": [
+ {
+ "word_nikkud": "יְרִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2819-yerida",
+ "gender": "feminine"
+ }
+ ],
+ "יריד": [
+ {
+ "word_nikkud": "יָרִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6920-yarid",
+ "gender": "masculine"
+ }
+ ],
+ "ירידים": [
+ {
+ "word_nikkud": "יָרִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6920-yarid",
+ "gender": "masculine"
+ }
+ ],
+ "יריד־": [
+ {
+ "word_nikkud": "יָרִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6920-yarid",
+ "gender": "masculine"
+ }
+ ],
+ "ירידי־": [
+ {
+ "word_nikkud": "יָרִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6920-yarid",
+ "gender": "masculine"
+ }
+ ],
+ "ירח": [
+ {
+ "word_nikkud": "יָרֵחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4055-yareach",
+ "gender": "masculine"
+ }
+ ],
+ "ירחים": [
+ {
+ "word_nikkud": "יָרֵחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4055-yareach",
+ "gender": "masculine"
+ }
+ ],
+ "ירח־": [
+ {
+ "word_nikkud": "יָרֵחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4055-yareach",
+ "gender": "masculine"
+ }
+ ],
+ "ירחי־": [
+ {
+ "word_nikkud": "יָרֵחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4055-yareach",
+ "gender": "masculine"
+ }
+ ],
+ "ירי": [
+ {
+ "word_nikkud": "יֶרִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4908-yeri",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "יֶרִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4908-yeri",
+ "gender": "masculine"
+ }
+ ],
+ "יריים": [
+ {
+ "word_nikkud": "יֶרִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4908-yeri",
+ "gender": "masculine"
+ }
+ ],
+ "ירי־": [
+ {
+ "word_nikkud": "יֶרִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4908-yeri",
+ "gender": "masculine"
+ }
+ ],
+ "יריי־": [
+ {
+ "word_nikkud": "יֶרִי",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4908-yeri",
+ "gender": "masculine"
+ }
+ ],
+ "תורה": [
+ {
+ "word_nikkud": "תּוֹרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4994-tora",
+ "gender": "feminine"
+ }
+ ],
+ "תורות": [
+ {
+ "word_nikkud": "תּוֹרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4994-tora",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6163-tor",
+ "gender": "masculine"
+ }
+ ],
+ "תורת־": [
+ {
+ "word_nikkud": "תּוֹרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4994-tora",
+ "gender": "feminine"
+ }
+ ],
+ "תורות־": [
+ {
+ "word_nikkud": "תּוֹרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4994-tora",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תּוֹר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6163-tor",
+ "gender": "masculine"
+ }
+ ],
+ "מורה": [
+ {
+ "word_nikkud": "מוֹרֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6572-more",
+ "gender": "masculine"
+ }
+ ],
+ "מורים": [
+ {
+ "word_nikkud": "מוֹרֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6572-more",
+ "gender": "masculine"
+ }
+ ],
+ "מורה־": [
+ {
+ "word_nikkud": "מוֹרֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6572-more",
+ "gender": "masculine"
+ }
+ ],
+ "מורי־": [
+ {
+ "word_nikkud": "מוֹרֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6572-more",
+ "gender": "masculine"
+ }
+ ],
+ "ירכה": [
+ {
+ "word_nikkud": "יַרְכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8271-yarka",
+ "gender": "feminine"
+ }
+ ],
+ "ירכת־": [
+ {
+ "word_nikkud": "יַרְכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8271-yarka",
+ "gender": "feminine"
+ }
+ ],
+ "ירך": [
+ {
+ "word_nikkud": "יָרֵךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6900-yarech",
+ "gender": "feminine"
+ }
+ ],
+ "ירכיים": [
+ {
+ "word_nikkud": "יָרֵךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6900-yarech",
+ "gender": "feminine"
+ }
+ ],
+ "ירך־": [
+ {
+ "word_nikkud": "יָרֵךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6900-yarech",
+ "gender": "feminine"
+ }
+ ],
+ "ירכי־": [
+ {
+ "word_nikkud": "יָרֵךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6900-yarech",
+ "gender": "feminine"
+ }
+ ],
+ "יריעה": [
+ {
+ "word_nikkud": "יְרִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7802-yeria",
+ "gender": "feminine"
+ }
+ ],
+ "יריעות": [
+ {
+ "word_nikkud": "יְרִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7802-yeria",
+ "gender": "feminine"
+ }
+ ],
+ "יריעת־": [
+ {
+ "word_nikkud": "יְרִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7802-yeria",
+ "gender": "feminine"
+ }
+ ],
+ "יריעות־": [
+ {
+ "word_nikkud": "יְרִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7802-yeria",
+ "gender": "feminine"
+ }
+ ],
+ "ירקות": [
+ {
+ "word_nikkud": "יַרְקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5244-yarkut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יָרָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5242-yarak",
+ "gender": "masculine"
+ }
+ ],
+ "ירקות־": [
+ {
+ "word_nikkud": "יַרְקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5244-yarkut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "יָרָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5242-yarak",
+ "gender": "masculine"
+ }
+ ],
+ "ירק": [
+ {
+ "word_nikkud": "יָרָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5242-yarak",
+ "gender": "masculine"
+ }
+ ],
+ "ירק־": [
+ {
+ "word_nikkud": "יָרָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5242-yarak",
+ "gender": "masculine"
+ }
+ ],
+ "ירקן": [
+ {
+ "word_nikkud": "יַרְקָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3435-yarkan",
+ "gender": "masculine"
+ }
+ ],
+ "ירקנים": [
+ {
+ "word_nikkud": "יַרְקָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3435-yarkan",
+ "gender": "masculine"
+ }
+ ],
+ "ירקן־": [
+ {
+ "word_nikkud": "יַרְקָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3435-yarkan",
+ "gender": "masculine"
+ }
+ ],
+ "ירקני־": [
+ {
+ "word_nikkud": "יַרְקָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3435-yarkan",
+ "gender": "masculine"
+ }
+ ],
+ "ירושה": [
+ {
+ "word_nikkud": "יְרֻשָּׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2863-yerusha",
+ "gender": "feminine"
+ }
+ ],
+ "ירושות": [
+ {
+ "word_nikkud": "יְרֻשָּׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2863-yerusha",
+ "gender": "feminine"
+ }
+ ],
+ "ירושת־": [
+ {
+ "word_nikkud": "יְרֻשָּׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2863-yerusha",
+ "gender": "feminine"
+ }
+ ],
+ "ירושות־": [
+ {
+ "word_nikkud": "יְרֻשָּׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2863-yerusha",
+ "gender": "feminine"
+ }
+ ],
+ "תורשה": [
+ {
+ "word_nikkud": "תּוֹרָשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8274-torasha",
+ "gender": "feminine"
+ }
+ ],
+ "תורשת־": [
+ {
+ "word_nikkud": "תּוֹרָשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8274-torasha",
+ "gender": "feminine"
+ }
+ ],
+ "תושב": [
+ {
+ "word_nikkud": "תּוֹשָׁב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5646-toshav",
+ "gender": "masculine"
+ }
+ ],
+ "תושבים": [
+ {
+ "word_nikkud": "תּוֹשָׁב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5646-toshav",
+ "gender": "masculine"
+ }
+ ],
+ "תושב־": [
+ {
+ "word_nikkud": "תּוֹשָׁב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5646-toshav",
+ "gender": "masculine"
+ }
+ ],
+ "תושבי־": [
+ {
+ "word_nikkud": "תּוֹשָׁב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5646-toshav",
+ "gender": "masculine"
+ }
+ ],
+ "ישיבה": [
+ {
+ "word_nikkud": "יְשִׁיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2820-yeshiva",
+ "gender": "feminine"
+ }
+ ],
+ "ישיבות": [
+ {
+ "word_nikkud": "יְשִׁיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2820-yeshiva",
+ "gender": "feminine"
+ }
+ ],
+ "ישיבת־": [
+ {
+ "word_nikkud": "יְשִׁיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2820-yeshiva",
+ "gender": "feminine"
+ }
+ ],
+ "ישיבות־": [
+ {
+ "word_nikkud": "יְשִׁיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2820-yeshiva",
+ "gender": "feminine"
+ }
+ ],
+ "התיישבות": [
+ {
+ "word_nikkud": "הִתְיַשְּׁבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8534-hityashvut",
+ "gender": "feminine"
+ }
+ ],
+ "התיישבויות": [
+ {
+ "word_nikkud": "הִתְיַשְּׁבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8534-hityashvut",
+ "gender": "feminine"
+ }
+ ],
+ "התיישבות־": [
+ {
+ "word_nikkud": "הִתְיַשְּׁבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8534-hityashvut",
+ "gender": "feminine"
+ }
+ ],
+ "התיישבויות־": [
+ {
+ "word_nikkud": "הִתְיַשְּׁבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8534-hityashvut",
+ "gender": "feminine"
+ }
+ ],
+ "יישוב": [
+ {
+ "word_nikkud": "יִשּׁוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2642-yishuv",
+ "gender": "masculine"
+ }
+ ],
+ "יישובים": [
+ {
+ "word_nikkud": "יִשּׁוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2642-yishuv",
+ "gender": "masculine"
+ }
+ ],
+ "יישוב־": [
+ {
+ "word_nikkud": "יִשּׁוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2642-yishuv",
+ "gender": "masculine"
+ }
+ ],
+ "יישובי־": [
+ {
+ "word_nikkud": "יִשּׁוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2642-yishuv",
+ "gender": "masculine"
+ }
+ ],
+ "יושב": [
+ {
+ "word_nikkud": "יוֹשֵׁב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5985-yoshev",
+ "gender": "masculine"
+ }
+ ],
+ "יושבים": [
+ {
+ "word_nikkud": "יוֹשֵׁב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5985-yoshev",
+ "gender": "masculine"
+ }
+ ],
+ "יושב־": [
+ {
+ "word_nikkud": "יוֹשֵׁב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5985-yoshev",
+ "gender": "masculine"
+ }
+ ],
+ "יושבי־": [
+ {
+ "word_nikkud": "יוֹשֵׁב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5985-yoshev",
+ "gender": "masculine"
+ }
+ ],
+ "ישות": [
+ {
+ "word_nikkud": "יֵשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6395-yeshut",
+ "gender": "feminine"
+ }
+ ],
+ "ישויות": [
+ {
+ "word_nikkud": "יֵשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6395-yeshut",
+ "gender": "feminine"
+ }
+ ],
+ "ישות־": [
+ {
+ "word_nikkud": "יֵשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6395-yeshut",
+ "gender": "feminine"
+ }
+ ],
+ "ישויות־": [
+ {
+ "word_nikkud": "יֵשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6395-yeshut",
+ "gender": "feminine"
+ }
+ ],
+ "יישום": [
+ {
+ "word_nikkud": "יִשּׂוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7285-yisum",
+ "gender": "masculine"
+ }
+ ],
+ "יישומים": [
+ {
+ "word_nikkud": "יִשּׂוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7285-yisum",
+ "gender": "masculine"
+ }
+ ],
+ "יישום־": [
+ {
+ "word_nikkud": "יִשּׂוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7285-yisum",
+ "gender": "masculine"
+ }
+ ],
+ "יישומי־": [
+ {
+ "word_nikkud": "יִשּׂוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7285-yisum",
+ "gender": "masculine"
+ }
+ ],
+ "יישומון": [
+ {
+ "word_nikkud": "יִשּׂוּמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7286-yisumon",
+ "gender": "masculine"
+ }
+ ],
+ "יישומונים": [
+ {
+ "word_nikkud": "יִשּׂוּמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7286-yisumon",
+ "gender": "masculine"
+ }
+ ],
+ "יישומון־": [
+ {
+ "word_nikkud": "יִשּׂוּמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7286-yisumon",
+ "gender": "masculine"
+ }
+ ],
+ "יישומוני־": [
+ {
+ "word_nikkud": "יִשּׂוּמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7286-yisumon",
+ "gender": "masculine"
+ }
+ ],
+ "שנה": [
+ {
+ "word_nikkud": "שָׁנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4065-shana",
+ "gender": "feminine"
+ }
+ ],
+ "שנים": [
+ {
+ "word_nikkud": "שָׁנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4065-shana",
+ "gender": "feminine"
+ }
+ ],
+ "שנת־": [
+ {
+ "word_nikkud": "שָׁנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4065-shana",
+ "gender": "feminine"
+ }
+ ],
+ "שנות־": [
+ {
+ "word_nikkud": "שָׁנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4065-shana",
+ "gender": "feminine"
+ }
+ ],
+ "מושיע": [
+ {
+ "word_nikkud": "מוֹשִׁיעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8940-moshia",
+ "gender": "masculine"
+ }
+ ],
+ "מושיעים": [
+ {
+ "word_nikkud": "מוֹשִׁיעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8940-moshia",
+ "gender": "masculine"
+ }
+ ],
+ "מושיע־": [
+ {
+ "word_nikkud": "מוֹשִׁיעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8940-moshia",
+ "gender": "masculine"
+ }
+ ],
+ "מושיעי־": [
+ {
+ "word_nikkud": "מוֹשִׁיעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8940-moshia",
+ "gender": "masculine"
+ }
+ ],
+ "ישועה": [
+ {
+ "word_nikkud": "יְשׁוּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8241-yeshua",
+ "gender": "feminine"
+ }
+ ],
+ "ישועות": [
+ {
+ "word_nikkud": "יְשׁוּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8241-yeshua",
+ "gender": "feminine"
+ }
+ ],
+ "ישועת־": [
+ {
+ "word_nikkud": "יְשׁוּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8241-yeshua",
+ "gender": "feminine"
+ }
+ ],
+ "ישועות־": [
+ {
+ "word_nikkud": "יְשׁוּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8241-yeshua",
+ "gender": "feminine"
+ }
+ ],
+ "ישע": [
+ {
+ "word_nikkud": "יֶשַׁע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6871-yesha",
+ "gender": "masculine"
+ }
+ ],
+ "ישעים": [
+ {
+ "word_nikkud": "יֶשַׁע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6871-yesha",
+ "gender": "masculine"
+ }
+ ],
+ "ישע־": [
+ {
+ "word_nikkud": "יֶשַׁע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6871-yesha",
+ "gender": "masculine"
+ }
+ ],
+ "ישעי־": [
+ {
+ "word_nikkud": "יֶשַׁע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6871-yesha",
+ "gender": "masculine"
+ }
+ ],
+ "ישפה": [
+ {
+ "word_nikkud": "יָשְׁפֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6754-yashfe",
+ "gender": "masculine"
+ }
+ ],
+ "ישפים": [
+ {
+ "word_nikkud": "יָשְׁפֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6754-yashfe",
+ "gender": "masculine"
+ }
+ ],
+ "ישפה־": [
+ {
+ "word_nikkud": "יָשְׁפֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6754-yashfe",
+ "gender": "masculine"
+ }
+ ],
+ "ישפי־": [
+ {
+ "word_nikkud": "יָשְׁפֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6754-yashfe",
+ "gender": "masculine"
+ }
+ ],
+ "יישור": [
+ {
+ "word_nikkud": "יִשּׁוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2969-yishur",
+ "gender": "masculine"
+ }
+ ],
+ "יישור־": [
+ {
+ "word_nikkud": "יִשּׁוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2969-yishur",
+ "gender": "masculine"
+ }
+ ],
+ "ישורת": [
+ {
+ "word_nikkud": "יְשֹׁרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8761-yeshoret",
+ "gender": "feminine"
+ }
+ ],
+ "ישורות": [
+ {
+ "word_nikkud": "יְשֹׁרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8761-yeshoret",
+ "gender": "feminine"
+ }
+ ],
+ "ישורת־": [
+ {
+ "word_nikkud": "יְשֹׁרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8761-yeshoret",
+ "gender": "feminine"
+ }
+ ],
+ "ישורות־": [
+ {
+ "word_nikkud": "יְשֹׁרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8761-yeshoret",
+ "gender": "feminine"
+ }
+ ],
+ "יושר": [
+ {
+ "word_nikkud": "יֹשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9298-yosher",
+ "gender": "masculine"
+ }
+ ],
+ "יושר־": [
+ {
+ "word_nikkud": "יֹשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9298-yosher",
+ "gender": "masculine"
+ }
+ ],
+ "מישור": [
+ {
+ "word_nikkud": "מִישׁוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6744-mishor",
+ "gender": "masculine"
+ }
+ ],
+ "מישורים": [
+ {
+ "word_nikkud": "מִישׁוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6744-mishor",
+ "gender": "masculine"
+ }
+ ],
+ "מישור־": [
+ {
+ "word_nikkud": "מִישׁוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6744-mishor",
+ "gender": "masculine"
+ }
+ ],
+ "מישורי־": [
+ {
+ "word_nikkud": "מִישׁוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6744-mishor",
+ "gender": "masculine"
+ }
+ ],
+ "יתד": [
+ {
+ "word_nikkud": "יָתֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6626-yated",
+ "gender": "feminine"
+ }
+ ],
+ "יתדות": [
+ {
+ "word_nikkud": "יָתֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6626-yated",
+ "gender": "feminine"
+ }
+ ],
+ "יתד־": [
+ {
+ "word_nikkud": "יָתֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6626-yated",
+ "gender": "feminine"
+ }
+ ],
+ "יתדות־": [
+ {
+ "word_nikkud": "יָתֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6626-yated",
+ "gender": "feminine"
+ }
+ ],
+ "יתוש": [
+ {
+ "word_nikkud": "יַתּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6660-yatush",
+ "gender": "masculine"
+ }
+ ],
+ "יתושים": [
+ {
+ "word_nikkud": "יַתּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6660-yatush",
+ "gender": "masculine"
+ }
+ ],
+ "יתוש־": [
+ {
+ "word_nikkud": "יַתּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6660-yatush",
+ "gender": "masculine"
+ }
+ ],
+ "יתושי־": [
+ {
+ "word_nikkud": "יַתּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6660-yatush",
+ "gender": "masculine"
+ }
+ ],
+ "יתום": [
+ {
+ "word_nikkud": "יָתוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8667-yatom",
+ "gender": "masculine"
+ }
+ ],
+ "יתומים": [
+ {
+ "word_nikkud": "יָתוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8667-yatom",
+ "gender": "masculine"
+ }
+ ],
+ "יתום־": [
+ {
+ "word_nikkud": "יָתוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8667-yatom",
+ "gender": "masculine"
+ }
+ ],
+ "יתומי־": [
+ {
+ "word_nikkud": "יָתוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8667-yatom",
+ "gender": "masculine"
+ }
+ ],
+ "יתמות": [
+ {
+ "word_nikkud": "יַתְמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9111-yatmut",
+ "gender": "feminine"
+ }
+ ],
+ "יתמות־": [
+ {
+ "word_nikkud": "יַתְמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9111-yatmut",
+ "gender": "feminine"
+ }
+ ],
+ "יתר": [
+ {
+ "word_nikkud": "יֶתֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5653-yeter",
+ "gender": "masculine"
+ }
+ ],
+ "יתרים": [
+ {
+ "word_nikkud": "יֶתֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5653-yeter",
+ "gender": "masculine"
+ }
+ ],
+ "יתר־": [
+ {
+ "word_nikkud": "יֶתֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5653-yeter",
+ "gender": "masculine"
+ }
+ ],
+ "יתרי־": [
+ {
+ "word_nikkud": "יֶתֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5653-yeter",
+ "gender": "masculine"
+ }
+ ],
+ "מיתר": [
+ {
+ "word_nikkud": "מֵיתָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5655-metar",
+ "gender": "masculine"
+ }
+ ],
+ "מיתרים": [
+ {
+ "word_nikkud": "מֵיתָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5655-metar",
+ "gender": "masculine"
+ }
+ ],
+ "מיתר־": [
+ {
+ "word_nikkud": "מֵיתָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5655-metar",
+ "gender": "masculine"
+ }
+ ],
+ "מיתרי־": [
+ {
+ "word_nikkud": "מֵיתָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5655-metar",
+ "gender": "masculine"
+ }
+ ],
+ "יתרון": [
+ {
+ "word_nikkud": "יִתְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3586-yitron",
+ "gender": "masculine"
+ }
+ ],
+ "יתרונות": [
+ {
+ "word_nikkud": "יִתְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3586-yitron",
+ "gender": "masculine"
+ }
+ ],
+ "יתרון־": [
+ {
+ "word_nikkud": "יִתְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3586-yitron",
+ "gender": "masculine"
+ }
+ ],
+ "יתרונות־": [
+ {
+ "word_nikkud": "יִתְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3586-yitron",
+ "gender": "masculine"
+ }
+ ],
+ "יתרה": [
+ {
+ "word_nikkud": "יִתְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9192-yitra",
+ "gender": "feminine"
+ }
+ ],
+ "יתרות": [
+ {
+ "word_nikkud": "יִתְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9192-yitra",
+ "gender": "feminine"
+ }
+ ],
+ "יתרת־": [
+ {
+ "word_nikkud": "יִתְרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9192-yitra",
+ "gender": "feminine"
+ }
+ ],
+ "יתרות־": [
+ {
+ "word_nikkud": "יִתְרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9192-yitra",
+ "gender": "feminine"
+ }
+ ],
+ "כאב": [
+ {
+ "word_nikkud": "כְּאֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3098-keev",
+ "gender": "masculine"
+ }
+ ],
+ "כאבים": [
+ {
+ "word_nikkud": "כְּאֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3098-keev",
+ "gender": "masculine"
+ }
+ ],
+ "כאב־": [
+ {
+ "word_nikkud": "כְּאֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3098-keev",
+ "gender": "masculine"
+ }
+ ],
+ "כאבי־": [
+ {
+ "word_nikkud": "כְּאֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3098-keev",
+ "gender": "masculine"
+ }
+ ],
+ "מכאוב": [
+ {
+ "word_nikkud": "מַכְאוֹב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8395-machov",
+ "gender": "masculine"
+ }
+ ],
+ "מכאובים": [
+ {
+ "word_nikkud": "מַכְאוֹב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8395-machov",
+ "gender": "masculine"
+ }
+ ],
+ "מכאוב־": [
+ {
+ "word_nikkud": "מַכְאוֹב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8395-machov",
+ "gender": "masculine"
+ }
+ ],
+ "מכאובי־": [
+ {
+ "word_nikkud": "מַכְאוֹב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8395-machov",
+ "gender": "masculine"
+ }
+ ],
+ "כיבוד": [
+ {
+ "word_nikkud": "כִּבּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4395-kibud",
+ "gender": "masculine"
+ }
+ ],
+ "כיבודים": [
+ {
+ "word_nikkud": "כִּבּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4395-kibud",
+ "gender": "masculine"
+ }
+ ],
+ "כיבוד־": [
+ {
+ "word_nikkud": "כִּבּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4395-kibud",
+ "gender": "masculine"
+ }
+ ],
+ "כיבודי־": [
+ {
+ "word_nikkud": "כִּבּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4395-kibud",
+ "gender": "masculine"
+ }
+ ],
+ "כבידה": [
+ {
+ "word_nikkud": "כְּבִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4898-kvida",
+ "gender": "feminine"
+ }
+ ],
+ "כבידת־": [
+ {
+ "word_nikkud": "כְּבִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4898-kvida",
+ "gender": "feminine"
+ }
+ ],
+ "כבד": [
+ {
+ "word_nikkud": "כָּבֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8847-kaved",
+ "gender": "masculine"
+ }
+ ],
+ "כבדים": [
+ {
+ "word_nikkud": "כָּבֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8847-kaved",
+ "gender": "masculine"
+ }
+ ],
+ "כבד־": [
+ {
+ "word_nikkud": "כָּבֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8847-kaved",
+ "gender": "masculine"
+ }
+ ],
+ "כבדי־": [
+ {
+ "word_nikkud": "כָּבֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8847-kaved",
+ "gender": "masculine"
+ }
+ ],
+ "כבאי": [
+ {
+ "word_nikkud": "כַּבַּאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2669-kabay",
+ "gender": "masculine"
+ }
+ ],
+ "כבאים": [
+ {
+ "word_nikkud": "כַּבַּאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2669-kabay",
+ "gender": "masculine"
+ }
+ ],
+ "כבאי־": [
+ {
+ "word_nikkud": "כַּבַּאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2669-kabay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כַּבַּאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2669-kabay",
+ "gender": "masculine"
+ }
+ ],
+ "כיבוי": [
+ {
+ "word_nikkud": "כִּבּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2970-kibuy",
+ "gender": "masculine"
+ }
+ ],
+ "כיבוי־": [
+ {
+ "word_nikkud": "כִּבּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2970-kibuy",
+ "gender": "masculine"
+ }
+ ],
+ "כבל": [
+ {
+ "word_nikkud": "כֶּבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7365-kevel",
+ "gender": "masculine"
+ }
+ ],
+ "כבלים": [
+ {
+ "word_nikkud": "כֶּבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7365-kevel",
+ "gender": "masculine"
+ }
+ ],
+ "כבל־": [
+ {
+ "word_nikkud": "כֶּבֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7365-kevel",
+ "gender": "masculine"
+ }
+ ],
+ "כבלי־": [
+ {
+ "word_nikkud": "כֶּבֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7365-kevel",
+ "gender": "masculine"
+ }
+ ],
+ "מכבסה": [
+ {
+ "word_nikkud": "מִכְבָּסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3566-michbasa",
+ "gender": "feminine"
+ }
+ ],
+ "מכבסות": [
+ {
+ "word_nikkud": "מִכְבָּסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3566-michbasa",
+ "gender": "feminine"
+ }
+ ],
+ "מכבסת־": [
+ {
+ "word_nikkud": "מִכְבָּסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3566-michbasa",
+ "gender": "feminine"
+ }
+ ],
+ "מכבסות־": [
+ {
+ "word_nikkud": "מִכְבָּסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3566-michbasa",
+ "gender": "feminine"
+ }
+ ],
+ "כביסה": [
+ {
+ "word_nikkud": "כְּבִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3979-kvisa",
+ "gender": "feminine"
+ }
+ ],
+ "כביסות": [
+ {
+ "word_nikkud": "כְּבִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3979-kvisa",
+ "gender": "feminine"
+ }
+ ],
+ "כביסת־": [
+ {
+ "word_nikkud": "כְּבִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3979-kvisa",
+ "gender": "feminine"
+ }
+ ],
+ "כביסות־": [
+ {
+ "word_nikkud": "כְּבִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3979-kvisa",
+ "gender": "feminine"
+ }
+ ],
+ "כבש": [
+ {
+ "word_nikkud": "כֶּבֶשׂ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5192-keves",
+ "gender": "masculine"
+ }
+ ],
+ "כבשים": [
+ {
+ "word_nikkud": "כֶּבֶשׂ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5192-keves",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כִּבְשָׂה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5193-kivsa",
+ "gender": "feminine"
+ }
+ ],
+ "כבש־": [
+ {
+ "word_nikkud": "כֶּבֶשׂ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5192-keves",
+ "gender": "masculine"
+ }
+ ],
+ "כבשי־": [
+ {
+ "word_nikkud": "כֶּבֶשׂ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5192-keves",
+ "gender": "masculine"
+ }
+ ],
+ "כבישה": [
+ {
+ "word_nikkud": "כְּבִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5784-kvisha",
+ "gender": "feminine"
+ }
+ ],
+ "כבישות": [
+ {
+ "word_nikkud": "כְּבִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5784-kvisha",
+ "gender": "feminine"
+ }
+ ],
+ "כבישת־": [
+ {
+ "word_nikkud": "כְּבִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5784-kvisha",
+ "gender": "feminine"
+ }
+ ],
+ "כבישות־": [
+ {
+ "word_nikkud": "כְּבִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5784-kvisha",
+ "gender": "feminine"
+ }
+ ],
+ "כביש": [
+ {
+ "word_nikkud": "כְּבִישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3534-kvish",
+ "gender": "masculine"
+ }
+ ],
+ "כבישים": [
+ {
+ "word_nikkud": "כְּבִישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3534-kvish",
+ "gender": "masculine"
+ }
+ ],
+ "כביש־": [
+ {
+ "word_nikkud": "כְּבִישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3534-kvish",
+ "gender": "masculine"
+ }
+ ],
+ "כבישי־": [
+ {
+ "word_nikkud": "כְּבִישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3534-kvish",
+ "gender": "masculine"
+ }
+ ],
+ "כבשה": [
+ {
+ "word_nikkud": "כִּבְשָׂה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5193-kivsa",
+ "gender": "feminine"
+ }
+ ],
+ "כבשת־": [
+ {
+ "word_nikkud": "כִּבְשָׂה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5193-kivsa",
+ "gender": "feminine"
+ }
+ ],
+ "כבשות־": [
+ {
+ "word_nikkud": "כִּבְשָׂה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5193-kivsa",
+ "gender": "feminine"
+ }
+ ],
+ "כיבוש": [
+ {
+ "word_nikkud": "כִּבּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7494-kibush",
+ "gender": "masculine"
+ }
+ ],
+ "כיבושים": [
+ {
+ "word_nikkud": "כִּבּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7494-kibush",
+ "gender": "masculine"
+ }
+ ],
+ "כיבוש־": [
+ {
+ "word_nikkud": "כִּבּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7494-kibush",
+ "gender": "masculine"
+ }
+ ],
+ "כיבושי־": [
+ {
+ "word_nikkud": "כִּבּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7494-kibush",
+ "gender": "masculine"
+ }
+ ],
+ "כד": [
+ {
+ "word_nikkud": "כַּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7880-kad",
+ "gender": "masculine"
+ }
+ ],
+ "כדים": [
+ {
+ "word_nikkud": "כַּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7880-kad",
+ "gender": "masculine"
+ }
+ ],
+ "כד־": [
+ {
+ "word_nikkud": "כַּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7880-kad",
+ "gender": "masculine"
+ }
+ ],
+ "כדי־": [
+ {
+ "word_nikkud": "כַּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7880-kad",
+ "gender": "masculine"
+ }
+ ],
+ "כדור": [
+ {
+ "word_nikkud": "כַּדּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3166-kadur",
+ "gender": "masculine"
+ }
+ ],
+ "כדורים": [
+ {
+ "word_nikkud": "כַּדּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3166-kadur",
+ "gender": "masculine"
+ }
+ ],
+ "כדור־": [
+ {
+ "word_nikkud": "כַּדּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3166-kadur",
+ "gender": "masculine"
+ }
+ ],
+ "כדורי־": [
+ {
+ "word_nikkud": "כַּדּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3166-kadur",
+ "gender": "masculine"
+ }
+ ],
+ "כדורגל": [
+ {
+ "word_nikkud": "כַּדּוּרֶגֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3167-kaduregel",
+ "gender": "masculine"
+ }
+ ],
+ "כדורייד": [
+ {
+ "word_nikkud": "כַּדּוּרְיָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8087-kaduryad",
+ "gender": ""
+ }
+ ],
+ "כדורעף": [
+ {
+ "word_nikkud": "כַּדּוּרְעָף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8376-kaduraf",
+ "gender": "masculine"
+ }
+ ],
+ "כדורעף־": [
+ {
+ "word_nikkud": "כַּדּוּרְעָף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8376-kaduraf",
+ "gender": "masculine"
+ }
+ ],
+ "כוהל": [
+ {
+ "word_nikkud": "כֹּהַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8904-kohal",
+ "gender": "masculine"
+ }
+ ],
+ "כהלים": [
+ {
+ "word_nikkud": "כֹּהַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8904-kohal",
+ "gender": "masculine"
+ }
+ ],
+ "כוהל־": [
+ {
+ "word_nikkud": "כֹּהַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8904-kohal",
+ "gender": "masculine"
+ }
+ ],
+ "כהלי־": [
+ {
+ "word_nikkud": "כֹּהַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8904-kohal",
+ "gender": "masculine"
+ }
+ ],
+ "כהונה": [
+ {
+ "word_nikkud": "כְּהֻנָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8128-kehuna",
+ "gender": "feminine"
+ }
+ ],
+ "כהונות": [
+ {
+ "word_nikkud": "כְּהֻנָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8128-kehuna",
+ "gender": "feminine"
+ }
+ ],
+ "כהונת־": [
+ {
+ "word_nikkud": "כְּהֻנָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8128-kehuna",
+ "gender": "feminine"
+ }
+ ],
+ "כהונות־": [
+ {
+ "word_nikkud": "כְּהֻנָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8128-kehuna",
+ "gender": "feminine"
+ }
+ ],
+ "כובע": [
+ {
+ "word_nikkud": "כּוֹבַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4097-kova",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "כּוֹבַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4097-kova",
+ "gender": ""
+ }
+ ],
+ "כובעים": [
+ {
+ "word_nikkud": "כּוֹבַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4097-kova",
+ "gender": ""
+ }
+ ],
+ "כובע־": [
+ {
+ "word_nikkud": "כּוֹבַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4097-kova",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "כּוֹבַע",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4097-kova",
+ "gender": ""
+ }
+ ],
+ "כובעי־": [
+ {
+ "word_nikkud": "כּוֹבַע",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4097-kova",
+ "gender": ""
+ }
+ ],
+ "כוח": [
+ {
+ "word_nikkud": "כֹּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2691-koach",
+ "gender": "masculine"
+ }
+ ],
+ "כוחות": [
+ {
+ "word_nikkud": "כֹּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2691-koach",
+ "gender": "masculine"
+ }
+ ],
+ "כוח־": [
+ {
+ "word_nikkud": "כֹּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2691-koach",
+ "gender": "masculine"
+ }
+ ],
+ "כוחות־": [
+ {
+ "word_nikkud": "כֹּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2691-koach",
+ "gender": "masculine"
+ }
+ ],
+ "כווייה": [
+ {
+ "word_nikkud": "כְּוִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7387-kviya",
+ "gender": "feminine"
+ }
+ ],
+ "כוויות": [
+ {
+ "word_nikkud": "כְּוִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7387-kviya",
+ "gender": "feminine"
+ }
+ ],
+ "כוויית־": [
+ {
+ "word_nikkud": "כְּוִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7387-kviya",
+ "gender": "feminine"
+ }
+ ],
+ "כוויות־": [
+ {
+ "word_nikkud": "כְּוִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7387-kviya",
+ "gender": "feminine"
+ }
+ ],
+ "כוכב": [
+ {
+ "word_nikkud": "כּוֹכָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4054-kochav",
+ "gender": "masculine"
+ }
+ ],
+ "כוכבים": [
+ {
+ "word_nikkud": "כּוֹכָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4054-kochav",
+ "gender": "masculine"
+ }
+ ],
+ "כוכב־": [
+ {
+ "word_nikkud": "כּוֹכָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4054-kochav",
+ "gender": "masculine"
+ }
+ ],
+ "כוכבי־": [
+ {
+ "word_nikkud": "כּוֹכָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4054-kochav",
+ "gender": "masculine"
+ }
+ ],
+ "כוכב לכת": [
+ {
+ "word_nikkud": "כּוֹכַב לֶכֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6950-kochav-lechet",
+ "gender": ""
+ }
+ ],
+ "כוכבי לכת": [
+ {
+ "word_nikkud": "כּוֹכַב לֶכֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6950-kochav-lechet",
+ "gender": ""
+ }
+ ],
+ "כוכבית": [
+ {
+ "word_nikkud": "כּוֹכָבִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6949-kochavit",
+ "gender": "feminine"
+ }
+ ],
+ "כוכביות": [
+ {
+ "word_nikkud": "כּוֹכָבִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6949-kochavit",
+ "gender": "feminine"
+ }
+ ],
+ "כוכבית־": [
+ {
+ "word_nikkud": "כּוֹכָבִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6949-kochavit",
+ "gender": "feminine"
+ }
+ ],
+ "כוכביות־": [
+ {
+ "word_nikkud": "כּוֹכָבִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6949-kochavit",
+ "gender": "feminine"
+ }
+ ],
+ "מיכל": [
+ {
+ "word_nikkud": "מֵכָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5021-mechal",
+ "gender": ""
+ }
+ ],
+ "מיכלים": [
+ {
+ "word_nikkud": "מֵכָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5021-mechal",
+ "gender": ""
+ }
+ ],
+ "מיכל־": [
+ {
+ "word_nikkud": "מֵכָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5021-mechal",
+ "gender": ""
+ }
+ ],
+ "מיכלי־": [
+ {
+ "word_nikkud": "מֵכָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5021-mechal",
+ "gender": ""
+ }
+ ],
+ "מכולה": [
+ {
+ "word_nikkud": "מְכוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3748-mechula",
+ "gender": "feminine"
+ }
+ ],
+ "מכולות": [
+ {
+ "word_nikkud": "מְכוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3748-mechula",
+ "gender": "feminine"
+ }
+ ],
+ "מכולות־": [
+ {
+ "word_nikkud": "מְכוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3748-mechula",
+ "gender": "feminine"
+ }
+ ],
+ "מיכלית": [
+ {
+ "word_nikkud": "מֵכָלִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8773-mechalit",
+ "gender": "feminine"
+ }
+ ],
+ "מיכליות": [
+ {
+ "word_nikkud": "מֵכָלִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8773-mechalit",
+ "gender": "feminine"
+ }
+ ],
+ "מיכלית־": [
+ {
+ "word_nikkud": "מֵכָלִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8773-mechalit",
+ "gender": "feminine"
+ }
+ ],
+ "מיכליות־": [
+ {
+ "word_nikkud": "מֵכָלִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8773-mechalit",
+ "gender": "feminine"
+ }
+ ],
+ "תכולה": [
+ {
+ "word_nikkud": "תְּכוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5984-tchula",
+ "gender": "feminine"
+ }
+ ],
+ "תכולת־": [
+ {
+ "word_nikkud": "תְּכוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5984-tchula",
+ "gender": "feminine"
+ }
+ ],
+ "מכונאות": [
+ {
+ "word_nikkud": "מְכוֹנָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7699-mechonaut",
+ "gender": "feminine"
+ }
+ ],
+ "מכונאות־": [
+ {
+ "word_nikkud": "מְכוֹנָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7699-mechonaut",
+ "gender": "feminine"
+ }
+ ],
+ "כוננות": [
+ {
+ "word_nikkud": "כּוֹנְנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5177-konenut",
+ "gender": "feminine"
+ }
+ ],
+ "כוננות־": [
+ {
+ "word_nikkud": "כּוֹנְנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5177-konenut",
+ "gender": "feminine"
+ }
+ ],
+ "כיוון": [
+ {
+ "word_nikkud": "כִּוּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3002-kivun",
+ "gender": "masculine"
+ }
+ ],
+ "כיוונים": [
+ {
+ "word_nikkud": "כִּוּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3002-kivun",
+ "gender": "masculine"
+ }
+ ],
+ "כיוון־": [
+ {
+ "word_nikkud": "כִּוּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3002-kivun",
+ "gender": "masculine"
+ }
+ ],
+ "כיווני־": [
+ {
+ "word_nikkud": "כִּוּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3002-kivun",
+ "gender": "masculine"
+ }
+ ],
+ "כוונה": [
+ {
+ "word_nikkud": "כַּוָּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3001-kavana",
+ "gender": "feminine"
+ }
+ ],
+ "כוונות": [
+ {
+ "word_nikkud": "כַּוָּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3001-kavana",
+ "gender": "feminine"
+ }
+ ],
+ "כוונת־": [
+ {
+ "word_nikkud": "כַּוָּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3001-kavana",
+ "gender": "feminine"
+ }
+ ],
+ "כוונות־": [
+ {
+ "word_nikkud": "כַּוָּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3001-kavana",
+ "gender": "feminine"
+ }
+ ],
+ "מכון": [
+ {
+ "word_nikkud": "מָכוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3725-machon",
+ "gender": "masculine"
+ }
+ ],
+ "מכונים": [
+ {
+ "word_nikkud": "מָכוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3725-machon",
+ "gender": "masculine"
+ }
+ ],
+ "מכון־": [
+ {
+ "word_nikkud": "מָכוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3725-machon",
+ "gender": "masculine"
+ }
+ ],
+ "מכוני־": [
+ {
+ "word_nikkud": "מָכוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3725-machon",
+ "gender": "masculine"
+ }
+ ],
+ "תכונה": [
+ {
+ "word_nikkud": "תְּכוּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3739-tchuna",
+ "gender": "feminine"
+ }
+ ],
+ "תכונות": [
+ {
+ "word_nikkud": "תְּכוּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3739-tchuna",
+ "gender": "feminine"
+ }
+ ],
+ "תכונת־": [
+ {
+ "word_nikkud": "תְּכוּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3739-tchuna",
+ "gender": "feminine"
+ }
+ ],
+ "תכונות־": [
+ {
+ "word_nikkud": "תְּכוּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3739-tchuna",
+ "gender": "feminine"
+ }
+ ],
+ "הכנה": [
+ {
+ "word_nikkud": "הֲכָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4210-hachana",
+ "gender": "feminine"
+ }
+ ],
+ "הכנות": [
+ {
+ "word_nikkud": "הֲכָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4210-hachana",
+ "gender": "feminine"
+ }
+ ],
+ "הכנת־": [
+ {
+ "word_nikkud": "הֲכָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4210-hachana",
+ "gender": "feminine"
+ }
+ ],
+ "הכנות־": [
+ {
+ "word_nikkud": "הֲכָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4210-hachana",
+ "gender": "feminine"
+ }
+ ],
+ "מכונית": [
+ {
+ "word_nikkud": "מְכוֹנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4661-mechonit",
+ "gender": "feminine"
+ }
+ ],
+ "מכוניות": [
+ {
+ "word_nikkud": "מְכוֹנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4661-mechonit",
+ "gender": "feminine"
+ }
+ ],
+ "מכונית־": [
+ {
+ "word_nikkud": "מְכוֹנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4661-mechonit",
+ "gender": "feminine"
+ }
+ ],
+ "מכוניות־": [
+ {
+ "word_nikkud": "מְכוֹנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4661-mechonit",
+ "gender": "feminine"
+ }
+ ],
+ "כונן": [
+ {
+ "word_nikkud": "כּוֹנָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5175-konan",
+ "gender": ""
+ }
+ ],
+ "כוננים": [
+ {
+ "word_nikkud": "כּוֹנָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5175-konan",
+ "gender": ""
+ }
+ ],
+ "כונן־": [
+ {
+ "word_nikkud": "כּוֹנָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5175-konan",
+ "gender": ""
+ }
+ ],
+ "כונני־": [
+ {
+ "word_nikkud": "כּוֹנָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5175-konan",
+ "gender": ""
+ }
+ ],
+ "מכונאי": [
+ {
+ "word_nikkud": "מְכוֹנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7698-mechonay",
+ "gender": "masculine"
+ }
+ ],
+ "מכונאים": [
+ {
+ "word_nikkud": "מְכוֹנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7698-mechonay",
+ "gender": "masculine"
+ }
+ ],
+ "מכונאי־": [
+ {
+ "word_nikkud": "מְכוֹנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7698-mechonay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מְכוֹנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7698-mechonay",
+ "gender": "masculine"
+ }
+ ],
+ "מכינה": [
+ {
+ "word_nikkud": "מְכִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6137-mechina",
+ "gender": "feminine"
+ }
+ ],
+ "מכינות": [
+ {
+ "word_nikkud": "מְכִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6137-mechina",
+ "gender": "feminine"
+ }
+ ],
+ "מכינת־": [
+ {
+ "word_nikkud": "מְכִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6137-mechina",
+ "gender": "feminine"
+ }
+ ],
+ "מכינות־": [
+ {
+ "word_nikkud": "מְכִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6137-mechina",
+ "gender": "feminine"
+ }
+ ],
+ "מכונה": [
+ {
+ "word_nikkud": "מְכוֹנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7094-mechona",
+ "gender": "feminine"
+ }
+ ],
+ "מכונות": [
+ {
+ "word_nikkud": "מְכוֹנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7094-mechona",
+ "gender": "feminine"
+ }
+ ],
+ "מכונת־": [
+ {
+ "word_nikkud": "מְכוֹנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7094-mechona",
+ "gender": "feminine"
+ }
+ ],
+ "מכונות־": [
+ {
+ "word_nikkud": "מְכוֹנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7094-mechona",
+ "gender": "feminine"
+ }
+ ],
+ "כוס": [
+ {
+ "word_nikkud": "כּוֹס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6141-kos",
+ "gender": "feminine"
+ }
+ ],
+ "כוסות": [
+ {
+ "word_nikkud": "כּוֹס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6141-kos",
+ "gender": "feminine"
+ }
+ ],
+ "כוס־": [
+ {
+ "word_nikkud": "כּוֹס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6141-kos",
+ "gender": "feminine"
+ }
+ ],
+ "כוסות־": [
+ {
+ "word_nikkud": "כּוֹס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6141-kos",
+ "gender": "feminine"
+ }
+ ],
+ "כוסברה": [
+ {
+ "word_nikkud": "כֻּסְבָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9297-kusbara",
+ "gender": "feminine"
+ }
+ ],
+ "כוסמין": [
+ {
+ "word_nikkud": "כֻּסְמִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8401-kusmin",
+ "gender": "masculine"
+ }
+ ],
+ "כוסמין־": [
+ {
+ "word_nikkud": "כֻּסְמִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8401-kusmin",
+ "gender": "masculine"
+ }
+ ],
+ "התכווצות": [
+ {
+ "word_nikkud": "הִתְכַּוְּצוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3015-hitkavtzut",
+ "gender": "feminine"
+ }
+ ],
+ "התכווצויות": [
+ {
+ "word_nikkud": "הִתְכַּוְּצוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3015-hitkavtzut",
+ "gender": "feminine"
+ }
+ ],
+ "התכווצות־": [
+ {
+ "word_nikkud": "הִתְכַּוְּצוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3015-hitkavtzut",
+ "gender": "feminine"
+ }
+ ],
+ "התכווצויות־": [
+ {
+ "word_nikkud": "הִתְכַּוְּצוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3015-hitkavtzut",
+ "gender": "feminine"
+ }
+ ],
+ "כיווץ": [
+ {
+ "word_nikkud": "כִּוּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6698-kivutz",
+ "gender": "masculine"
+ }
+ ],
+ "כיווצים": [
+ {
+ "word_nikkud": "כִּוּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6698-kivutz",
+ "gender": "masculine"
+ }
+ ],
+ "כיווץ־": [
+ {
+ "word_nikkud": "כִּוּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6698-kivutz",
+ "gender": "masculine"
+ }
+ ],
+ "כיווצי־": [
+ {
+ "word_nikkud": "כִּוּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6698-kivutz",
+ "gender": "masculine"
+ }
+ ],
+ "כוורן": [
+ {
+ "word_nikkud": "כַּוְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7252-kavran",
+ "gender": "masculine"
+ }
+ ],
+ "כוורנים": [
+ {
+ "word_nikkud": "כַּוְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7252-kavran",
+ "gender": "masculine"
+ }
+ ],
+ "כוורן־": [
+ {
+ "word_nikkud": "כַּוְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7252-kavran",
+ "gender": "masculine"
+ }
+ ],
+ "כוורני־": [
+ {
+ "word_nikkud": "כַּוְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7252-kavran",
+ "gender": "masculine"
+ }
+ ],
+ "כוורת": [
+ {
+ "word_nikkud": "כַּוֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6553-kaveret",
+ "gender": "feminine"
+ }
+ ],
+ "כוורות": [
+ {
+ "word_nikkud": "כַּוֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6553-kaveret",
+ "gender": "feminine"
+ }
+ ],
+ "כוורת־": [
+ {
+ "word_nikkud": "כַּוֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6553-kaveret",
+ "gender": "feminine"
+ }
+ ],
+ "כוורות־": [
+ {
+ "word_nikkud": "כַּוֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6553-kaveret",
+ "gender": "feminine"
+ }
+ ],
+ "כור": [
+ {
+ "word_nikkud": "כּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9145-kur",
+ "gender": "masculine"
+ }
+ ],
+ "כורים": [
+ {
+ "word_nikkud": "כּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9145-kur",
+ "gender": "masculine"
+ }
+ ],
+ "כור־": [
+ {
+ "word_nikkud": "כּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9145-kur",
+ "gender": "masculine"
+ }
+ ],
+ "כורי־": [
+ {
+ "word_nikkud": "כּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9145-kur",
+ "gender": "masculine"
+ }
+ ],
+ "כורסה": [
+ {
+ "word_nikkud": "כֻּרְסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6252-kursa",
+ "gender": "feminine"
+ }
+ ],
+ "כורסות": [
+ {
+ "word_nikkud": "כֻּרְסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6252-kursa",
+ "gender": "feminine"
+ }
+ ],
+ "כורסאות": [
+ {
+ "word_nikkud": "כֻּרְסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6252-kursa",
+ "gender": "feminine"
+ }
+ ],
+ "כורסת־": [
+ {
+ "word_nikkud": "כֻּרְסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6252-kursa",
+ "gender": "feminine"
+ }
+ ],
+ "כורסות־": [
+ {
+ "word_nikkud": "כֻּרְסָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6252-kursa",
+ "gender": "feminine"
+ }
+ ],
+ "הכחדה": [
+ {
+ "word_nikkud": "הַכְחָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7787-hachchada",
+ "gender": "feminine"
+ }
+ ],
+ "הכחדות": [
+ {
+ "word_nikkud": "הַכְחָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7787-hachchada",
+ "gender": "feminine"
+ }
+ ],
+ "הכחדת־": [
+ {
+ "word_nikkud": "הַכְחָדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7787-hachchada",
+ "gender": "feminine"
+ }
+ ],
+ "הכחדות־": [
+ {
+ "word_nikkud": "הַכְחָדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7787-hachchada",
+ "gender": "feminine"
+ }
+ ],
+ "מכחול": [
+ {
+ "word_nikkud": "מִכְחוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3630-michchol",
+ "gender": "masculine"
+ }
+ ],
+ "מכחולים": [
+ {
+ "word_nikkud": "מִכְחוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3630-michchol",
+ "gender": "masculine"
+ }
+ ],
+ "מכחול־": [
+ {
+ "word_nikkud": "מִכְחוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3630-michchol",
+ "gender": "masculine"
+ }
+ ],
+ "מכחולי־": [
+ {
+ "word_nikkud": "מִכְחוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3630-michchol",
+ "gender": "masculine"
+ }
+ ],
+ "כחש": [
+ {
+ "word_nikkud": "כַּחַשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7378-kachash",
+ "gender": "masculine"
+ }
+ ],
+ "כחשים": [
+ {
+ "word_nikkud": "כַּחַשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7378-kachash",
+ "gender": "masculine"
+ }
+ ],
+ "כחש־": [
+ {
+ "word_nikkud": "כַּחַשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7378-kachash",
+ "gender": "masculine"
+ }
+ ],
+ "כחשי־": [
+ {
+ "word_nikkud": "כַּחַשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7378-kachash",
+ "gender": "masculine"
+ }
+ ],
+ "התכחשות": [
+ {
+ "word_nikkud": "הִתְכַּחֲשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7474-hitkachashut",
+ "gender": "feminine"
+ }
+ ],
+ "התכחשויות": [
+ {
+ "word_nikkud": "הִתְכַּחֲשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7474-hitkachashut",
+ "gender": "feminine"
+ }
+ ],
+ "התכחשות־": [
+ {
+ "word_nikkud": "הִתְכַּחֲשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7474-hitkachashut",
+ "gender": "feminine"
+ }
+ ],
+ "התכחשויות־": [
+ {
+ "word_nikkud": "הִתְכַּחֲשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7474-hitkachashut",
+ "gender": "feminine"
+ }
+ ],
+ "כיור": [
+ {
+ "word_nikkud": "כִּיּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4539-kiyor",
+ "gender": "masculine"
+ }
+ ],
+ "כיורים": [
+ {
+ "word_nikkud": "כִּיּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4539-kiyor",
+ "gender": "masculine"
+ }
+ ],
+ "כיור־": [
+ {
+ "word_nikkud": "כִּיּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4539-kiyor",
+ "gender": "masculine"
+ }
+ ],
+ "כיורי־": [
+ {
+ "word_nikkud": "כִּיּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4539-kiyor",
+ "gender": "masculine"
+ }
+ ],
+ "ככר": [
+ {
+ "word_nikkud": "כִּכָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5392-kikar",
+ "gender": "feminine"
+ }
+ ],
+ "ככרים": [
+ {
+ "word_nikkud": "כִּכָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5392-kikar",
+ "gender": "feminine"
+ }
+ ],
+ "ככר־": [
+ {
+ "word_nikkud": "כִּכָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5392-kikar",
+ "gender": "feminine"
+ }
+ ],
+ "ככרי־": [
+ {
+ "word_nikkud": "כִּכָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5392-kikar",
+ "gender": "feminine"
+ }
+ ],
+ "כיס": [
+ {
+ "word_nikkud": "כִּיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5321-kis",
+ "gender": "masculine"
+ }
+ ],
+ "כיסים": [
+ {
+ "word_nikkud": "כִּיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5321-kis",
+ "gender": "masculine"
+ }
+ ],
+ "כיס־": [
+ {
+ "word_nikkud": "כִּיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5321-kis",
+ "gender": "masculine"
+ }
+ ],
+ "כיסי־": [
+ {
+ "word_nikkud": "כִּיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5321-kis",
+ "gender": "masculine"
+ }
+ ],
+ "כיף": [
+ {
+ "word_nikkud": "כֵּיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6807-kef",
+ "gender": ""
+ }
+ ],
+ "כירה": [
+ {
+ "word_nikkud": "כִּירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8165-kira",
+ "gender": "feminine"
+ }
+ ],
+ "כירות": [
+ {
+ "word_nikkud": "כִּירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8165-kira",
+ "gender": "feminine"
+ }
+ ],
+ "כירת־": [
+ {
+ "word_nikkud": "כִּירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8165-kira",
+ "gender": "feminine"
+ }
+ ],
+ "כירות־": [
+ {
+ "word_nikkud": "כִּירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8165-kira",
+ "gender": "feminine"
+ }
+ ],
+ "כיכוב": [
+ {
+ "word_nikkud": "כִּכוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8844-kichuv",
+ "gender": "masculine"
+ }
+ ],
+ "כיכובים": [
+ {
+ "word_nikkud": "כִּכוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8844-kichuv",
+ "gender": "masculine"
+ }
+ ],
+ "כיכוב־": [
+ {
+ "word_nikkud": "כִּכוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8844-kichuv",
+ "gender": "masculine"
+ }
+ ],
+ "כיכובי־": [
+ {
+ "word_nikkud": "כִּכוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8844-kichuv",
+ "gender": "masculine"
+ }
+ ],
+ "כלא": [
+ {
+ "word_nikkud": "כֶּלֶא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3114-kele",
+ "gender": "masculine"
+ }
+ ],
+ "כלאים": [
+ {
+ "word_nikkud": "כֶּלֶא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3114-kele",
+ "gender": "masculine"
+ }
+ ],
+ "כלא־": [
+ {
+ "word_nikkud": "כֶּלֶא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3114-kele",
+ "gender": "masculine"
+ }
+ ],
+ "כלאי־": [
+ {
+ "word_nikkud": "כֶּלֶא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3114-kele",
+ "gender": "masculine"
+ }
+ ],
+ "כלב": [
+ {
+ "word_nikkud": "כֶּלֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3483-kelev",
+ "gender": "masculine"
+ }
+ ],
+ "כלבים": [
+ {
+ "word_nikkud": "כֶּלֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3483-kelev",
+ "gender": "masculine"
+ }
+ ],
+ "כלב־": [
+ {
+ "word_nikkud": "כֶּלֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3483-kelev",
+ "gender": "masculine"
+ }
+ ],
+ "כלבי־": [
+ {
+ "word_nikkud": "כֶּלֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3483-kelev",
+ "gender": "masculine"
+ }
+ ],
+ "כלבלב": [
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ }
+ ],
+ "כלבלבים": [
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ }
+ ],
+ "כלבלב־": [
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ }
+ ],
+ "כלבלבי־": [
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כְּלַבְלַב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3484-klavlav",
+ "gender": "masculine"
+ }
+ ],
+ "מכלב": [
+ {
+ "word_nikkud": "מַכְלֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6282-machlev",
+ "gender": "masculine"
+ }
+ ],
+ "מכלבים": [
+ {
+ "word_nikkud": "מַכְלֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6282-machlev",
+ "gender": "masculine"
+ }
+ ],
+ "מכלב־": [
+ {
+ "word_nikkud": "מַכְלֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6282-machlev",
+ "gender": "masculine"
+ }
+ ],
+ "מכלבי־": [
+ {
+ "word_nikkud": "מַכְלֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6282-machlev",
+ "gender": "masculine"
+ }
+ ],
+ "כליב": [
+ {
+ "word_nikkud": "כְּלִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6283-kliv",
+ "gender": "masculine"
+ }
+ ],
+ "כליבים": [
+ {
+ "word_nikkud": "כְּלִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6283-kliv",
+ "gender": "masculine"
+ }
+ ],
+ "כליב־": [
+ {
+ "word_nikkud": "כְּלִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6283-kliv",
+ "gender": "masculine"
+ }
+ ],
+ "כליבי־": [
+ {
+ "word_nikkud": "כְּלִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6283-kliv",
+ "gender": "masculine"
+ }
+ ],
+ "כלבה": [
+ {
+ "word_nikkud": "כַּלְבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7120-kalba",
+ "gender": "feminine"
+ }
+ ],
+ "כלבות": [
+ {
+ "word_nikkud": "כַּלְבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7120-kalba",
+ "gender": "feminine"
+ }
+ ],
+ "כלבת־": [
+ {
+ "word_nikkud": "כַּלְבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7120-kalba",
+ "gender": "feminine"
+ }
+ ],
+ "כלבות־": [
+ {
+ "word_nikkud": "כַּלְבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7120-kalba",
+ "gender": "feminine"
+ }
+ ],
+ "כלוב": [
+ {
+ "word_nikkud": "כְּלוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7928-kluv",
+ "gender": ""
+ }
+ ],
+ "כלובים": [
+ {
+ "word_nikkud": "כְּלוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7928-kluv",
+ "gender": ""
+ }
+ ],
+ "כלוב־": [
+ {
+ "word_nikkud": "כְּלוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7928-kluv",
+ "gender": ""
+ }
+ ],
+ "כלובי־": [
+ {
+ "word_nikkud": "כְּלוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7928-kluv",
+ "gender": ""
+ }
+ ],
+ "כלור": [
+ {
+ "word_nikkud": "כְלוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8474-chlor",
+ "gender": "masculine"
+ }
+ ],
+ "כליה": [
+ {
+ "word_nikkud": "כִּלְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6801-kilya",
+ "gender": "feminine"
+ }
+ ],
+ "כליות": [
+ {
+ "word_nikkud": "כִּלְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6801-kilya",
+ "gender": "feminine"
+ }
+ ],
+ "כליית־": [
+ {
+ "word_nikkud": "כִּלְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6801-kilya",
+ "gender": "feminine"
+ }
+ ],
+ "כליות־": [
+ {
+ "word_nikkud": "כִּלְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6801-kilya",
+ "gender": "feminine"
+ }
+ ],
+ "כלי": [
+ {
+ "word_nikkud": "כְּלִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6187-kli",
+ "gender": "masculine"
+ }
+ ],
+ "כלים": [
+ {
+ "word_nikkud": "כְּלִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6187-kli",
+ "gender": "masculine"
+ }
+ ],
+ "כלי־": [
+ {
+ "word_nikkud": "כְּלִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6187-kli",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כְּלִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6187-kli",
+ "gender": "masculine"
+ }
+ ],
+ "תכלית": [
+ {
+ "word_nikkud": "תַּכְלִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7231-tachlit",
+ "gender": "feminine"
+ }
+ ],
+ "תכליות": [
+ {
+ "word_nikkud": "תַּכְלִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7231-tachlit",
+ "gender": "feminine"
+ }
+ ],
+ "תכלית־": [
+ {
+ "word_nikkud": "תַּכְלִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7231-tachlit",
+ "gender": "feminine"
+ }
+ ],
+ "תכליות־": [
+ {
+ "word_nikkud": "תַּכְלִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7231-tachlit",
+ "gender": "feminine"
+ }
+ ],
+ "כלימה": [
+ {
+ "word_nikkud": "כְּלִמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9243-klima",
+ "gender": "feminine"
+ }
+ ],
+ "כלימות": [
+ {
+ "word_nikkud": "כְּלִמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9243-klima",
+ "gender": "feminine"
+ }
+ ],
+ "כלימת־": [
+ {
+ "word_nikkud": "כְּלִמָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9243-klima",
+ "gender": "feminine"
+ }
+ ],
+ "כלימות־": [
+ {
+ "word_nikkud": "כְּלִמָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9243-klima",
+ "gender": "feminine"
+ }
+ ],
+ "כלכלה": [
+ {
+ "word_nikkud": "כַּלְכָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3133-kalkala",
+ "gender": "feminine"
+ }
+ ],
+ "כלכלות": [
+ {
+ "word_nikkud": "כַּלְכָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3133-kalkala",
+ "gender": "feminine"
+ }
+ ],
+ "כלכלת־": [
+ {
+ "word_nikkud": "כַּלְכָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3133-kalkala",
+ "gender": "feminine"
+ }
+ ],
+ "כלכלות־": [
+ {
+ "word_nikkud": "כַּלְכָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3133-kalkala",
+ "gender": "feminine"
+ }
+ ],
+ "כללות": [
+ {
+ "word_nikkud": "כְּלָלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5107-klalut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כְּלָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3495-klal",
+ "gender": "masculine"
+ }
+ ],
+ "כללות־": [
+ {
+ "word_nikkud": "כְּלָלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5107-klalut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כְּלָל",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3495-klal",
+ "gender": "masculine"
+ }
+ ],
+ "כלל": [
+ {
+ "word_nikkud": "כְּלָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3495-klal",
+ "gender": "masculine"
+ }
+ ],
+ "כללים": [
+ {
+ "word_nikkud": "כְּלָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3495-klal",
+ "gender": "masculine"
+ }
+ ],
+ "כלל־": [
+ {
+ "word_nikkud": "כְּלָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3495-klal",
+ "gender": "masculine"
+ }
+ ],
+ "כללי־": [
+ {
+ "word_nikkud": "כְּלָל",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3495-klal",
+ "gender": "masculine"
+ }
+ ],
+ "מכללה": [
+ {
+ "word_nikkud": "מִכְלָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3567-michlala",
+ "gender": "feminine"
+ }
+ ],
+ "מכללות": [
+ {
+ "word_nikkud": "מִכְלָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3567-michlala",
+ "gender": "feminine"
+ }
+ ],
+ "מכללת־": [
+ {
+ "word_nikkud": "מִכְלָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3567-michlala",
+ "gender": "feminine"
+ }
+ ],
+ "מכללות־": [
+ {
+ "word_nikkud": "מִכְלָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3567-michlala",
+ "gender": "feminine"
+ }
+ ],
+ "מכלול": [
+ {
+ "word_nikkud": "מִכְלוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3631-michlol",
+ "gender": "masculine"
+ }
+ ],
+ "מכלולים": [
+ {
+ "word_nikkud": "מִכְלוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3631-michlol",
+ "gender": "masculine"
+ }
+ ],
+ "מכלול־": [
+ {
+ "word_nikkud": "מִכְלוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3631-michlol",
+ "gender": "masculine"
+ }
+ ],
+ "מכלולי־": [
+ {
+ "word_nikkud": "מִכְלוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3631-michlol",
+ "gender": "masculine"
+ }
+ ],
+ "כול": [
+ {
+ "word_nikkud": "כֹּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4158-kol",
+ "gender": "masculine"
+ }
+ ],
+ "כל־": [
+ {
+ "word_nikkud": "כֹּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4158-kol",
+ "gender": "masculine"
+ }
+ ],
+ "כלה": [
+ {
+ "word_nikkud": "כַּלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6843-kala",
+ "gender": "feminine"
+ }
+ ],
+ "כלות": [
+ {
+ "word_nikkud": "כַּלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6843-kala",
+ "gender": "feminine"
+ }
+ ],
+ "כלת־": [
+ {
+ "word_nikkud": "כַּלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6843-kala",
+ "gender": "feminine"
+ }
+ ],
+ "כלות־": [
+ {
+ "word_nikkud": "כַּלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6843-kala",
+ "gender": "feminine"
+ }
+ ],
+ "כימות": [
+ {
+ "word_nikkud": "כִּמּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4913-kimut",
+ "gender": "masculine"
+ }
+ ],
+ "כימותים": [
+ {
+ "word_nikkud": "כִּמּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4913-kimut",
+ "gender": "masculine"
+ }
+ ],
+ "כימות־": [
+ {
+ "word_nikkud": "כִּמּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4913-kimut",
+ "gender": "masculine"
+ }
+ ],
+ "כימותי־": [
+ {
+ "word_nikkud": "כִּמּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4913-kimut",
+ "gender": "masculine"
+ }
+ ],
+ "כומר": [
+ {
+ "word_nikkud": "כֹּמֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8166-komer",
+ "gender": "masculine"
+ }
+ ],
+ "כמרים": [
+ {
+ "word_nikkud": "כֹּמֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8166-komer",
+ "gender": "masculine"
+ }
+ ],
+ "כומר־": [
+ {
+ "word_nikkud": "כֹּמֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8166-komer",
+ "gender": "masculine"
+ }
+ ],
+ "כמרי־": [
+ {
+ "word_nikkud": "כֹּמֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8166-komer",
+ "gender": "masculine"
+ }
+ ],
+ "כמורה": [
+ {
+ "word_nikkud": "כְּמוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9266-kmura",
+ "gender": "feminine"
+ }
+ ],
+ "כמורת־": [
+ {
+ "word_nikkud": "כְּמוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9266-kmura",
+ "gender": "feminine"
+ }
+ ],
+ "כן ציור": [
+ {
+ "word_nikkud": "כַּן צִיּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6490-kan-tziyur",
+ "gender": ""
+ }
+ ],
+ "כני ציור": [
+ {
+ "word_nikkud": "כַּן צִיּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6490-kan-tziyur",
+ "gender": ""
+ }
+ ],
+ "כנות": [
+ {
+ "word_nikkud": "כֵּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7158-kenut",
+ "gender": "feminine"
+ }
+ ],
+ "כנות־": [
+ {
+ "word_nikkud": "כֵּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7158-kenut",
+ "gender": "feminine"
+ }
+ ],
+ "כינוי": [
+ {
+ "word_nikkud": "כִּנּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2971-kinuy",
+ "gender": "masculine"
+ }
+ ],
+ "כינויים": [
+ {
+ "word_nikkud": "כִּנּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2971-kinuy",
+ "gender": "masculine"
+ }
+ ],
+ "כינוי־": [
+ {
+ "word_nikkud": "כִּנּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2971-kinuy",
+ "gender": "masculine"
+ }
+ ],
+ "כינויי־": [
+ {
+ "word_nikkud": "כִּנּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2971-kinuy",
+ "gender": "masculine"
+ }
+ ],
+ "כינה": [
+ {
+ "word_nikkud": "כִּנָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5251-kina",
+ "gender": "feminine"
+ }
+ ],
+ "כינים": [
+ {
+ "word_nikkud": "כִּנָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5251-kina",
+ "gender": "feminine"
+ }
+ ],
+ "כינת־": [
+ {
+ "word_nikkud": "כִּנָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5251-kina",
+ "gender": "feminine"
+ }
+ ],
+ "כיני־": [
+ {
+ "word_nikkud": "כִּנָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5251-kina",
+ "gender": "feminine"
+ }
+ ],
+ "כן": [
+ {
+ "word_nikkud": "כַּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4530-kan",
+ "gender": "masculine"
+ }
+ ],
+ "כנים": [
+ {
+ "word_nikkud": "כַּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4530-kan",
+ "gender": "masculine"
+ }
+ ],
+ "כן־": [
+ {
+ "word_nikkud": "כַּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4530-kan",
+ "gender": "masculine"
+ }
+ ],
+ "כני־": [
+ {
+ "word_nikkud": "כַּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4530-kan",
+ "gender": "masculine"
+ }
+ ],
+ "כננת": [
+ {
+ "word_nikkud": "כַּנֶּנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7529-kanenet",
+ "gender": "feminine"
+ }
+ ],
+ "כננות": [
+ {
+ "word_nikkud": "כַּנֶּנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7529-kanenet",
+ "gender": "feminine"
+ }
+ ],
+ "כננת־": [
+ {
+ "word_nikkud": "כַּנֶּנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7529-kanenet",
+ "gender": "feminine"
+ }
+ ],
+ "כננות־": [
+ {
+ "word_nikkud": "כַּנֶּנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7529-kanenet",
+ "gender": "feminine"
+ }
+ ],
+ "כינון": [
+ {
+ "word_nikkud": "כִּנּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7174-kinun",
+ "gender": "masculine"
+ }
+ ],
+ "כינונים": [
+ {
+ "word_nikkud": "כִּנּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7174-kinun",
+ "gender": "masculine"
+ }
+ ],
+ "כינון־": [
+ {
+ "word_nikkud": "כִּנּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7174-kinun",
+ "gender": "masculine"
+ }
+ ],
+ "כינוני־": [
+ {
+ "word_nikkud": "כִּנּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7174-kinun",
+ "gender": "masculine"
+ }
+ ],
+ "כנסת": [
+ {
+ "word_nikkud": "כְּנֶסֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5848-kneset",
+ "gender": "feminine"
+ }
+ ],
+ "כנסות": [
+ {
+ "word_nikkud": "כְּנֶסֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5848-kneset",
+ "gender": "feminine"
+ }
+ ],
+ "כנסת־": [
+ {
+ "word_nikkud": "כְּנֶסֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5848-kneset",
+ "gender": "feminine"
+ }
+ ],
+ "כנסות־": [
+ {
+ "word_nikkud": "כְּנֶסֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5848-kneset",
+ "gender": "feminine"
+ }
+ ],
+ "כניסה": [
+ {
+ "word_nikkud": "כְּנִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2821-knisa",
+ "gender": "feminine"
+ }
+ ],
+ "כניסות": [
+ {
+ "word_nikkud": "כְּנִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2821-knisa",
+ "gender": "feminine"
+ }
+ ],
+ "כניסת־": [
+ {
+ "word_nikkud": "כְּנִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2821-knisa",
+ "gender": "feminine"
+ }
+ ],
+ "כניסות־": [
+ {
+ "word_nikkud": "כְּנִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2821-knisa",
+ "gender": "feminine"
+ }
+ ],
+ "הכנסה": [
+ {
+ "word_nikkud": "הַכְנָסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2882-hachnasa",
+ "gender": "feminine"
+ }
+ ],
+ "הכנסות": [
+ {
+ "word_nikkud": "הַכְנָסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2882-hachnasa",
+ "gender": "feminine"
+ }
+ ],
+ "הכנסת־": [
+ {
+ "word_nikkud": "הַכְנָסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2882-hachnasa",
+ "gender": "feminine"
+ }
+ ],
+ "הכנסות־": [
+ {
+ "word_nikkud": "הַכְנָסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2882-hachnasa",
+ "gender": "feminine"
+ }
+ ],
+ "היכנסות": [
+ {
+ "word_nikkud": "הִכָּנְסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7589-hikansut",
+ "gender": "feminine"
+ }
+ ],
+ "היכנסויות": [
+ {
+ "word_nikkud": "הִכָּנְסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7589-hikansut",
+ "gender": "feminine"
+ }
+ ],
+ "היכנסות־": [
+ {
+ "word_nikkud": "הִכָּנְסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7589-hikansut",
+ "gender": "feminine"
+ }
+ ],
+ "היכנסויות־": [
+ {
+ "word_nikkud": "הִכָּנְסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7589-hikansut",
+ "gender": "feminine"
+ }
+ ],
+ "כנס": [
+ {
+ "word_nikkud": "כֶּנֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5988-kenes",
+ "gender": "masculine"
+ }
+ ],
+ "כנסים": [
+ {
+ "word_nikkud": "כֶּנֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5988-kenes",
+ "gender": "masculine"
+ }
+ ],
+ "כנס־": [
+ {
+ "word_nikkud": "כֶּנֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5988-kenes",
+ "gender": "masculine"
+ }
+ ],
+ "כנסי־": [
+ {
+ "word_nikkud": "כֶּנֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5988-kenes",
+ "gender": "masculine"
+ }
+ ],
+ "כינוס": [
+ {
+ "word_nikkud": "כִּנּוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6153-kinus",
+ "gender": "masculine"
+ }
+ ],
+ "כינוסים": [
+ {
+ "word_nikkud": "כִּנּוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6153-kinus",
+ "gender": "masculine"
+ }
+ ],
+ "כינוס־": [
+ {
+ "word_nikkud": "כִּנּוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6153-kinus",
+ "gender": "masculine"
+ }
+ ],
+ "כינוסי־": [
+ {
+ "word_nikkud": "כִּנּוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6153-kinus",
+ "gender": "masculine"
+ }
+ ],
+ "מכנסיים": [
+ {
+ "word_nikkud": "מִכְנָסַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6219-michnasayim",
+ "gender": "masculine"
+ }
+ ],
+ "מכנסי־": [
+ {
+ "word_nikkud": "מִכְנָסַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6219-michnasayim",
+ "gender": "masculine"
+ }
+ ],
+ "כנסייה": [
+ {
+ "word_nikkud": "כְּנֵסִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6409-knesiya",
+ "gender": "feminine"
+ }
+ ],
+ "כנסייות": [
+ {
+ "word_nikkud": "כְּנֵסִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6409-knesiya",
+ "gender": "feminine"
+ }
+ ],
+ "כנסיית־": [
+ {
+ "word_nikkud": "כְּנֵסִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6409-knesiya",
+ "gender": "feminine"
+ }
+ ],
+ "כנסייות־": [
+ {
+ "word_nikkud": "כְּנֵסִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6409-knesiya",
+ "gender": "feminine"
+ }
+ ],
+ "התכנסות": [
+ {
+ "word_nikkud": "הִתְכַּנְּסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6886-hitkansut",
+ "gender": "feminine"
+ }
+ ],
+ "התכנסויות": [
+ {
+ "word_nikkud": "הִתְכַּנְּסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6886-hitkansut",
+ "gender": "feminine"
+ }
+ ],
+ "התכנסות־": [
+ {
+ "word_nikkud": "הִתְכַּנְּסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6886-hitkansut",
+ "gender": "feminine"
+ }
+ ],
+ "התכנסויות־": [
+ {
+ "word_nikkud": "הִתְכַּנְּסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6886-hitkansut",
+ "gender": "feminine"
+ }
+ ],
+ "היכנעות": [
+ {
+ "word_nikkud": "הִכָּנְעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2867-hikanut",
+ "gender": "feminine"
+ }
+ ],
+ "היכנעות־": [
+ {
+ "word_nikkud": "הִכָּנְעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2867-hikanut",
+ "gender": "feminine"
+ }
+ ],
+ "כניעה": [
+ {
+ "word_nikkud": "כְּנִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8708-knia",
+ "gender": "feminine"
+ }
+ ],
+ "כניעות": [
+ {
+ "word_nikkud": "כְּנִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8708-knia",
+ "gender": "feminine"
+ }
+ ],
+ "כניעת־": [
+ {
+ "word_nikkud": "כְּנִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8708-knia",
+ "gender": "feminine"
+ }
+ ],
+ "כניעות־": [
+ {
+ "word_nikkud": "כְּנִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8708-knia",
+ "gender": "feminine"
+ }
+ ],
+ "כנען": [
+ {
+ "word_nikkud": "כְּנַעַן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8086-knaan",
+ "gender": ""
+ }
+ ],
+ "כנף": [
+ {
+ "word_nikkud": "כָּנָף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3051-kanaf",
+ "gender": "feminine"
+ }
+ ],
+ "כנפיים": [
+ {
+ "word_nikkud": "כָּנָף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3051-kanaf",
+ "gender": "feminine"
+ }
+ ],
+ "כנף־": [
+ {
+ "word_nikkud": "כָּנָף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3051-kanaf",
+ "gender": "feminine"
+ }
+ ],
+ "כנפי־": [
+ {
+ "word_nikkud": "כָּנָף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3051-kanaf",
+ "gender": "feminine"
+ }
+ ],
+ "כנופיה": [
+ {
+ "word_nikkud": "כְּנוּפְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6929-knufya",
+ "gender": "feminine"
+ }
+ ],
+ "כנופיות": [
+ {
+ "word_nikkud": "כְּנוּפְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6929-knufya",
+ "gender": "feminine"
+ }
+ ],
+ "כנופיית־": [
+ {
+ "word_nikkud": "כְּנוּפְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6929-knufya",
+ "gender": "feminine"
+ }
+ ],
+ "כנופיות־": [
+ {
+ "word_nikkud": "כְּנוּפְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6929-knufya",
+ "gender": "feminine"
+ }
+ ],
+ "כנר": [
+ {
+ "word_nikkud": "כַּנָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7425-kanar",
+ "gender": "masculine"
+ }
+ ],
+ "כנרים": [
+ {
+ "word_nikkud": "כַּנָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7425-kanar",
+ "gender": "masculine"
+ }
+ ],
+ "כנר־": [
+ {
+ "word_nikkud": "כַּנָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7425-kanar",
+ "gender": "masculine"
+ }
+ ],
+ "כנרי־": [
+ {
+ "word_nikkud": "כַּנָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7425-kanar",
+ "gender": "masculine"
+ }
+ ],
+ "כינור": [
+ {
+ "word_nikkud": "כִּנּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6648-kinor",
+ "gender": ""
+ }
+ ],
+ "כינורות": [
+ {
+ "word_nikkud": "כִּנּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6648-kinor",
+ "gender": ""
+ }
+ ],
+ "כינור־": [
+ {
+ "word_nikkud": "כִּנּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6648-kinor",
+ "gender": ""
+ }
+ ],
+ "כינורות־": [
+ {
+ "word_nikkud": "כִּנּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6648-kinor",
+ "gender": ""
+ }
+ ],
+ "כיסא": [
+ {
+ "word_nikkud": "כִּסֵּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3684-kise",
+ "gender": "masculine"
+ }
+ ],
+ "כיסאות": [
+ {
+ "word_nikkud": "כִּסֵּא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3684-kise",
+ "gender": "masculine"
+ }
+ ],
+ "כיסא־": [
+ {
+ "word_nikkud": "כִּסֵּא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3684-kise",
+ "gender": "masculine"
+ }
+ ],
+ "כיסאות־": [
+ {
+ "word_nikkud": "כִּסֵּא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3684-kise",
+ "gender": "masculine"
+ }
+ ],
+ "כס": [
+ {
+ "word_nikkud": "כֵּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5958-kes",
+ "gender": ""
+ }
+ ],
+ "כסות": [
+ {
+ "word_nikkud": "כְּסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7583-ksut",
+ "gender": "feminine"
+ }
+ ],
+ "כסויות": [
+ {
+ "word_nikkud": "כְּסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7583-ksut",
+ "gender": "feminine"
+ }
+ ],
+ "כסות־": [
+ {
+ "word_nikkud": "כְּסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7583-ksut",
+ "gender": "feminine"
+ }
+ ],
+ "כסויות־": [
+ {
+ "word_nikkud": "כְּסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7583-ksut",
+ "gender": "feminine"
+ }
+ ],
+ "מכסה": [
+ {
+ "word_nikkud": "מִכְסֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3763-michse",
+ "gender": "masculine"
+ }
+ ],
+ "מכסים": [
+ {
+ "word_nikkud": "מִכְסֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3763-michse",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מֶכֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8682-meches",
+ "gender": "masculine"
+ }
+ ],
+ "מכסאות": [
+ {
+ "word_nikkud": "מִכְסֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3763-michse",
+ "gender": "masculine"
+ }
+ ],
+ "מכסה־": [
+ {
+ "word_nikkud": "מִכְסֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3763-michse",
+ "gender": "masculine"
+ }
+ ],
+ "מכסי־": [
+ {
+ "word_nikkud": "מִכְסֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3763-michse",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מֶכֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8682-meches",
+ "gender": "masculine"
+ }
+ ],
+ "מכסות־": [
+ {
+ "word_nikkud": "מִכְסֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3763-michse",
+ "gender": "masculine"
+ }
+ ],
+ "כיסוי": [
+ {
+ "word_nikkud": "כִּסּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5016-kisuy",
+ "gender": "masculine"
+ }
+ ],
+ "כיסויים": [
+ {
+ "word_nikkud": "כִּסּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5016-kisuy",
+ "gender": "masculine"
+ }
+ ],
+ "כיסוי־": [
+ {
+ "word_nikkud": "כִּסּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5016-kisuy",
+ "gender": "masculine"
+ }
+ ],
+ "כיסויי־": [
+ {
+ "word_nikkud": "כִּסּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5016-kisuy",
+ "gender": "masculine"
+ }
+ ],
+ "כסיל": [
+ {
+ "word_nikkud": "כְּסִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5411-ksil",
+ "gender": "masculine"
+ }
+ ],
+ "כסילים": [
+ {
+ "word_nikkud": "כְּסִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5411-ksil",
+ "gender": "masculine"
+ }
+ ],
+ "כסיל־": [
+ {
+ "word_nikkud": "כְּסִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5411-ksil",
+ "gender": "masculine"
+ }
+ ],
+ "כסילי־": [
+ {
+ "word_nikkud": "כְּסִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5411-ksil",
+ "gender": "masculine"
+ }
+ ],
+ "כספומט": [
+ {
+ "word_nikkud": "כַּסְפּוֹמָט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5878-kaspomat",
+ "gender": "masculine"
+ }
+ ],
+ "כסף": [
+ {
+ "word_nikkud": "כֶּסֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3115-kesef",
+ "gender": "masculine"
+ }
+ ],
+ "כספים": [
+ {
+ "word_nikkud": "כֶּסֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3115-kesef",
+ "gender": "masculine"
+ }
+ ],
+ "כסף־": [
+ {
+ "word_nikkud": "כֶּסֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3115-kesef",
+ "gender": "masculine"
+ }
+ ],
+ "כספי־": [
+ {
+ "word_nikkud": "כֶּסֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3115-kesef",
+ "gender": "masculine"
+ }
+ ],
+ "כספת": [
+ {
+ "word_nikkud": "כַּסֶּפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4012-kasefet",
+ "gender": "feminine"
+ }
+ ],
+ "כספות": [
+ {
+ "word_nikkud": "כַּסֶּפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4012-kasefet",
+ "gender": "feminine"
+ }
+ ],
+ "כספת־": [
+ {
+ "word_nikkud": "כַּסֶּפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4012-kasefet",
+ "gender": "feminine"
+ }
+ ],
+ "כספות־": [
+ {
+ "word_nikkud": "כַּסֶּפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4012-kasefet",
+ "gender": "feminine"
+ }
+ ],
+ "כיסופים": [
+ {
+ "word_nikkud": "כִּסּוּפִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8585-kisufim",
+ "gender": "masculine"
+ }
+ ],
+ "כיסופי־": [
+ {
+ "word_nikkud": "כִּסּוּפִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8585-kisufim",
+ "gender": "masculine"
+ }
+ ],
+ "כעס": [
+ {
+ "word_nikkud": "כַּעַס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5792-kaas",
+ "gender": "masculine"
+ }
+ ],
+ "כעס־": [
+ {
+ "word_nikkud": "כַּעַס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5792-kaas",
+ "gender": "masculine"
+ }
+ ],
+ "כיעור": [
+ {
+ "word_nikkud": "כִּעוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9109-kiur",
+ "gender": "masculine"
+ }
+ ],
+ "כיעורים": [
+ {
+ "word_nikkud": "כִּעוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9109-kiur",
+ "gender": "masculine"
+ }
+ ],
+ "כיעור־": [
+ {
+ "word_nikkud": "כִּעוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9109-kiur",
+ "gender": "masculine"
+ }
+ ],
+ "כיעורי־": [
+ {
+ "word_nikkud": "כִּעוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9109-kiur",
+ "gender": "masculine"
+ }
+ ],
+ "כפייה": [
+ {
+ "word_nikkud": "כְּפִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5420-kfiya",
+ "gender": "feminine"
+ }
+ ],
+ "כפיות": [
+ {
+ "word_nikkud": "כְּפִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5420-kfiya",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כַּפִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7293-kapit",
+ "gender": "feminine"
+ }
+ ],
+ "כפיית־": [
+ {
+ "word_nikkud": "כְּפִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5420-kfiya",
+ "gender": "feminine"
+ }
+ ],
+ "כפיות־": [
+ {
+ "word_nikkud": "כְּפִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5420-kfiya",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כַּפִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7293-kapit",
+ "gender": "feminine"
+ }
+ ],
+ "כפכף": [
+ {
+ "word_nikkud": "כַּפְכָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6259-kafkaf",
+ "gender": "masculine"
+ }
+ ],
+ "כפכפים": [
+ {
+ "word_nikkud": "כַּפְכָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6259-kafkaf",
+ "gender": "masculine"
+ }
+ ],
+ "כפכף־": [
+ {
+ "word_nikkud": "כַּפְכָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6259-kafkaf",
+ "gender": "masculine"
+ }
+ ],
+ "כפכפי־": [
+ {
+ "word_nikkud": "כַּפְכָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6259-kafkaf",
+ "gender": "masculine"
+ }
+ ],
+ "הכפלה": [
+ {
+ "word_nikkud": "הַכְפָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2883-hachpala",
+ "gender": "feminine"
+ }
+ ],
+ "הכפלת־": [
+ {
+ "word_nikkud": "הַכְפָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2883-hachpala",
+ "gender": "feminine"
+ }
+ ],
+ "כפל": [
+ {
+ "word_nikkud": "כֶּפֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4840-kefel",
+ "gender": "masculine"
+ }
+ ],
+ "כפל־": [
+ {
+ "word_nikkud": "כֶּפֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4840-kefel",
+ "gender": "masculine"
+ }
+ ],
+ "כפן": [
+ {
+ "word_nikkud": "כָּפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8043-kafan",
+ "gender": "masculine"
+ }
+ ],
+ "כפן־": [
+ {
+ "word_nikkud": "כָּפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8043-kafan",
+ "gender": "masculine"
+ }
+ ],
+ "כפיף": [
+ {
+ "word_nikkud": "כָּפִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5919-kafif",
+ "gender": "masculine"
+ }
+ ],
+ "כפיפים": [
+ {
+ "word_nikkud": "כָּפִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5919-kafif",
+ "gender": "masculine"
+ }
+ ],
+ "כפיף־": [
+ {
+ "word_nikkud": "כָּפִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5919-kafif",
+ "gender": "masculine"
+ }
+ ],
+ "כפיפי־": [
+ {
+ "word_nikkud": "כָּפִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5919-kafif",
+ "gender": "masculine"
+ }
+ ],
+ "כיפה": [
+ {
+ "word_nikkud": "כִּפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5298-kipa",
+ "gender": "feminine"
+ }
+ ],
+ "כיפות": [
+ {
+ "word_nikkud": "כִּפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5298-kipa",
+ "gender": "feminine"
+ }
+ ],
+ "כיפת־": [
+ {
+ "word_nikkud": "כִּפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5298-kipa",
+ "gender": "feminine"
+ }
+ ],
+ "כיפות־": [
+ {
+ "word_nikkud": "כִּפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5298-kipa",
+ "gender": "feminine"
+ }
+ ],
+ "כפיפה": [
+ {
+ "word_nikkud": "כְּפִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5471-kfifa",
+ "gender": "feminine"
+ }
+ ],
+ "כפיפות": [
+ {
+ "word_nikkud": "כְּפִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5471-kfifa",
+ "gender": "feminine"
+ }
+ ],
+ "כפיפת־": [
+ {
+ "word_nikkud": "כְּפִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5471-kfifa",
+ "gender": "feminine"
+ }
+ ],
+ "כפיפות־": [
+ {
+ "word_nikkud": "כְּפִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5471-kfifa",
+ "gender": "feminine"
+ }
+ ],
+ "כפפה": [
+ {
+ "word_nikkud": "כְּפָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2849-kfafa",
+ "gender": "feminine"
+ }
+ ],
+ "כפפות": [
+ {
+ "word_nikkud": "כְּפָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2849-kfafa",
+ "gender": "feminine"
+ }
+ ],
+ "כפפת־": [
+ {
+ "word_nikkud": "כְּפָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2849-kfafa",
+ "gender": "feminine"
+ }
+ ],
+ "כפפות־": [
+ {
+ "word_nikkud": "כְּפָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2849-kfafa",
+ "gender": "feminine"
+ }
+ ],
+ "כף": [
+ {
+ "word_nikkud": "כַּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4317-kaf",
+ "gender": "feminine"
+ }
+ ],
+ "כפות": [
+ {
+ "word_nikkud": "כַּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4317-kaf",
+ "gender": "feminine"
+ }
+ ],
+ "כף־": [
+ {
+ "word_nikkud": "כַּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4317-kaf",
+ "gender": "feminine"
+ }
+ ],
+ "כפות־": [
+ {
+ "word_nikkud": "כַּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4317-kaf",
+ "gender": "feminine"
+ }
+ ],
+ "כפית": [
+ {
+ "word_nikkud": "כַּפִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7293-kapit",
+ "gender": "feminine"
+ }
+ ],
+ "כפית־": [
+ {
+ "word_nikkud": "כַּפִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7293-kapit",
+ "gender": "feminine"
+ }
+ ],
+ "כיפור": [
+ {
+ "word_nikkud": "כִּפּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4875-kipur",
+ "gender": "masculine"
+ }
+ ],
+ "כיפורים": [
+ {
+ "word_nikkud": "כִּפּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4875-kipur",
+ "gender": "masculine"
+ }
+ ],
+ "כיפור־": [
+ {
+ "word_nikkud": "כִּפּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4875-kipur",
+ "gender": "masculine"
+ }
+ ],
+ "כיפורי־": [
+ {
+ "word_nikkud": "כִּפּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4875-kipur",
+ "gender": "masculine"
+ }
+ ],
+ "כפר": [
+ {
+ "word_nikkud": "כְּפָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5854-kfar",
+ "gender": "masculine"
+ }
+ ],
+ "כפרים": [
+ {
+ "word_nikkud": "כְּפָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5854-kfar",
+ "gender": "masculine"
+ }
+ ],
+ "כפר־": [
+ {
+ "word_nikkud": "כְּפָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5854-kfar",
+ "gender": "masculine"
+ }
+ ],
+ "כפרי־": [
+ {
+ "word_nikkud": "כְּפָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5854-kfar",
+ "gender": "masculine"
+ }
+ ],
+ "כפרה": [
+ {
+ "word_nikkud": "כַּפָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5519-kapara",
+ "gender": "feminine"
+ }
+ ],
+ "כפרות": [
+ {
+ "word_nikkud": "כַּפָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5519-kapara",
+ "gender": "feminine"
+ }
+ ],
+ "כפרת־": [
+ {
+ "word_nikkud": "כַּפָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5519-kapara",
+ "gender": "feminine"
+ }
+ ],
+ "כפרות־": [
+ {
+ "word_nikkud": "כַּפָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5519-kapara",
+ "gender": "feminine"
+ }
+ ],
+ "הכפשה": [
+ {
+ "word_nikkud": "הַכְפָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8827-hachpasha",
+ "gender": "feminine"
+ }
+ ],
+ "הכפשות": [
+ {
+ "word_nikkud": "הַכְפָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8827-hachpasha",
+ "gender": "feminine"
+ }
+ ],
+ "הכפשת־": [
+ {
+ "word_nikkud": "הַכְפָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8827-hachpasha",
+ "gender": "feminine"
+ }
+ ],
+ "הכפשות־": [
+ {
+ "word_nikkud": "הַכְפָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8827-hachpasha",
+ "gender": "feminine"
+ }
+ ],
+ "כפתור": [
+ {
+ "word_nikkud": "כַּפְתּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4803-kaftor",
+ "gender": ""
+ }
+ ],
+ "כפתורים": [
+ {
+ "word_nikkud": "כַּפְתּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4803-kaftor",
+ "gender": ""
+ }
+ ],
+ "כפתור־": [
+ {
+ "word_nikkud": "כַּפְתּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4803-kaftor",
+ "gender": ""
+ }
+ ],
+ "כפתורי־": [
+ {
+ "word_nikkud": "כַּפְתּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4803-kaftor",
+ "gender": ""
+ }
+ ],
+ "כרוב": [
+ {
+ "word_nikkud": "כְּרוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5062-kruv",
+ "gender": "masculine"
+ }
+ ],
+ "כרובים": [
+ {
+ "word_nikkud": "כְּרוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5062-kruv",
+ "gender": "masculine"
+ }
+ ],
+ "כרוב־": [
+ {
+ "word_nikkud": "כְּרוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5062-kruv",
+ "gender": "masculine"
+ }
+ ],
+ "כרובי־": [
+ {
+ "word_nikkud": "כְּרוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5062-kruv",
+ "gender": "masculine"
+ }
+ ],
+ "כרובית": [
+ {
+ "word_nikkud": "כְּרוּבִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8613-kruvit",
+ "gender": "feminine"
+ }
+ ],
+ "כרוביות": [
+ {
+ "word_nikkud": "כְּרוּבִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8613-kruvit",
+ "gender": "feminine"
+ }
+ ],
+ "כרובית־": [
+ {
+ "word_nikkud": "כְּרוּבִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8613-kruvit",
+ "gender": "feminine"
+ }
+ ],
+ "כרוביות־": [
+ {
+ "word_nikkud": "כְּרוּבִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8613-kruvit",
+ "gender": "feminine"
+ }
+ ],
+ "כרוז": [
+ {
+ "word_nikkud": "כְּרוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3462-kruz",
+ "gender": "masculine"
+ }
+ ],
+ "כרוזים": [
+ {
+ "word_nikkud": "כְּרוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3462-kruz",
+ "gender": "masculine"
+ }
+ ],
+ "כרוז־": [
+ {
+ "word_nikkud": "כְּרוּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3462-kruz",
+ "gender": "masculine"
+ }
+ ],
+ "כרוזי־": [
+ {
+ "word_nikkud": "כְּרוּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3462-kruz",
+ "gender": "masculine"
+ }
+ ],
+ "הכרזה": [
+ {
+ "word_nikkud": "הַכְרָזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8375-hachraza",
+ "gender": "feminine"
+ }
+ ],
+ "הכרזות": [
+ {
+ "word_nikkud": "הַכְרָזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8375-hachraza",
+ "gender": "feminine"
+ }
+ ],
+ "הכרזת־": [
+ {
+ "word_nikkud": "הַכְרָזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8375-hachraza",
+ "gender": "feminine"
+ }
+ ],
+ "הכרזות־": [
+ {
+ "word_nikkud": "הַכְרָזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8375-hachraza",
+ "gender": "feminine"
+ }
+ ],
+ "כרזה": [
+ {
+ "word_nikkud": "כְּרָזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7171-kraza",
+ "gender": "feminine"
+ }
+ ],
+ "כרזות": [
+ {
+ "word_nikkud": "כְּרָזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7171-kraza",
+ "gender": "feminine"
+ }
+ ],
+ "כרזת־": [
+ {
+ "word_nikkud": "כְּרָזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7171-kraza",
+ "gender": "feminine"
+ }
+ ],
+ "כרזות־": [
+ {
+ "word_nikkud": "כְּרָזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7171-kraza",
+ "gender": "feminine"
+ }
+ ],
+ "כורח": [
+ {
+ "word_nikkud": "כֹּרַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5416-korach",
+ "gender": "masculine"
+ }
+ ],
+ "כורח־": [
+ {
+ "word_nikkud": "כֹּרַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5416-korach",
+ "gender": "masculine"
+ }
+ ],
+ "הכרח": [
+ {
+ "word_nikkud": "הֶכְרֵחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5413-hechreach",
+ "gender": "masculine"
+ }
+ ],
+ "הכרחים": [
+ {
+ "word_nikkud": "הֶכְרֵחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5413-hechreach",
+ "gender": "masculine"
+ }
+ ],
+ "הכרח־": [
+ {
+ "word_nikkud": "הֶכְרֵחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5413-hechreach",
+ "gender": "masculine"
+ }
+ ],
+ "הכרחי־": [
+ {
+ "word_nikkud": "הֶכְרֵחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5413-hechreach",
+ "gender": "masculine"
+ }
+ ],
+ "כרטיס": [
+ {
+ "word_nikkud": "כַּרְטִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3671-kartis",
+ "gender": ""
+ }
+ ],
+ "כרטיסים": [
+ {
+ "word_nikkud": "כַּרְטִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3671-kartis",
+ "gender": ""
+ }
+ ],
+ "כרטיס־": [
+ {
+ "word_nikkud": "כַּרְטִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3671-kartis",
+ "gender": ""
+ }
+ ],
+ "כרטיסי־": [
+ {
+ "word_nikkud": "כַּרְטִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3671-kartis",
+ "gender": ""
+ }
+ ],
+ "כרטיסיה": [
+ {
+ "word_nikkud": "כַּרְטִיסִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9154-kartisiya",
+ "gender": "masculine"
+ }
+ ],
+ "כרטיסיות": [
+ {
+ "word_nikkud": "כַּרְטִיסִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9154-kartisiya",
+ "gender": "masculine"
+ }
+ ],
+ "כרטיסיית־": [
+ {
+ "word_nikkud": "כַּרְטִיסִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9154-kartisiya",
+ "gender": "masculine"
+ }
+ ],
+ "כרטיסיות־": [
+ {
+ "word_nikkud": "כַּרְטִיסִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9154-kartisiya",
+ "gender": "masculine"
+ }
+ ],
+ "מכרה": [
+ {
+ "word_nikkud": "מִכְרֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5445-michre",
+ "gender": "masculine"
+ }
+ ],
+ "מכרות": [
+ {
+ "word_nikkud": "מִכְרֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5445-michre",
+ "gender": "masculine"
+ }
+ ],
+ "מכרה־": [
+ {
+ "word_nikkud": "מִכְרֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5445-michre",
+ "gender": "masculine"
+ }
+ ],
+ "מכרות־": [
+ {
+ "word_nikkud": "מִכְרֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5445-michre",
+ "gender": "masculine"
+ }
+ ],
+ "כרייה": [
+ {
+ "word_nikkud": "כְּרִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5446-kriya",
+ "gender": "feminine"
+ }
+ ],
+ "כריות": [
+ {
+ "word_nikkud": "כְּרִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5446-kriya",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כָּרִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7308-karit",
+ "gender": "feminine"
+ }
+ ],
+ "כריית־": [
+ {
+ "word_nikkud": "כְּרִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5446-kriya",
+ "gender": "feminine"
+ }
+ ],
+ "כריות־": [
+ {
+ "word_nikkud": "כְּרִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5446-kriya",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כָּרִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7308-karit",
+ "gender": "feminine"
+ }
+ ],
+ "כריש": [
+ {
+ "word_nikkud": "כָּרִישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4606-karish",
+ "gender": ""
+ }
+ ],
+ "כרישים": [
+ {
+ "word_nikkud": "כָּרִישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4606-karish",
+ "gender": ""
+ }
+ ],
+ "כריש־": [
+ {
+ "word_nikkud": "כָּרִישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4606-karish",
+ "gender": ""
+ }
+ ],
+ "כרישי־": [
+ {
+ "word_nikkud": "כָּרִישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4606-karish",
+ "gender": ""
+ }
+ ],
+ "כרוכית": [
+ {
+ "word_nikkud": "כְּרוּכִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5347-kruchit",
+ "gender": "feminine"
+ }
+ ],
+ "כרוכיות": [
+ {
+ "word_nikkud": "כְּרוּכִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5347-kruchit",
+ "gender": "feminine"
+ }
+ ],
+ "כרוכית־": [
+ {
+ "word_nikkud": "כְּרוּכִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5347-kruchit",
+ "gender": "feminine"
+ }
+ ],
+ "כרוכיות־": [
+ {
+ "word_nikkud": "כְּרוּכִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5347-kruchit",
+ "gender": "feminine"
+ }
+ ],
+ "כרך": [
+ {
+ "word_nikkud": "כֶּרֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6078-kerech",
+ "gender": "masculine"
+ }
+ ],
+ "כרכים": [
+ {
+ "word_nikkud": "כֶּרֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6078-kerech",
+ "gender": "masculine"
+ }
+ ],
+ "כרך־": [
+ {
+ "word_nikkud": "כֶּרֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6078-kerech",
+ "gender": "masculine"
+ }
+ ],
+ "כרכי־": [
+ {
+ "word_nikkud": "כֶּרֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6078-kerech",
+ "gender": "masculine"
+ }
+ ],
+ "תכריכים": [
+ {
+ "word_nikkud": "תַּכְרִיכִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4306-tachrichim",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תַּכְרִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4307-tachrich",
+ "gender": "masculine"
+ }
+ ],
+ "תכריכי־": [
+ {
+ "word_nikkud": "תַּכְרִיכִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4306-tachrichim",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תַּכְרִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4307-tachrich",
+ "gender": "masculine"
+ }
+ ],
+ "תכריך": [
+ {
+ "word_nikkud": "תַּכְרִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4307-tachrich",
+ "gender": "masculine"
+ }
+ ],
+ "תכריך־": [
+ {
+ "word_nikkud": "תַּכְרִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4307-tachrich",
+ "gender": "masculine"
+ }
+ ],
+ "כריך": [
+ {
+ "word_nikkud": "כָּרִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4375-karich",
+ "gender": "masculine"
+ }
+ ],
+ "כריכים": [
+ {
+ "word_nikkud": "כָּרִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4375-karich",
+ "gender": "masculine"
+ }
+ ],
+ "כריך־": [
+ {
+ "word_nikkud": "כָּרִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4375-karich",
+ "gender": "masculine"
+ }
+ ],
+ "כריכי־": [
+ {
+ "word_nikkud": "כָּרִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4375-karich",
+ "gender": "masculine"
+ }
+ ],
+ "כריכה": [
+ {
+ "word_nikkud": "כְּרִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4381-kricha",
+ "gender": "feminine"
+ }
+ ],
+ "כריכות": [
+ {
+ "word_nikkud": "כְּרִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4381-kricha",
+ "gender": "feminine"
+ }
+ ],
+ "כריכת־": [
+ {
+ "word_nikkud": "כְּרִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4381-kricha",
+ "gender": "feminine"
+ }
+ ],
+ "כריכות־": [
+ {
+ "word_nikkud": "כְּרִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4381-kricha",
+ "gender": "feminine"
+ }
+ ],
+ "כרכוב": [
+ {
+ "word_nikkud": "כַּרְכֹּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6682-karkov",
+ "gender": ""
+ }
+ ],
+ "כרכובים": [
+ {
+ "word_nikkud": "כַּרְכֹּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6682-karkov",
+ "gender": ""
+ }
+ ],
+ "כרכוב־": [
+ {
+ "word_nikkud": "כַּרְכֹּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6682-karkov",
+ "gender": ""
+ }
+ ],
+ "כרכובי־": [
+ {
+ "word_nikkud": "כַּרְכֹּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6682-karkov",
+ "gender": ""
+ }
+ ],
+ "כרכום": [
+ {
+ "word_nikkud": "כַּרְכֹּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3699-karkom",
+ "gender": "masculine"
+ }
+ ],
+ "כרכומים": [
+ {
+ "word_nikkud": "כַּרְכֹּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3699-karkom",
+ "gender": "masculine"
+ }
+ ],
+ "כרכום־": [
+ {
+ "word_nikkud": "כַּרְכֹּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3699-karkom",
+ "gender": "masculine"
+ }
+ ],
+ "כרכומי־": [
+ {
+ "word_nikkud": "כַּרְכֹּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3699-karkom",
+ "gender": "masculine"
+ }
+ ],
+ "כרם": [
+ {
+ "word_nikkud": "כֶּרֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7882-kerem",
+ "gender": "masculine"
+ }
+ ],
+ "כרמים": [
+ {
+ "word_nikkud": "כֶּרֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7882-kerem",
+ "gender": "masculine"
+ }
+ ],
+ "כרם־": [
+ {
+ "word_nikkud": "כֶּרֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7882-kerem",
+ "gender": "masculine"
+ }
+ ],
+ "כרמי־": [
+ {
+ "word_nikkud": "כֶּרֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7882-kerem",
+ "gender": "masculine"
+ }
+ ],
+ "כרס": [
+ {
+ "word_nikkud": "כָּרֵס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7037-kares",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כָּרֵס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7037-kares",
+ "gender": "feminine"
+ }
+ ],
+ "כרסות": [
+ {
+ "word_nikkud": "כָּרֵס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7037-kares",
+ "gender": "feminine"
+ }
+ ],
+ "כרס־": [
+ {
+ "word_nikkud": "כָּרֵס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7037-kares",
+ "gender": "feminine"
+ }
+ ],
+ "כרסות־": [
+ {
+ "word_nikkud": "כָּרֵס",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7037-kares",
+ "gender": "feminine"
+ }
+ ],
+ "מכרסם": [
+ {
+ "word_nikkud": "מְכַרְסֵם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7688-mecharsem",
+ "gender": "masculine"
+ }
+ ],
+ "מכרסמים": [
+ {
+ "word_nikkud": "מְכַרְסֵם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7688-mecharsem",
+ "gender": "masculine"
+ }
+ ],
+ "מכרסם־": [
+ {
+ "word_nikkud": "מְכַרְסֵם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7688-mecharsem",
+ "gender": "masculine"
+ }
+ ],
+ "מכרסמי־": [
+ {
+ "word_nikkud": "מְכַרְסֵם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7688-mecharsem",
+ "gender": "masculine"
+ }
+ ],
+ "כרסום": [
+ {
+ "word_nikkud": "כִּרְסוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6710-kirsum",
+ "gender": "masculine"
+ }
+ ],
+ "כרסומים": [
+ {
+ "word_nikkud": "כִּרְסוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6710-kirsum",
+ "gender": "masculine"
+ }
+ ],
+ "כרסום־": [
+ {
+ "word_nikkud": "כִּרְסוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6710-kirsum",
+ "gender": "masculine"
+ }
+ ],
+ "כרסומי־": [
+ {
+ "word_nikkud": "כִּרְסוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6710-kirsum",
+ "gender": "masculine"
+ }
+ ],
+ "כרע": [
+ {
+ "word_nikkud": "כֶּרַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4076-kera",
+ "gender": "feminine"
+ }
+ ],
+ "כרעיים": [
+ {
+ "word_nikkud": "כֶּרַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4076-kera",
+ "gender": "feminine"
+ }
+ ],
+ "כרע־": [
+ {
+ "word_nikkud": "כֶּרַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4076-kera",
+ "gender": "feminine"
+ }
+ ],
+ "כרעי־": [
+ {
+ "word_nikkud": "כֶּרַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4076-kera",
+ "gender": "feminine"
+ }
+ ],
+ "כרפס": [
+ {
+ "word_nikkud": "כַּרְפַּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7278-karpas",
+ "gender": ""
+ }
+ ],
+ "כרפס־": [
+ {
+ "word_nikkud": "כַּרְפַּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7278-karpas",
+ "gender": ""
+ }
+ ],
+ "כר": [
+ {
+ "word_nikkud": "כַּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7307-kar",
+ "gender": "masculine"
+ }
+ ],
+ "כרים": [
+ {
+ "word_nikkud": "כַּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7307-kar",
+ "gender": "masculine"
+ }
+ ],
+ "כר־": [
+ {
+ "word_nikkud": "כַּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7307-kar",
+ "gender": "masculine"
+ }
+ ],
+ "כרי־": [
+ {
+ "word_nikkud": "כַּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7307-kar",
+ "gender": "masculine"
+ }
+ ],
+ "כרית": [
+ {
+ "word_nikkud": "כָּרִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7308-karit",
+ "gender": "feminine"
+ }
+ ],
+ "כרית־": [
+ {
+ "word_nikkud": "כָּרִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7308-karit",
+ "gender": "feminine"
+ }
+ ],
+ "תכשיט": [
+ {
+ "word_nikkud": "תַּכְשִׁיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4022-tachshit",
+ "gender": "masculine"
+ }
+ ],
+ "תכשיטים": [
+ {
+ "word_nikkud": "תַּכְשִׁיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4022-tachshit",
+ "gender": "masculine"
+ }
+ ],
+ "תכשיט־": [
+ {
+ "word_nikkud": "תַּכְשִׁיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4022-tachshit",
+ "gender": "masculine"
+ }
+ ],
+ "תכשיטי־": [
+ {
+ "word_nikkud": "תַּכְשִׁיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4022-tachshit",
+ "gender": "masculine"
+ }
+ ],
+ "מכשול": [
+ {
+ "word_nikkud": "מִכְשׁוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3632-michshol",
+ "gender": "masculine"
+ }
+ ],
+ "מכשולים": [
+ {
+ "word_nikkud": "מִכְשׁוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3632-michshol",
+ "gender": "masculine"
+ }
+ ],
+ "מכשול־": [
+ {
+ "word_nikkud": "מִכְשׁוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3632-michshol",
+ "gender": "masculine"
+ }
+ ],
+ "מכשולי־": [
+ {
+ "word_nikkud": "מִכְשׁוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3632-michshol",
+ "gender": "masculine"
+ }
+ ],
+ "כישלון": [
+ {
+ "word_nikkud": "כִּשָּׁלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3894-kishalon",
+ "gender": "masculine"
+ }
+ ],
+ "כישלונות": [
+ {
+ "word_nikkud": "כִּשָּׁלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3894-kishalon",
+ "gender": "masculine"
+ }
+ ],
+ "כישלון־": [
+ {
+ "word_nikkud": "כִּשָּׁלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3894-kishalon",
+ "gender": "masculine"
+ }
+ ],
+ "כישלונות־": [
+ {
+ "word_nikkud": "כִּשָּׁלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3894-kishalon",
+ "gender": "masculine"
+ }
+ ],
+ "כשל": [
+ {
+ "word_nikkud": "כֶּשֶׁל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4985-keshel",
+ "gender": "masculine"
+ }
+ ],
+ "כשלים": [
+ {
+ "word_nikkud": "כֶּשֶׁל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4985-keshel",
+ "gender": "masculine"
+ }
+ ],
+ "כשל־": [
+ {
+ "word_nikkud": "כֶּשֶׁל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4985-keshel",
+ "gender": "masculine"
+ }
+ ],
+ "כשלי־": [
+ {
+ "word_nikkud": "כֶּשֶׁל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4985-keshel",
+ "gender": "masculine"
+ }
+ ],
+ "מכשלה": [
+ {
+ "word_nikkud": "מַכְשֵׁלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8168-machshela",
+ "gender": "feminine"
+ }
+ ],
+ "מכשלות": [
+ {
+ "word_nikkud": "מַכְשֵׁלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8168-machshela",
+ "gender": "feminine"
+ }
+ ],
+ "מכשלת־": [
+ {
+ "word_nikkud": "מַכְשֵׁלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8168-machshela",
+ "gender": "feminine"
+ }
+ ],
+ "מכשלות־": [
+ {
+ "word_nikkud": "מַכְשֵׁלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8168-machshela",
+ "gender": "feminine"
+ }
+ ],
+ "כישוף": [
+ {
+ "word_nikkud": "כִּשּׁוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2972-kishuf",
+ "gender": "masculine"
+ }
+ ],
+ "כישוף־": [
+ {
+ "word_nikkud": "כִּשּׁוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2972-kishuf",
+ "gender": "masculine"
+ }
+ ],
+ "מכשף": [
+ {
+ "word_nikkud": "מְכַשֵּׁף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8172-mechashef",
+ "gender": "masculine"
+ }
+ ],
+ "מכשפים": [
+ {
+ "word_nikkud": "מְכַשֵּׁף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8172-mechashef",
+ "gender": "masculine"
+ }
+ ],
+ "מכשף־": [
+ {
+ "word_nikkud": "מְכַשֵּׁף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8172-mechashef",
+ "gender": "masculine"
+ }
+ ],
+ "מכשפי־": [
+ {
+ "word_nikkud": "מְכַשֵּׁף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8172-mechashef",
+ "gender": "masculine"
+ }
+ ],
+ "תכשיר": [
+ {
+ "word_nikkud": "תַּכְשִׁיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3608-tachshir",
+ "gender": "masculine"
+ }
+ ],
+ "תכשירים": [
+ {
+ "word_nikkud": "תַּכְשִׁיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3608-tachshir",
+ "gender": "masculine"
+ }
+ ],
+ "תכשיר־": [
+ {
+ "word_nikkud": "תַּכְשִׁיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3608-tachshir",
+ "gender": "masculine"
+ }
+ ],
+ "תכשירי־": [
+ {
+ "word_nikkud": "תַּכְשִׁיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3608-tachshir",
+ "gender": "masculine"
+ }
+ ],
+ "כשרות": [
+ {
+ "word_nikkud": "כַּשְׁרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3644-kashrut",
+ "gender": "feminine"
+ }
+ ],
+ "כשרות־": [
+ {
+ "word_nikkud": "כַּשְׁרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3644-kashrut",
+ "gender": "feminine"
+ }
+ ],
+ "הכשר": [
+ {
+ "word_nikkud": "הֶכְשֵׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3895-hechsher",
+ "gender": "masculine"
+ }
+ ],
+ "הכשרים": [
+ {
+ "word_nikkud": "הֶכְשֵׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3895-hechsher",
+ "gender": "masculine"
+ }
+ ],
+ "הכשר־": [
+ {
+ "word_nikkud": "הֶכְשֵׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3895-hechsher",
+ "gender": "masculine"
+ }
+ ],
+ "הכשרי־": [
+ {
+ "word_nikkud": "הֶכְשֵׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3895-hechsher",
+ "gender": "masculine"
+ }
+ ],
+ "כושר": [
+ {
+ "word_nikkud": "כֹּשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7433-kosher",
+ "gender": "masculine"
+ }
+ ],
+ "כושר־": [
+ {
+ "word_nikkud": "כֹּשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7433-kosher",
+ "gender": "masculine"
+ }
+ ],
+ "מכשיר": [
+ {
+ "word_nikkud": "מַכְשִׁיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7867-machshir",
+ "gender": "masculine"
+ }
+ ],
+ "מכשירים": [
+ {
+ "word_nikkud": "מַכְשִׁיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7867-machshir",
+ "gender": "masculine"
+ }
+ ],
+ "מכשיר־": [
+ {
+ "word_nikkud": "מַכְשִׁיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7867-machshir",
+ "gender": "masculine"
+ }
+ ],
+ "מכשירי־": [
+ {
+ "word_nikkud": "מַכְשִׁיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7867-machshir",
+ "gender": "masculine"
+ }
+ ],
+ "כשרון": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כישרון": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כשרונות": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כישרונות": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כשרון־": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כישרון־": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כשרונות־": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כישרונות־": [
+ {
+ "word_nikkud": "כִּשְׁרוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3587-kishron",
+ "gender": "masculine"
+ }
+ ],
+ "כישורים": [
+ {
+ "word_nikkud": "כִּשּׁוּרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7108-kishurim",
+ "gender": "masculine"
+ }
+ ],
+ "כישורי־": [
+ {
+ "word_nikkud": "כִּשּׁוּרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7108-kishurim",
+ "gender": "masculine"
+ }
+ ],
+ "כיתוב": [
+ {
+ "word_nikkud": "כִּתּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8111-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "כיתובים": [
+ {
+ "word_nikkud": "כִּתּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8111-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "כיתוב־": [
+ {
+ "word_nikkud": "כִּתּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8111-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "כיתובי־": [
+ {
+ "word_nikkud": "כִּתּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8111-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "כתובת": [
+ {
+ "word_nikkud": "כְּתֹבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3261-ktovet",
+ "gender": "feminine"
+ }
+ ],
+ "כתובות": [
+ {
+ "word_nikkud": "כְּתֹבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3261-ktovet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כְּתֻבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9167-ktuba",
+ "gender": "feminine"
+ }
+ ],
+ "כתובת־": [
+ {
+ "word_nikkud": "כְּתֹבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3261-ktovet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כְּתֻבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9167-ktuba",
+ "gender": "feminine"
+ }
+ ],
+ "כתובות־": [
+ {
+ "word_nikkud": "כְּתֹבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3261-ktovet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כְּתֻבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9167-ktuba",
+ "gender": "feminine"
+ }
+ ],
+ "תכתובת": [
+ {
+ "word_nikkud": "תִּכְתֹּבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3250-tichtovet",
+ "gender": "feminine"
+ }
+ ],
+ "תכתובות": [
+ {
+ "word_nikkud": "תִּכְתֹּבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3250-tichtovet",
+ "gender": "feminine"
+ }
+ ],
+ "תכתובת־": [
+ {
+ "word_nikkud": "תִּכְתֹּבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3250-tichtovet",
+ "gender": "feminine"
+ }
+ ],
+ "תכתובות־": [
+ {
+ "word_nikkud": "תִּכְתֹּבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3250-tichtovet",
+ "gender": "feminine"
+ }
+ ],
+ "כתב": [
+ {
+ "word_nikkud": "כְּתָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3052-ktav",
+ "gender": "masculine"
+ }
+ ],
+ "כתבים": [
+ {
+ "word_nikkud": "כְּתָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3052-ktav",
+ "gender": "masculine"
+ }
+ ],
+ "כתב־": [
+ {
+ "word_nikkud": "כְּתָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3052-ktav",
+ "gender": "masculine"
+ }
+ ],
+ "כתבי־": [
+ {
+ "word_nikkud": "כְּתָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3052-ktav",
+ "gender": "masculine"
+ }
+ ],
+ "התכתבות": [
+ {
+ "word_nikkud": "הִתְכַּתְּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3016-hitkatvut",
+ "gender": "feminine"
+ }
+ ],
+ "התכתבות־": [
+ {
+ "word_nikkud": "הִתְכַּתְּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3016-hitkatvut",
+ "gender": "feminine"
+ }
+ ],
+ "כתיבה": [
+ {
+ "word_nikkud": "כְּתִיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2822-ktiva",
+ "gender": "feminine"
+ }
+ ],
+ "כתיבות": [
+ {
+ "word_nikkud": "כְּתִיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2822-ktiva",
+ "gender": "feminine"
+ }
+ ],
+ "כתיבת־": [
+ {
+ "word_nikkud": "כְּתִיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2822-ktiva",
+ "gender": "feminine"
+ }
+ ],
+ "כתיבות־": [
+ {
+ "word_nikkud": "כְּתִיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2822-ktiva",
+ "gender": "feminine"
+ }
+ ],
+ "הכתבה": [
+ {
+ "word_nikkud": "הַכְתָּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2884-hachtava",
+ "gender": "feminine"
+ }
+ ],
+ "הכתבות": [
+ {
+ "word_nikkud": "הַכְתָּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2884-hachtava",
+ "gender": "feminine"
+ }
+ ],
+ "הכתבת־": [
+ {
+ "word_nikkud": "הַכְתָּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2884-hachtava",
+ "gender": "feminine"
+ }
+ ],
+ "הכתבות־": [
+ {
+ "word_nikkud": "הַכְתָּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2884-hachtava",
+ "gender": "feminine"
+ }
+ ],
+ "כתובה": [
+ {
+ "word_nikkud": "כְּתֻבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9167-ktuba",
+ "gender": "feminine"
+ }
+ ],
+ "מכתב": [
+ {
+ "word_nikkud": "מִכְתָּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3035-michtav",
+ "gender": "masculine"
+ }
+ ],
+ "מכתבים": [
+ {
+ "word_nikkud": "מִכְתָּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3035-michtav",
+ "gender": "masculine"
+ }
+ ],
+ "מכתב־": [
+ {
+ "word_nikkud": "מִכְתָּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3035-michtav",
+ "gender": "masculine"
+ }
+ ],
+ "מכתבי־": [
+ {
+ "word_nikkud": "מִכְתָּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3035-michtav",
+ "gender": "masculine"
+ }
+ ],
+ "כתבן": [
+ {
+ "word_nikkud": "כַּתְבָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3436-katvan",
+ "gender": "masculine"
+ }
+ ],
+ "כתבנים": [
+ {
+ "word_nikkud": "כַּתְבָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3436-katvan",
+ "gender": "masculine"
+ }
+ ],
+ "כתבן־": [
+ {
+ "word_nikkud": "כַּתְבָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3436-katvan",
+ "gender": "masculine"
+ }
+ ],
+ "כתבני־": [
+ {
+ "word_nikkud": "כַּתְבָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3436-katvan",
+ "gender": "masculine"
+ }
+ ],
+ "תכתיב": [
+ {
+ "word_nikkud": "תַּכְתִּיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3609-tachtiv",
+ "gender": "masculine"
+ }
+ ],
+ "תכתיבים": [
+ {
+ "word_nikkud": "תַּכְתִּיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3609-tachtiv",
+ "gender": "masculine"
+ }
+ ],
+ "תכתיב־": [
+ {
+ "word_nikkud": "תַּכְתִּיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3609-tachtiv",
+ "gender": "masculine"
+ }
+ ],
+ "תכתיבי־": [
+ {
+ "word_nikkud": "תַּכְתִּיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3609-tachtiv",
+ "gender": "masculine"
+ }
+ ],
+ "כתוביות": [
+ {
+ "word_nikkud": "כְּתוּבִיּוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8825-ktuviyot",
+ "gender": "feminine"
+ }
+ ],
+ "כתוביות־": [
+ {
+ "word_nikkud": "כְּתוּבִיּוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8825-ktuviyot",
+ "gender": "feminine"
+ }
+ ],
+ "כתיב": [
+ {
+ "word_nikkud": "כְּתִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6194-ktiv",
+ "gender": "masculine"
+ }
+ ],
+ "כתיבים": [
+ {
+ "word_nikkud": "כְּתִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6194-ktiv",
+ "gender": "masculine"
+ }
+ ],
+ "כתיב־": [
+ {
+ "word_nikkud": "כְּתִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6194-ktiv",
+ "gender": "masculine"
+ }
+ ],
+ "כתיבי־": [
+ {
+ "word_nikkud": "כְּתִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6194-ktiv",
+ "gender": "masculine"
+ }
+ ],
+ "כותל": [
+ {
+ "word_nikkud": "כֹּתֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5899-kotel",
+ "gender": "masculine"
+ }
+ ],
+ "כתלים": [
+ {
+ "word_nikkud": "כֹּתֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5899-kotel",
+ "gender": "masculine"
+ }
+ ],
+ "כותל־": [
+ {
+ "word_nikkud": "כֹּתֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5899-kotel",
+ "gender": "masculine"
+ }
+ ],
+ "כתלי־": [
+ {
+ "word_nikkud": "כֹּתֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5899-kotel",
+ "gender": "masculine"
+ }
+ ],
+ "כתם": [
+ {
+ "word_nikkud": "כֶּתֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3116-ketem",
+ "gender": "masculine"
+ }
+ ],
+ "כתמים": [
+ {
+ "word_nikkud": "כֶּתֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3116-ketem",
+ "gender": "masculine"
+ }
+ ],
+ "כתם־": [
+ {
+ "word_nikkud": "כֶּתֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3116-ketem",
+ "gender": "masculine"
+ }
+ ],
+ "כתמי־": [
+ {
+ "word_nikkud": "כֶּתֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3116-ketem",
+ "gender": "masculine"
+ }
+ ],
+ "מכתם": [
+ {
+ "word_nikkud": "מִכְתָּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7520-michtam",
+ "gender": "masculine"
+ }
+ ],
+ "מכתמים": [
+ {
+ "word_nikkud": "מִכְתָּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7520-michtam",
+ "gender": "masculine"
+ }
+ ],
+ "מכתם־": [
+ {
+ "word_nikkud": "מִכְתָּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7520-michtam",
+ "gender": "masculine"
+ }
+ ],
+ "מכתמי־": [
+ {
+ "word_nikkud": "מִכְתָּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7520-michtam",
+ "gender": "masculine"
+ }
+ ],
+ "כותנה": [
+ {
+ "word_nikkud": "כֻּתְנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7311-kutna",
+ "gender": "feminine"
+ }
+ ],
+ "כותנות": [
+ {
+ "word_nikkud": "כֻּתְנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7311-kutna",
+ "gender": "feminine"
+ }
+ ],
+ "כותנת־": [
+ {
+ "word_nikkud": "כֻּתְנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7311-kutna",
+ "gender": "feminine"
+ }
+ ],
+ "כותנות־": [
+ {
+ "word_nikkud": "כֻּתְנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7311-kutna",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "כֻּתֹּנֶת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6453-kutonet",
+ "gender": "feminine"
+ }
+ ],
+ "כותונת": [
+ {
+ "word_nikkud": "כֻּתֹּנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6453-kutonet",
+ "gender": "feminine"
+ }
+ ],
+ "כתונת": [
+ {
+ "word_nikkud": "כֻּתֹּנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6453-kutonet",
+ "gender": "feminine"
+ }
+ ],
+ "כותונות": [
+ {
+ "word_nikkud": "כֻּתֹּנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6453-kutonet",
+ "gender": "feminine"
+ }
+ ],
+ "כתונת־": [
+ {
+ "word_nikkud": "כֻּתֹּנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6453-kutonet",
+ "gender": "feminine"
+ }
+ ],
+ "כתף": [
+ {
+ "word_nikkud": "כָּתֵף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3134-katef",
+ "gender": "feminine"
+ }
+ ],
+ "כתפיים": [
+ {
+ "word_nikkud": "כָּתֵף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3134-katef",
+ "gender": "feminine"
+ }
+ ],
+ "כתף־": [
+ {
+ "word_nikkud": "כָּתֵף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3134-katef",
+ "gender": "feminine"
+ }
+ ],
+ "כתפי־": [
+ {
+ "word_nikkud": "כָּתֵף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3134-katef",
+ "gender": "feminine"
+ }
+ ],
+ "כתר": [
+ {
+ "word_nikkud": "כֶּתֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6482-keter",
+ "gender": "masculine"
+ }
+ ],
+ "כתרים": [
+ {
+ "word_nikkud": "כֶּתֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6482-keter",
+ "gender": "masculine"
+ }
+ ],
+ "כתר־": [
+ {
+ "word_nikkud": "כֶּתֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6482-keter",
+ "gender": "masculine"
+ }
+ ],
+ "כתרי־": [
+ {
+ "word_nikkud": "כֶּתֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6482-keter",
+ "gender": "masculine"
+ }
+ ],
+ "כותרת": [
+ {
+ "word_nikkud": "כּוֹתֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9201-koteret",
+ "gender": "feminine"
+ }
+ ],
+ "כותרות": [
+ {
+ "word_nikkud": "כּוֹתֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9201-koteret",
+ "gender": "feminine"
+ }
+ ],
+ "כותרת־": [
+ {
+ "word_nikkud": "כּוֹתֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9201-koteret",
+ "gender": "feminine"
+ }
+ ],
+ "כותרות־": [
+ {
+ "word_nikkud": "כּוֹתֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9201-koteret",
+ "gender": "feminine"
+ }
+ ],
+ "מכתש": [
+ {
+ "word_nikkud": "מַכְתֵּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3506-machtesh",
+ "gender": "masculine"
+ }
+ ],
+ "מכתשים": [
+ {
+ "word_nikkud": "מַכְתֵּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3506-machtesh",
+ "gender": "masculine"
+ }
+ ],
+ "מכתש־": [
+ {
+ "word_nikkud": "מַכְתֵּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3506-machtesh",
+ "gender": "masculine"
+ }
+ ],
+ "מכתשי־": [
+ {
+ "word_nikkud": "מַכְתֵּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3506-machtesh",
+ "gender": "masculine"
+ }
+ ],
+ "כתישה": [
+ {
+ "word_nikkud": "כְּתִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7551-ktisha",
+ "gender": "feminine"
+ }
+ ],
+ "כתישות": [
+ {
+ "word_nikkud": "כְּתִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7551-ktisha",
+ "gender": "feminine"
+ }
+ ],
+ "כתישת־": [
+ {
+ "word_nikkud": "כְּתִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7551-ktisha",
+ "gender": "feminine"
+ }
+ ],
+ "כתישות־": [
+ {
+ "word_nikkud": "כְּתִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7551-ktisha",
+ "gender": "feminine"
+ }
+ ],
+ "כת": [
+ {
+ "word_nikkud": "כַּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7547-kat",
+ "gender": "masculine"
+ }
+ ],
+ "כיתות": [
+ {
+ "word_nikkud": "כַּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7547-kat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כִּתָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5793-kita",
+ "gender": "feminine"
+ }
+ ],
+ "כת־": [
+ {
+ "word_nikkud": "כַּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7547-kat",
+ "gender": "masculine"
+ }
+ ],
+ "כיתות־": [
+ {
+ "word_nikkud": "כַּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7547-kat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "כִּתָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5793-kita",
+ "gender": "feminine"
+ }
+ ],
+ "כיתה": [
+ {
+ "word_nikkud": "כִּתָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5793-kita",
+ "gender": "feminine"
+ }
+ ],
+ "כיתת־": [
+ {
+ "word_nikkud": "כִּתָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5793-kita",
+ "gender": "feminine"
+ }
+ ],
+ "מלאך": [
+ {
+ "word_nikkud": "מַלְאָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5331-malach",
+ "gender": "masculine"
+ }
+ ],
+ "מלאכים": [
+ {
+ "word_nikkud": "מַלְאָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5331-malach",
+ "gender": "masculine"
+ }
+ ],
+ "מלאך־": [
+ {
+ "word_nikkud": "מַלְאָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5331-malach",
+ "gender": "masculine"
+ }
+ ],
+ "מלאכי־": [
+ {
+ "word_nikkud": "מַלְאָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5331-malach",
+ "gender": "masculine"
+ }
+ ],
+ "לאום": [
+ {
+ "word_nikkud": "לְאֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6770-leom",
+ "gender": ""
+ }
+ ],
+ "לאומים": [
+ {
+ "word_nikkud": "לְאֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6770-leom",
+ "gender": ""
+ }
+ ],
+ "לאום־": [
+ {
+ "word_nikkud": "לְאֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6770-leom",
+ "gender": ""
+ }
+ ],
+ "לאומי־": [
+ {
+ "word_nikkud": "לְאֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6770-leom",
+ "gender": ""
+ }
+ ],
+ "לב": [
+ {
+ "word_nikkud": "לֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4353-lev",
+ "gender": "masculine"
+ }
+ ],
+ "לבב": [
+ {
+ "word_nikkud": "לֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4353-lev",
+ "gender": "masculine"
+ }
+ ],
+ "לבבות": [
+ {
+ "word_nikkud": "לֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4353-lev",
+ "gender": "masculine"
+ }
+ ],
+ "לב־": [
+ {
+ "word_nikkud": "לֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4353-lev",
+ "gender": "masculine"
+ }
+ ],
+ "לבב־": [
+ {
+ "word_nikkud": "לֵב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4353-lev",
+ "gender": "masculine"
+ }
+ ],
+ "ליבות־": [
+ {
+ "word_nikkud": "לֵב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4353-lev",
+ "gender": "masculine"
+ }
+ ],
+ "לביד": [
+ {
+ "word_nikkud": "לָבִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6707-lavid",
+ "gender": "masculine"
+ }
+ ],
+ "לבידים": [
+ {
+ "word_nikkud": "לָבִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6707-lavid",
+ "gender": "masculine"
+ }
+ ],
+ "לביד־": [
+ {
+ "word_nikkud": "לָבִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6707-lavid",
+ "gender": "masculine"
+ }
+ ],
+ "לבידי־": [
+ {
+ "word_nikkud": "לָבִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6707-lavid",
+ "gender": "masculine"
+ }
+ ],
+ "התלבטות": [
+ {
+ "word_nikkud": "הִתְלַבְּטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3017-hitlabtut",
+ "gender": "feminine"
+ }
+ ],
+ "התלבטות־": [
+ {
+ "word_nikkud": "הִתְלַבְּטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3017-hitlabtut",
+ "gender": "feminine"
+ }
+ ],
+ "לביא": [
+ {
+ "word_nikkud": "לָבִיא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8714-lavi",
+ "gender": ""
+ }
+ ],
+ "לביאים": [
+ {
+ "word_nikkud": "לָבִיא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8714-lavi",
+ "gender": ""
+ }
+ ],
+ "לבאים": [
+ {
+ "word_nikkud": "לָבִיא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8714-lavi",
+ "gender": ""
+ }
+ ],
+ "לביא־": [
+ {
+ "word_nikkud": "לָבִיא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8714-lavi",
+ "gender": ""
+ }
+ ],
+ "לביאי־": [
+ {
+ "word_nikkud": "לָבִיא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8714-lavi",
+ "gender": ""
+ }
+ ],
+ "לבאי־": [
+ {
+ "word_nikkud": "לָבִיא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8714-lavi",
+ "gender": ""
+ }
+ ],
+ "לבלוב": [
+ {
+ "word_nikkud": "לִבְלוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9084-livluv",
+ "gender": "masculine"
+ }
+ ],
+ "לבלוב־": [
+ {
+ "word_nikkud": "לִבְלוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9084-livluv",
+ "gender": "masculine"
+ }
+ ],
+ "מלבן": [
+ {
+ "word_nikkud": "מַלְבֵּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5485-malben",
+ "gender": "masculine"
+ }
+ ],
+ "מלבנים": [
+ {
+ "word_nikkud": "מַלְבֵּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5485-malben",
+ "gender": "masculine"
+ }
+ ],
+ "מלבן־": [
+ {
+ "word_nikkud": "מַלְבֵּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5485-malben",
+ "gender": "masculine"
+ }
+ ],
+ "מלבני־": [
+ {
+ "word_nikkud": "מַלְבֵּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5485-malben",
+ "gender": "masculine"
+ }
+ ],
+ "לבנה": [
+ {
+ "word_nikkud": "לְבֵנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4057-levena",
+ "gender": "feminine"
+ }
+ ],
+ "לבנים": [
+ {
+ "word_nikkud": "לְבֵנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4057-levena",
+ "gender": "feminine"
+ }
+ ],
+ "לבנת־": [
+ {
+ "word_nikkud": "לְבֵנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4057-levena",
+ "gender": "feminine"
+ }
+ ],
+ "לבנות־": [
+ {
+ "word_nikkud": "לְבֵנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4057-levena",
+ "gender": "feminine"
+ }
+ ],
+ "לבני־": [
+ {
+ "word_nikkud": "לְבֵנָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4057-levena",
+ "gender": "feminine"
+ }
+ ],
+ "לובן": [
+ {
+ "word_nikkud": "לֹבֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5048-loven",
+ "gender": "masculine"
+ }
+ ],
+ "לובן־": [
+ {
+ "word_nikkud": "לֹבֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5048-loven",
+ "gender": "masculine"
+ }
+ ],
+ "תלבושת": [
+ {
+ "word_nikkud": "תִּלְבֹּשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3251-tilboshet",
+ "gender": "feminine"
+ }
+ ],
+ "תלבושות": [
+ {
+ "word_nikkud": "תִּלְבֹּשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3251-tilboshet",
+ "gender": "feminine"
+ }
+ ],
+ "תלבושת־": [
+ {
+ "word_nikkud": "תִּלְבֹּשֶׁת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3251-tilboshet",
+ "gender": "feminine"
+ }
+ ],
+ "תלבושות־": [
+ {
+ "word_nikkud": "תִּלְבֹּשֶׁת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3251-tilboshet",
+ "gender": "feminine"
+ }
+ ],
+ "הלבשה": [
+ {
+ "word_nikkud": "הַלְבָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2885-halbasha",
+ "gender": "feminine"
+ }
+ ],
+ "הלבשות": [
+ {
+ "word_nikkud": "הַלְבָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2885-halbasha",
+ "gender": "feminine"
+ }
+ ],
+ "הלבשת־": [
+ {
+ "word_nikkud": "הַלְבָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2885-halbasha",
+ "gender": "feminine"
+ }
+ ],
+ "הלבשות־": [
+ {
+ "word_nikkud": "הַלְבָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2885-halbasha",
+ "gender": "feminine"
+ }
+ ],
+ "לבוש": [
+ {
+ "word_nikkud": "לְבוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3530-levush",
+ "gender": "masculine"
+ }
+ ],
+ "לבושים": [
+ {
+ "word_nikkud": "לְבוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3530-levush",
+ "gender": "masculine"
+ }
+ ],
+ "לבוש־": [
+ {
+ "word_nikkud": "לְבוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3530-levush",
+ "gender": "masculine"
+ }
+ ],
+ "לבושי־": [
+ {
+ "word_nikkud": "לְבוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3530-levush",
+ "gender": "masculine"
+ }
+ ],
+ "מלגז": [
+ {
+ "word_nikkud": "מַלְגֵּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6662-malgez",
+ "gender": "masculine"
+ }
+ ],
+ "מלגזים": [
+ {
+ "word_nikkud": "מַלְגֵּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6662-malgez",
+ "gender": "masculine"
+ }
+ ],
+ "מלגז־": [
+ {
+ "word_nikkud": "מַלְגֵּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6662-malgez",
+ "gender": "masculine"
+ }
+ ],
+ "מלגזי־": [
+ {
+ "word_nikkud": "מַלְגֵּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6662-malgez",
+ "gender": "masculine"
+ }
+ ],
+ "מלגזה": [
+ {
+ "word_nikkud": "מַלְגֵּזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6663-malgeza",
+ "gender": "feminine"
+ }
+ ],
+ "מלגזות": [
+ {
+ "word_nikkud": "מַלְגֵּזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6663-malgeza",
+ "gender": "feminine"
+ }
+ ],
+ "מלגזת־": [
+ {
+ "word_nikkud": "מַלְגֵּזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6663-malgeza",
+ "gender": "feminine"
+ }
+ ],
+ "מלגזות־": [
+ {
+ "word_nikkud": "מַלְגֵּזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6663-malgeza",
+ "gender": "feminine"
+ }
+ ],
+ "לגלוג": [
+ {
+ "word_nikkud": "לִגְלוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6939-liglug",
+ "gender": "masculine"
+ }
+ ],
+ "לגלוגים": [
+ {
+ "word_nikkud": "לִגְלוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6939-liglug",
+ "gender": "masculine"
+ }
+ ],
+ "לגלוג־": [
+ {
+ "word_nikkud": "לִגְלוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6939-liglug",
+ "gender": "masculine"
+ }
+ ],
+ "לגלוגי־": [
+ {
+ "word_nikkud": "לִגְלוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6939-liglug",
+ "gender": "masculine"
+ }
+ ],
+ "התלהבות": [
+ {
+ "word_nikkud": "הִתְלַהֲבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8004-hitlahavut",
+ "gender": "feminine"
+ }
+ ],
+ "התלהבויות": [
+ {
+ "word_nikkud": "הִתְלַהֲבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8004-hitlahavut",
+ "gender": "feminine"
+ }
+ ],
+ "התלהבות־": [
+ {
+ "word_nikkud": "הִתְלַהֲבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8004-hitlahavut",
+ "gender": "feminine"
+ }
+ ],
+ "התלהבויות־": [
+ {
+ "word_nikkud": "הִתְלַהֲבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8004-hitlahavut",
+ "gender": "feminine"
+ }
+ ],
+ "להבה": [
+ {
+ "word_nikkud": "לֶהָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4213-lehava",
+ "gender": "feminine"
+ }
+ ],
+ "להבות": [
+ {
+ "word_nikkud": "לֶהָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4213-lehava",
+ "gender": "feminine"
+ }
+ ],
+ "להבת־": [
+ {
+ "word_nikkud": "לֶהָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4213-lehava",
+ "gender": "feminine"
+ }
+ ],
+ "להבות־": [
+ {
+ "word_nikkud": "לֶהָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4213-lehava",
+ "gender": "feminine"
+ }
+ ],
+ "להט": [
+ {
+ "word_nikkud": "לַהַט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5035-lahat",
+ "gender": "masculine"
+ }
+ ],
+ "להט־": [
+ {
+ "word_nikkud": "לַהַט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5035-lahat",
+ "gender": "masculine"
+ }
+ ],
+ "להיט": [
+ {
+ "word_nikkud": "לָהִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6863-lahit",
+ "gender": "masculine"
+ }
+ ],
+ "להיטים": [
+ {
+ "word_nikkud": "לָהִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6863-lahit",
+ "gender": "masculine"
+ }
+ ],
+ "להיט־": [
+ {
+ "word_nikkud": "לָהִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6863-lahit",
+ "gender": "masculine"
+ }
+ ],
+ "להיטי־": [
+ {
+ "word_nikkud": "לָהִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6863-lahit",
+ "gender": "masculine"
+ }
+ ],
+ "ליהוק": [
+ {
+ "word_nikkud": "לִהוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9050-lihuk",
+ "gender": "masculine"
+ }
+ ],
+ "ליהוקים": [
+ {
+ "word_nikkud": "לִהוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9050-lihuk",
+ "gender": "masculine"
+ }
+ ],
+ "ליהוק־": [
+ {
+ "word_nikkud": "לִהוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9050-lihuk",
+ "gender": "masculine"
+ }
+ ],
+ "ליהוקי־": [
+ {
+ "word_nikkud": "לִהוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9050-lihuk",
+ "gender": "masculine"
+ }
+ ],
+ "להקה": [
+ {
+ "word_nikkud": "לַהֲקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6183-lahaka",
+ "gender": "feminine"
+ }
+ ],
+ "להקות": [
+ {
+ "word_nikkud": "לַהֲקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6183-lahaka",
+ "gender": "feminine"
+ }
+ ],
+ "להקת־": [
+ {
+ "word_nikkud": "לַהֲקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6183-lahaka",
+ "gender": "feminine"
+ }
+ ],
+ "להקות־": [
+ {
+ "word_nikkud": "לַהֲקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6183-lahaka",
+ "gender": "feminine"
+ }
+ ],
+ "להק": [
+ {
+ "word_nikkud": "לַהַק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6184-lahak",
+ "gender": "masculine"
+ }
+ ],
+ "להקים": [
+ {
+ "word_nikkud": "לַהַק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6184-lahak",
+ "gender": "masculine"
+ }
+ ],
+ "להק־": [
+ {
+ "word_nikkud": "לַהַק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6184-lahak",
+ "gender": "masculine"
+ }
+ ],
+ "להקי־": [
+ {
+ "word_nikkud": "לַהַק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6184-lahak",
+ "gender": "masculine"
+ }
+ ],
+ "הלוואה": [
+ {
+ "word_nikkud": "הַלְוָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6335-halvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הלוואות": [
+ {
+ "word_nikkud": "הַלְוָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6335-halvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הלוואת־": [
+ {
+ "word_nikkud": "הַלְוָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6335-halvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הלוואות־": [
+ {
+ "word_nikkud": "הַלְוָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6335-halvaa",
+ "gender": "feminine"
+ }
+ ],
+ "לווייתן": [
+ {
+ "word_nikkud": "לִוְיָתָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6398-livyatan",
+ "gender": "masculine"
+ }
+ ],
+ "לווייתנים": [
+ {
+ "word_nikkud": "לִוְיָתָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6398-livyatan",
+ "gender": "masculine"
+ }
+ ],
+ "לווייתן־": [
+ {
+ "word_nikkud": "לִוְיָתָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6398-livyatan",
+ "gender": "masculine"
+ }
+ ],
+ "לווייתני־": [
+ {
+ "word_nikkud": "לִוְיָתָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6398-livyatan",
+ "gender": "masculine"
+ }
+ ],
+ "לוח": [
+ {
+ "word_nikkud": "לוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4204-luach",
+ "gender": "masculine"
+ }
+ ],
+ "לוחות": [
+ {
+ "word_nikkud": "לוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4204-luach",
+ "gender": "masculine"
+ }
+ ],
+ "לוח־": [
+ {
+ "word_nikkud": "לוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4204-luach",
+ "gender": "masculine"
+ }
+ ],
+ "לוחות־": [
+ {
+ "word_nikkud": "לוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4204-luach",
+ "gender": "masculine"
+ }
+ ],
+ "לוחית": [
+ {
+ "word_nikkud": "לוּחִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6633-luchit",
+ "gender": "feminine"
+ }
+ ],
+ "לוחיות": [
+ {
+ "word_nikkud": "לוּחִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6633-luchit",
+ "gender": "feminine"
+ }
+ ],
+ "לוחית־": [
+ {
+ "word_nikkud": "לוּחִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6633-luchit",
+ "gender": "feminine"
+ }
+ ],
+ "לוחיות־": [
+ {
+ "word_nikkud": "לוּחִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6633-luchit",
+ "gender": "feminine"
+ }
+ ],
+ "הלוויה": [
+ {
+ "word_nikkud": "הַלְוָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7991-halvaya",
+ "gender": "feminine"
+ }
+ ],
+ "הלוויות": [
+ {
+ "word_nikkud": "הַלְוָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7991-halvaya",
+ "gender": "feminine"
+ }
+ ],
+ "הלוויית־": [
+ {
+ "word_nikkud": "הַלְוָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7991-halvaya",
+ "gender": "feminine"
+ }
+ ],
+ "הלוויות־": [
+ {
+ "word_nikkud": "הַלְוָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7991-halvaya",
+ "gender": "feminine"
+ }
+ ],
+ "לוויין": [
+ {
+ "word_nikkud": "לַוְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3437-lavyan",
+ "gender": "masculine"
+ }
+ ],
+ "לוויינים": [
+ {
+ "word_nikkud": "לַוְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3437-lavyan",
+ "gender": "masculine"
+ }
+ ],
+ "לוויין־": [
+ {
+ "word_nikkud": "לַוְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3437-lavyan",
+ "gender": "masculine"
+ }
+ ],
+ "לווייני־": [
+ {
+ "word_nikkud": "לַוְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3437-lavyan",
+ "gender": "masculine"
+ }
+ ],
+ "ליווי": [
+ {
+ "word_nikkud": "לִוּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2973-livuy",
+ "gender": "masculine"
+ }
+ ],
+ "ליווי־": [
+ {
+ "word_nikkud": "לִוּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2973-livuy",
+ "gender": "masculine"
+ }
+ ],
+ "לוואי": [
+ {
+ "word_nikkud": "לְוַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9082-levay",
+ "gender": "masculine"
+ }
+ ],
+ "לוואים": [
+ {
+ "word_nikkud": "לְוַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9082-levay",
+ "gender": "masculine"
+ }
+ ],
+ "לוואי־": [
+ {
+ "word_nikkud": "לְוַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9082-levay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "לְוַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9082-levay",
+ "gender": "masculine"
+ }
+ ],
+ "לול": [
+ {
+ "word_nikkud": "לוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8982-lul",
+ "gender": ""
+ }
+ ],
+ "לולים": [
+ {
+ "word_nikkud": "לוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8982-lul",
+ "gender": ""
+ }
+ ],
+ "לול־": [
+ {
+ "word_nikkud": "לוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8982-lul",
+ "gender": ""
+ }
+ ],
+ "לולי־": [
+ {
+ "word_nikkud": "לוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8982-lul",
+ "gender": ""
+ }
+ ],
+ "לולאה": [
+ {
+ "word_nikkud": "לוּלָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6429-lulaa",
+ "gender": ""
+ }
+ ],
+ "לולאות": [
+ {
+ "word_nikkud": "לוּלָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6429-lulaa",
+ "gender": ""
+ }
+ ],
+ "לולאת־": [
+ {
+ "word_nikkud": "לוּלָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6429-lulaa",
+ "gender": ""
+ }
+ ],
+ "לולאות־": [
+ {
+ "word_nikkud": "לוּלָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6429-lulaa",
+ "gender": ""
+ }
+ ],
+ "לולב": [
+ {
+ "word_nikkud": "לוּלָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4922-lulav",
+ "gender": "masculine"
+ }
+ ],
+ "לולבים": [
+ {
+ "word_nikkud": "לוּלָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4922-lulav",
+ "gender": "masculine"
+ }
+ ],
+ "לולב־": [
+ {
+ "word_nikkud": "לוּלָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4922-lulav",
+ "gender": "masculine"
+ }
+ ],
+ "לולבי־": [
+ {
+ "word_nikkud": "לוּלָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4922-lulav",
+ "gender": "masculine"
+ }
+ ],
+ "מילון": [
+ {
+ "word_nikkud": "מִלּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4857-milon",
+ "gender": "masculine"
+ }
+ ],
+ "מילונים": [
+ {
+ "word_nikkud": "מִלּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4857-milon",
+ "gender": "masculine"
+ }
+ ],
+ "מילון־": [
+ {
+ "word_nikkud": "מִלּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4857-milon",
+ "gender": "masculine"
+ }
+ ],
+ "מילוני־": [
+ {
+ "word_nikkud": "מִלּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4857-milon",
+ "gender": "masculine"
+ }
+ ],
+ "תלונה": [
+ {
+ "word_nikkud": "תְּלוּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3740-tluna",
+ "gender": "feminine"
+ }
+ ],
+ "תלונות": [
+ {
+ "word_nikkud": "תְּלוּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3740-tluna",
+ "gender": "feminine"
+ }
+ ],
+ "תלונת־": [
+ {
+ "word_nikkud": "תְּלוּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3740-tluna",
+ "gender": "feminine"
+ }
+ ],
+ "תלונות־": [
+ {
+ "word_nikkud": "תְּלוּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3740-tluna",
+ "gender": "feminine"
+ }
+ ],
+ "מלונה": [
+ {
+ "word_nikkud": "מְלוּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3749-meluna",
+ "gender": "feminine"
+ }
+ ],
+ "מלונות": [
+ {
+ "word_nikkud": "מְלוּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3749-meluna",
+ "gender": "feminine"
+ }
+ ],
+ "מלונת־": [
+ {
+ "word_nikkud": "מְלוּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3749-meluna",
+ "gender": "feminine"
+ }
+ ],
+ "מלונות־": [
+ {
+ "word_nikkud": "מְלוּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3749-meluna",
+ "gender": "feminine"
+ }
+ ],
+ "לינה": [
+ {
+ "word_nikkud": "לִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8349-lina",
+ "gender": "feminine"
+ }
+ ],
+ "לינות": [
+ {
+ "word_nikkud": "לִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8349-lina",
+ "gender": "feminine"
+ }
+ ],
+ "לינת־": [
+ {
+ "word_nikkud": "לִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8349-lina",
+ "gender": "feminine"
+ }
+ ],
+ "לינות־": [
+ {
+ "word_nikkud": "לִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8349-lina",
+ "gender": "feminine"
+ }
+ ],
+ "לחי": [
+ {
+ "word_nikkud": "לֶחִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4487-lechi",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "לֶחִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4487-lechi",
+ "gender": "feminine"
+ }
+ ],
+ "לחיים": [
+ {
+ "word_nikkud": "לֶחִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4487-lechi",
+ "gender": "feminine"
+ }
+ ],
+ "לחי־": [
+ {
+ "word_nikkud": "לֶחִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4487-lechi",
+ "gender": "feminine"
+ }
+ ],
+ "לחיי־": [
+ {
+ "word_nikkud": "לֶחִי",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4487-lechi",
+ "gender": "feminine"
+ }
+ ],
+ "לחימה": [
+ {
+ "word_nikkud": "לְחִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3037-lechima",
+ "gender": "feminine"
+ }
+ ],
+ "לחימת־": [
+ {
+ "word_nikkud": "לְחִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3037-lechima",
+ "gender": "feminine"
+ }
+ ],
+ "לחם": [
+ {
+ "word_nikkud": "לֶחֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3038-lechem",
+ "gender": "masculine"
+ }
+ ],
+ "לחם־": [
+ {
+ "word_nikkud": "לֶחֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3038-lechem",
+ "gender": "masculine"
+ }
+ ],
+ "מלחם": [
+ {
+ "word_nikkud": "מַלְחֵם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3507-malchem",
+ "gender": "masculine"
+ }
+ ],
+ "מלחמים": [
+ {
+ "word_nikkud": "מַלְחֵם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3507-malchem",
+ "gender": "masculine"
+ }
+ ],
+ "מלחם־": [
+ {
+ "word_nikkud": "מַלְחֵם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3507-malchem",
+ "gender": "masculine"
+ }
+ ],
+ "מלחמי־": [
+ {
+ "word_nikkud": "מַלְחֵם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3507-malchem",
+ "gender": "masculine"
+ }
+ ],
+ "מלחמה": [
+ {
+ "word_nikkud": "מִלְחָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3704-milchama",
+ "gender": "feminine"
+ }
+ ],
+ "מלחמות": [
+ {
+ "word_nikkud": "מִלְחָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3704-milchama",
+ "gender": "feminine"
+ }
+ ],
+ "מלחמת־": [
+ {
+ "word_nikkud": "מִלְחָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3704-milchama",
+ "gender": "feminine"
+ }
+ ],
+ "מלחמות־": [
+ {
+ "word_nikkud": "מִלְחָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3704-milchama",
+ "gender": "feminine"
+ }
+ ],
+ "לוחמה": [
+ {
+ "word_nikkud": "לָחְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8145-lochma",
+ "gender": "feminine"
+ }
+ ],
+ "לוחמות": [
+ {
+ "word_nikkud": "לָחְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8145-lochma",
+ "gender": "feminine"
+ }
+ ],
+ "לוחמת־": [
+ {
+ "word_nikkud": "לָחְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8145-lochma",
+ "gender": "feminine"
+ }
+ ],
+ "לוחמות־": [
+ {
+ "word_nikkud": "לָחְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8145-lochma",
+ "gender": "feminine"
+ }
+ ],
+ "לחמניה": [
+ {
+ "word_nikkud": "לַחְמָנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8900-lachmaniya",
+ "gender": ""
+ }
+ ],
+ "לחמניות": [
+ {
+ "word_nikkud": "לַחְמָנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8900-lachmaniya",
+ "gender": ""
+ }
+ ],
+ "לחמניית־": [
+ {
+ "word_nikkud": "לַחְמָנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8900-lachmaniya",
+ "gender": ""
+ }
+ ],
+ "לחמניות־": [
+ {
+ "word_nikkud": "לַחְמָנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8900-lachmaniya",
+ "gender": ""
+ }
+ ],
+ "לוחם": [
+ {
+ "word_nikkud": "לוֹחֵם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9083-lochem",
+ "gender": "masculine"
+ }
+ ],
+ "לוחמים": [
+ {
+ "word_nikkud": "לוֹחֵם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9083-lochem",
+ "gender": "masculine"
+ }
+ ],
+ "לוחם־": [
+ {
+ "word_nikkud": "לוֹחֵם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9083-lochem",
+ "gender": "masculine"
+ }
+ ],
+ "לוחמי־": [
+ {
+ "word_nikkud": "לוֹחֵם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9083-lochem",
+ "gender": "masculine"
+ }
+ ],
+ "לחן": [
+ {
+ "word_nikkud": "לַחַן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3414-lachan",
+ "gender": "masculine"
+ }
+ ],
+ "לחנים": [
+ {
+ "word_nikkud": "לַחַן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3414-lachan",
+ "gender": "masculine"
+ }
+ ],
+ "לחן־": [
+ {
+ "word_nikkud": "לַחַן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3414-lachan",
+ "gender": "masculine"
+ }
+ ],
+ "לחני־": [
+ {
+ "word_nikkud": "לַחַן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3414-lachan",
+ "gender": "masculine"
+ }
+ ],
+ "לחיצה": [
+ {
+ "word_nikkud": "לְחִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2823-lechitza",
+ "gender": "feminine"
+ }
+ ],
+ "לחיצות": [
+ {
+ "word_nikkud": "לְחִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2823-lechitza",
+ "gender": "feminine"
+ }
+ ],
+ "לחיצת־": [
+ {
+ "word_nikkud": "לְחִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2823-lechitza",
+ "gender": "feminine"
+ }
+ ],
+ "לחיצות־": [
+ {
+ "word_nikkud": "לְחִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2823-lechitza",
+ "gender": "feminine"
+ }
+ ],
+ "לחץ": [
+ {
+ "word_nikkud": "לַחַץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2824-lachatz",
+ "gender": "masculine"
+ }
+ ],
+ "לחצים": [
+ {
+ "word_nikkud": "לַחַץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2824-lachatz",
+ "gender": "masculine"
+ }
+ ],
+ "לחץ־": [
+ {
+ "word_nikkud": "לַחַץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2824-lachatz",
+ "gender": "masculine"
+ }
+ ],
+ "לחצי־": [
+ {
+ "word_nikkud": "לַחַץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2824-lachatz",
+ "gender": "masculine"
+ }
+ ],
+ "לחש": [
+ {
+ "word_nikkud": "לַחַשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9284-lachash",
+ "gender": "masculine"
+ }
+ ],
+ "לחשים": [
+ {
+ "word_nikkud": "לַחַשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9284-lachash",
+ "gender": "masculine"
+ }
+ ],
+ "לחש־": [
+ {
+ "word_nikkud": "לַחַשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9284-lachash",
+ "gender": "masculine"
+ }
+ ],
+ "לחשי־": [
+ {
+ "word_nikkud": "לַחַשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9284-lachash",
+ "gender": "masculine"
+ }
+ ],
+ "לטאה": [
+ {
+ "word_nikkud": "לְטָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7459-letaa",
+ "gender": "feminine"
+ }
+ ],
+ "לטאות": [
+ {
+ "word_nikkud": "לְטָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7459-letaa",
+ "gender": "feminine"
+ }
+ ],
+ "לטאת־": [
+ {
+ "word_nikkud": "לְטָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7459-letaa",
+ "gender": "feminine"
+ }
+ ],
+ "לטאות־": [
+ {
+ "word_nikkud": "לְטָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7459-letaa",
+ "gender": "feminine"
+ }
+ ],
+ "ליטוש": [
+ {
+ "word_nikkud": "לִטּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6713-litush",
+ "gender": "masculine"
+ }
+ ],
+ "ליטושים": [
+ {
+ "word_nikkud": "לִטּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6713-litush",
+ "gender": "masculine"
+ }
+ ],
+ "ליטוש־": [
+ {
+ "word_nikkud": "לִטּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6713-litush",
+ "gender": "masculine"
+ }
+ ],
+ "ליטושי־": [
+ {
+ "word_nikkud": "לִטּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6713-litush",
+ "gender": "masculine"
+ }
+ ],
+ "לילה": [
+ {
+ "word_nikkud": "לַיְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4234-layla",
+ "gender": "masculine"
+ }
+ ],
+ "ליל": [
+ {
+ "word_nikkud": "לַיְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4234-layla",
+ "gender": "masculine"
+ }
+ ],
+ "לילות": [
+ {
+ "word_nikkud": "לַיְלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4234-layla",
+ "gender": "masculine"
+ }
+ ],
+ "ליל־": [
+ {
+ "word_nikkud": "לַיְלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4234-layla",
+ "gender": "masculine"
+ }
+ ],
+ "לילות־": [
+ {
+ "word_nikkud": "לַיְלָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4234-layla",
+ "gender": "masculine"
+ }
+ ],
+ "לילך": [
+ {
+ "word_nikkud": "לִילָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5461-lilach",
+ "gender": "masculine"
+ }
+ ],
+ "לילכים": [
+ {
+ "word_nikkud": "לִילָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5461-lilach",
+ "gender": "masculine"
+ }
+ ],
+ "לילך־": [
+ {
+ "word_nikkud": "לִילָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5461-lilach",
+ "gender": "masculine"
+ }
+ ],
+ "לילכי־": [
+ {
+ "word_nikkud": "לִילָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5461-lilach",
+ "gender": "masculine"
+ }
+ ],
+ "לימון": [
+ {
+ "word_nikkud": "לִימוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7060-limon",
+ "gender": ""
+ }
+ ],
+ "לימונים": [
+ {
+ "word_nikkud": "לִימוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7060-limon",
+ "gender": ""
+ }
+ ],
+ "לימון־": [
+ {
+ "word_nikkud": "לִימוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7060-limon",
+ "gender": ""
+ }
+ ],
+ "לימוני־": [
+ {
+ "word_nikkud": "לִימוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7060-limon",
+ "gender": ""
+ }
+ ],
+ "מליץ": [
+ {
+ "word_nikkud": "מֵלִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4051-melitz",
+ "gender": "masculine"
+ }
+ ],
+ "מליצים": [
+ {
+ "word_nikkud": "מֵלִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4051-melitz",
+ "gender": "masculine"
+ }
+ ],
+ "מליץ־": [
+ {
+ "word_nikkud": "מֵלִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4051-melitz",
+ "gender": "masculine"
+ }
+ ],
+ "מליצי־": [
+ {
+ "word_nikkud": "מֵלִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4051-melitz",
+ "gender": "masculine"
+ }
+ ],
+ "הלצה": [
+ {
+ "word_nikkud": "הֲלָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9102-halatza",
+ "gender": "feminine"
+ }
+ ],
+ "הלצות": [
+ {
+ "word_nikkud": "הֲלָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9102-halatza",
+ "gender": "feminine"
+ }
+ ],
+ "הלצת־": [
+ {
+ "word_nikkud": "הֲלָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9102-halatza",
+ "gender": "feminine"
+ }
+ ],
+ "הלצות־": [
+ {
+ "word_nikkud": "הֲלָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9102-halatza",
+ "gender": "feminine"
+ }
+ ],
+ "ליצן": [
+ {
+ "word_nikkud": "לֵיצָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8922-letzan",
+ "gender": ""
+ }
+ ],
+ "ליצנים": [
+ {
+ "word_nikkud": "לֵיצָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8922-letzan",
+ "gender": ""
+ }
+ ],
+ "ליצן־": [
+ {
+ "word_nikkud": "לֵיצָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8922-letzan",
+ "gender": ""
+ }
+ ],
+ "ליצני־": [
+ {
+ "word_nikkud": "לֵיצָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8922-letzan",
+ "gender": ""
+ }
+ ],
+ "ליכוד": [
+ {
+ "word_nikkud": "לִכּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4423-likud",
+ "gender": "masculine"
+ }
+ ],
+ "ליכודים": [
+ {
+ "word_nikkud": "לִכּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4423-likud",
+ "gender": "masculine"
+ }
+ ],
+ "ליכוד־": [
+ {
+ "word_nikkud": "לִכּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4423-likud",
+ "gender": "masculine"
+ }
+ ],
+ "ליכודי־": [
+ {
+ "word_nikkud": "לִכּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4423-likud",
+ "gender": "masculine"
+ }
+ ],
+ "מלכודת": [
+ {
+ "word_nikkud": "מַלְכֹּדֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5432-malkodet",
+ "gender": "feminine"
+ }
+ ],
+ "מלכודות": [
+ {
+ "word_nikkud": "מַלְכֹּדֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5432-malkodet",
+ "gender": "feminine"
+ }
+ ],
+ "מלכודת־": [
+ {
+ "word_nikkud": "מַלְכֹּדֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5432-malkodet",
+ "gender": "feminine"
+ }
+ ],
+ "מלכודות־": [
+ {
+ "word_nikkud": "מַלְכֹּדֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5432-malkodet",
+ "gender": "feminine"
+ }
+ ],
+ "לכלוך": [
+ {
+ "word_nikkud": "לִכְלוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6776-lichluch",
+ "gender": "masculine"
+ }
+ ],
+ "לכלוכים": [
+ {
+ "word_nikkud": "לִכְלוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6776-lichluch",
+ "gender": "masculine"
+ }
+ ],
+ "לכלוך־": [
+ {
+ "word_nikkud": "לִכְלוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6776-lichluch",
+ "gender": "masculine"
+ }
+ ],
+ "לכלוכי־": [
+ {
+ "word_nikkud": "לִכְלוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6776-lichluch",
+ "gender": "masculine"
+ }
+ ],
+ "לכסון": [
+ {
+ "word_nikkud": "לִכְסוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4186-lichsun",
+ "gender": "masculine"
+ }
+ ],
+ "לכסונים": [
+ {
+ "word_nikkud": "לִכְסוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4186-lichsun",
+ "gender": "masculine"
+ }
+ ],
+ "לכסון־": [
+ {
+ "word_nikkud": "לִכְסוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4186-lichsun",
+ "gender": "masculine"
+ }
+ ],
+ "לכסוני־": [
+ {
+ "word_nikkud": "לִכְסוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4186-lichsun",
+ "gender": "masculine"
+ }
+ ],
+ "תלמוד": [
+ {
+ "word_nikkud": "תַּלְמוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3623-talmud",
+ "gender": "masculine"
+ }
+ ],
+ "תלמיד": [
+ {
+ "word_nikkud": "תַּלְמִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3610-talmid",
+ "gender": "masculine"
+ }
+ ],
+ "תלמידים": [
+ {
+ "word_nikkud": "תַּלְמִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3610-talmid",
+ "gender": "masculine"
+ }
+ ],
+ "תלמיד־": [
+ {
+ "word_nikkud": "תַּלְמִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3610-talmid",
+ "gender": "masculine"
+ }
+ ],
+ "תלמידי־": [
+ {
+ "word_nikkud": "תַּלְמִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3610-talmid",
+ "gender": "masculine"
+ }
+ ],
+ "למידה": [
+ {
+ "word_nikkud": "לְמִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7789-lemida",
+ "gender": "feminine"
+ }
+ ],
+ "למידת־": [
+ {
+ "word_nikkud": "לְמִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7789-lemida",
+ "gender": "feminine"
+ }
+ ],
+ "לימוד": [
+ {
+ "word_nikkud": "לִמּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2652-limud",
+ "gender": "masculine"
+ }
+ ],
+ "לימודים": [
+ {
+ "word_nikkud": "לִמּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2652-limud",
+ "gender": "masculine"
+ }
+ ],
+ "לימוד־": [
+ {
+ "word_nikkud": "לִמּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2652-limud",
+ "gender": "masculine"
+ }
+ ],
+ "לימודי־": [
+ {
+ "word_nikkud": "לִמּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2652-limud",
+ "gender": "masculine"
+ }
+ ],
+ "למדן": [
+ {
+ "word_nikkud": "לַמְדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9024-lamdan",
+ "gender": "masculine"
+ }
+ ],
+ "למדנים": [
+ {
+ "word_nikkud": "לַמְדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9024-lamdan",
+ "gender": "masculine"
+ }
+ ],
+ "למדן־": [
+ {
+ "word_nikkud": "לַמְדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9024-lamdan",
+ "gender": "masculine"
+ }
+ ],
+ "למדני־": [
+ {
+ "word_nikkud": "לַמְדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9024-lamdan",
+ "gender": "masculine"
+ }
+ ],
+ "לסת": [
+ {
+ "word_nikkud": "לֶסֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8436-leset",
+ "gender": "feminine"
+ }
+ ],
+ "לסתות": [
+ {
+ "word_nikkud": "לֶסֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8436-leset",
+ "gender": "feminine"
+ }
+ ],
+ "לסת־": [
+ {
+ "word_nikkud": "לֶסֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8436-leset",
+ "gender": "feminine"
+ }
+ ],
+ "לסתות־": [
+ {
+ "word_nikkud": "לֶסֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8436-leset",
+ "gender": "feminine"
+ }
+ ],
+ "לעג": [
+ {
+ "word_nikkud": "לַעַג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8011-laag",
+ "gender": "masculine"
+ }
+ ],
+ "לעגים": [
+ {
+ "word_nikkud": "לַעַג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8011-laag",
+ "gender": "masculine"
+ }
+ ],
+ "לעג־": [
+ {
+ "word_nikkud": "לַעַג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8011-laag",
+ "gender": "masculine"
+ }
+ ],
+ "לעגי־": [
+ {
+ "word_nikkud": "לַעַג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8011-laag",
+ "gender": "masculine"
+ }
+ ],
+ "לועזיות": [
+ {
+ "word_nikkud": "לוֹעֲזִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6349-loaziyut",
+ "gender": "feminine"
+ }
+ ],
+ "לועזיות־": [
+ {
+ "word_nikkud": "לוֹעֲזִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6349-loaziyut",
+ "gender": "feminine"
+ }
+ ],
+ "לוע": [
+ {
+ "word_nikkud": "לֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7832-loa",
+ "gender": "masculine"
+ }
+ ],
+ "לועות": [
+ {
+ "word_nikkud": "לֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7832-loa",
+ "gender": "masculine"
+ }
+ ],
+ "לוע־": [
+ {
+ "word_nikkud": "לֹעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7832-loa",
+ "gender": "masculine"
+ }
+ ],
+ "לועות־": [
+ {
+ "word_nikkud": "לֹעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7832-loa",
+ "gender": "masculine"
+ }
+ ],
+ "לפיתה": [
+ {
+ "word_nikkud": "לְפִיתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3690-lefita",
+ "gender": "feminine"
+ }
+ ],
+ "לפיתות": [
+ {
+ "word_nikkud": "לְפִיתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3690-lefita",
+ "gender": "feminine"
+ }
+ ],
+ "לפיתת־": [
+ {
+ "word_nikkud": "לְפִיתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3690-lefita",
+ "gender": "feminine"
+ }
+ ],
+ "לפיתות־": [
+ {
+ "word_nikkud": "לְפִיתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3690-lefita",
+ "gender": "feminine"
+ }
+ ],
+ "לפת": [
+ {
+ "word_nikkud": "לֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8114-lefet",
+ "gender": "feminine"
+ }
+ ],
+ "לפתות": [
+ {
+ "word_nikkud": "לֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8114-lefet",
+ "gender": "feminine"
+ }
+ ],
+ "לפת־": [
+ {
+ "word_nikkud": "לֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8114-lefet",
+ "gender": "feminine"
+ }
+ ],
+ "לפתות־": [
+ {
+ "word_nikkud": "לֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8114-lefet",
+ "gender": "feminine"
+ }
+ ],
+ "לקוח": [
+ {
+ "word_nikkud": "לָקוֹחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5582-lakoach",
+ "gender": "masculine"
+ }
+ ],
+ "לקוחות": [
+ {
+ "word_nikkud": "לָקוֹחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5582-lakoach",
+ "gender": "masculine"
+ }
+ ],
+ "לקוח־": [
+ {
+ "word_nikkud": "לָקוֹחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5582-lakoach",
+ "gender": "masculine"
+ }
+ ],
+ "לקוחות־": [
+ {
+ "word_nikkud": "לָקוֹחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5582-lakoach",
+ "gender": "masculine"
+ }
+ ],
+ "לקח": [
+ {
+ "word_nikkud": "לֶקַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3900-lekach",
+ "gender": "masculine"
+ }
+ ],
+ "לקחים": [
+ {
+ "word_nikkud": "לֶקַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3900-lekach",
+ "gender": "masculine"
+ }
+ ],
+ "לקח־": [
+ {
+ "word_nikkud": "לֶקַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3900-lekach",
+ "gender": "masculine"
+ }
+ ],
+ "לקחי־": [
+ {
+ "word_nikkud": "לֶקַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3900-lekach",
+ "gender": "masculine"
+ }
+ ],
+ "לקיחה": [
+ {
+ "word_nikkud": "לְקִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4547-lekicha",
+ "gender": "feminine"
+ }
+ ],
+ "לקיחות": [
+ {
+ "word_nikkud": "לְקִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4547-lekicha",
+ "gender": "feminine"
+ }
+ ],
+ "לקיחת־": [
+ {
+ "word_nikkud": "לְקִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4547-lekicha",
+ "gender": "feminine"
+ }
+ ],
+ "לקיחות־": [
+ {
+ "word_nikkud": "לְקִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4547-lekicha",
+ "gender": "feminine"
+ }
+ ],
+ "מלקחיים": [
+ {
+ "word_nikkud": "מֶלְקָחַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8609-melkachayim",
+ "gender": "masculine"
+ }
+ ],
+ "מלקחי־": [
+ {
+ "word_nikkud": "מֶלְקָחַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8609-melkachayim",
+ "gender": "masculine"
+ }
+ ],
+ "מלקחת": [
+ {
+ "word_nikkud": "מֶלְקַחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8608-melkachat",
+ "gender": "feminine"
+ }
+ ],
+ "מלקחות": [
+ {
+ "word_nikkud": "מֶלְקַחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8608-melkachat",
+ "gender": "feminine"
+ }
+ ],
+ "מלקחת־": [
+ {
+ "word_nikkud": "מֶלְקַחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8608-melkachat",
+ "gender": "feminine"
+ }
+ ],
+ "מלקחות־": [
+ {
+ "word_nikkud": "מֶלְקַחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8608-melkachat",
+ "gender": "feminine"
+ }
+ ],
+ "ילקוט": [
+ {
+ "word_nikkud": "יַלְקוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5173-yalkut",
+ "gender": "masculine"
+ }
+ ],
+ "ילקוטים": [
+ {
+ "word_nikkud": "יַלְקוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5173-yalkut",
+ "gender": "masculine"
+ }
+ ],
+ "ילקוט־": [
+ {
+ "word_nikkud": "יַלְקוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5173-yalkut",
+ "gender": "masculine"
+ }
+ ],
+ "ילקוטי־": [
+ {
+ "word_nikkud": "יַלְקוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5173-yalkut",
+ "gender": "masculine"
+ }
+ ],
+ "ליקוט": [
+ {
+ "word_nikkud": "לִקּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9257-likut",
+ "gender": "masculine"
+ }
+ ],
+ "ליקוטים": [
+ {
+ "word_nikkud": "לִקּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9257-likut",
+ "gender": "masculine"
+ }
+ ],
+ "ליקוט־": [
+ {
+ "word_nikkud": "לִקּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9257-likut",
+ "gender": "masculine"
+ }
+ ],
+ "ליקוטי־": [
+ {
+ "word_nikkud": "לִקּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9257-likut",
+ "gender": "masculine"
+ }
+ ],
+ "לקט": [
+ {
+ "word_nikkud": "לֶקֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6480-leket",
+ "gender": "masculine"
+ }
+ ],
+ "לקטים": [
+ {
+ "word_nikkud": "לֶקֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6480-leket",
+ "gender": "masculine"
+ }
+ ],
+ "לקט־": [
+ {
+ "word_nikkud": "לֶקֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6480-leket",
+ "gender": "masculine"
+ }
+ ],
+ "לקטי־": [
+ {
+ "word_nikkud": "לֶקֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6480-leket",
+ "gender": "masculine"
+ }
+ ],
+ "ליקוי": [
+ {
+ "word_nikkud": "לִקּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4783-likuy",
+ "gender": "masculine"
+ }
+ ],
+ "ליקויים": [
+ {
+ "word_nikkud": "לִקּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4783-likuy",
+ "gender": "masculine"
+ }
+ ],
+ "ליקוי־": [
+ {
+ "word_nikkud": "לִקּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4783-likuy",
+ "gender": "masculine"
+ }
+ ],
+ "ליקויי־": [
+ {
+ "word_nikkud": "לִקּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4783-likuy",
+ "gender": "masculine"
+ }
+ ],
+ "לשכה": [
+ {
+ "word_nikkud": "לִשְׁכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4686-lishka",
+ "gender": "feminine"
+ }
+ ],
+ "לשכות": [
+ {
+ "word_nikkud": "לִשְׁכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4686-lishka",
+ "gender": "feminine"
+ }
+ ],
+ "לשכת־": [
+ {
+ "word_nikkud": "לִשְׁכָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4686-lishka",
+ "gender": "feminine"
+ }
+ ],
+ "לשכות־": [
+ {
+ "word_nikkud": "לִשְׁכָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4686-lishka",
+ "gender": "feminine"
+ }
+ ],
+ "הלשנה": [
+ {
+ "word_nikkud": "הַלְשָׁנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3031-halshana",
+ "gender": "feminine"
+ }
+ ],
+ "הלשנות": [
+ {
+ "word_nikkud": "הַלְשָׁנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3031-halshana",
+ "gender": "feminine"
+ }
+ ],
+ "הלשנת־": [
+ {
+ "word_nikkud": "הַלְשָׁנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3031-halshana",
+ "gender": "feminine"
+ }
+ ],
+ "הלשנות־": [
+ {
+ "word_nikkud": "הַלְשָׁנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3031-halshana",
+ "gender": "feminine"
+ }
+ ],
+ "לשון": [
+ {
+ "word_nikkud": "לָשׁוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3032-lashon",
+ "gender": "feminine"
+ }
+ ],
+ "לשונות": [
+ {
+ "word_nikkud": "לָשׁוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3032-lashon",
+ "gender": "feminine"
+ }
+ ],
+ "לשון־": [
+ {
+ "word_nikkud": "לָשׁוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3032-lashon",
+ "gender": "feminine"
+ }
+ ],
+ "לשונות־": [
+ {
+ "word_nikkud": "לָשׁוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3032-lashon",
+ "gender": "feminine"
+ }
+ ],
+ "בלשן": [
+ {
+ "word_nikkud": "בַּלְשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3033-balshan",
+ "gender": ""
+ }
+ ],
+ "בלשנים": [
+ {
+ "word_nikkud": "בַּלְשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3033-balshan",
+ "gender": ""
+ }
+ ],
+ "בלשן־": [
+ {
+ "word_nikkud": "בַּלְשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3033-balshan",
+ "gender": ""
+ }
+ ],
+ "בלשני־": [
+ {
+ "word_nikkud": "בַּלְשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3033-balshan",
+ "gender": ""
+ }
+ ],
+ "מלתחה": [
+ {
+ "word_nikkud": "מֶלְתָּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9282-meltacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלתחות": [
+ {
+ "word_nikkud": "מֶלְתָּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9282-meltacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלתחת־": [
+ {
+ "word_nikkud": "מֶלְתָּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9282-meltacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלתחות־": [
+ {
+ "word_nikkud": "מֶלְתָּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9282-meltacha",
+ "gender": "feminine"
+ }
+ ],
+ "מאה": [
+ {
+ "word_nikkud": "מֵאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6242-mea",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מֵאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6242-mea",
+ "gender": "feminine"
+ }
+ ],
+ "מאות": [
+ {
+ "word_nikkud": "מֵאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6242-mea",
+ "gender": "feminine"
+ }
+ ],
+ "מאת־": [
+ {
+ "word_nikkud": "מֵאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6242-mea",
+ "gender": "feminine"
+ }
+ ],
+ "מאות־": [
+ {
+ "word_nikkud": "מֵאָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6242-mea",
+ "gender": "feminine"
+ }
+ ],
+ "מגדלור": [
+ {
+ "word_nikkud": "מִגְדַּלּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8964-migdalor",
+ "gender": "masculine"
+ }
+ ],
+ "מגדלורים": [
+ {
+ "word_nikkud": "מִגְדַּלּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8964-migdalor",
+ "gender": "masculine"
+ }
+ ],
+ "מגדלור־": [
+ {
+ "word_nikkud": "מִגְדַּלּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8964-migdalor",
+ "gender": "masculine"
+ }
+ ],
+ "מגדלורי־": [
+ {
+ "word_nikkud": "מִגְדַּלּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8964-migdalor",
+ "gender": "masculine"
+ }
+ ],
+ "מגמה": [
+ {
+ "word_nikkud": "מְגַמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4521-megama",
+ "gender": ""
+ }
+ ],
+ "מגמות": [
+ {
+ "word_nikkud": "מְגַמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4521-megama",
+ "gender": ""
+ }
+ ],
+ "מגמת־": [
+ {
+ "word_nikkud": "מְגַמָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4521-megama",
+ "gender": ""
+ }
+ ],
+ "מגמות־": [
+ {
+ "word_nikkud": "מְגַמָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4521-megama",
+ "gender": ""
+ }
+ ],
+ "מגנט": [
+ {
+ "word_nikkud": "מַגְנֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7531-magnet",
+ "gender": ""
+ }
+ ],
+ "מגנטים": [
+ {
+ "word_nikkud": "מַגְנֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7531-magnet",
+ "gender": ""
+ }
+ ],
+ "מגנט־": [
+ {
+ "word_nikkud": "מַגְנֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7531-magnet",
+ "gender": ""
+ }
+ ],
+ "מגנטי־": [
+ {
+ "word_nikkud": "מַגְנֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7531-magnet",
+ "gender": ""
+ }
+ ],
+ "מגף": [
+ {
+ "word_nikkud": "מַגָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6251-magaf",
+ "gender": "masculine"
+ }
+ ],
+ "מגפיים": [
+ {
+ "word_nikkud": "מַגָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6251-magaf",
+ "gender": "masculine"
+ }
+ ],
+ "מגף־": [
+ {
+ "word_nikkud": "מַגָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6251-magaf",
+ "gender": "masculine"
+ }
+ ],
+ "מגפי־": [
+ {
+ "word_nikkud": "מַגָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6251-magaf",
+ "gender": "masculine"
+ }
+ ],
+ "ממגורה": [
+ {
+ "word_nikkud": "מַמְגּוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6714-mamgura",
+ "gender": "feminine"
+ }
+ ],
+ "ממגורות": [
+ {
+ "word_nikkud": "מַמְגּוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6714-mamgura",
+ "gender": "feminine"
+ }
+ ],
+ "ממגורת־": [
+ {
+ "word_nikkud": "מַמְגּוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6714-mamgura",
+ "gender": "feminine"
+ }
+ ],
+ "ממגורות־": [
+ {
+ "word_nikkud": "מַמְגּוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6714-mamgura",
+ "gender": "feminine"
+ }
+ ],
+ "מידה": [
+ {
+ "word_nikkud": "מִדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5858-mida",
+ "gender": "feminine"
+ }
+ ],
+ "מידות": [
+ {
+ "word_nikkud": "מִדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5858-mida",
+ "gender": "feminine"
+ }
+ ],
+ "מידת־": [
+ {
+ "word_nikkud": "מִדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5858-mida",
+ "gender": "feminine"
+ }
+ ],
+ "מידות־": [
+ {
+ "word_nikkud": "מִדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5858-mida",
+ "gender": "feminine"
+ }
+ ],
+ "מדידה": [
+ {
+ "word_nikkud": "מְדִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2825-medida",
+ "gender": "feminine"
+ }
+ ],
+ "מדידות": [
+ {
+ "word_nikkud": "מְדִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2825-medida",
+ "gender": "feminine"
+ }
+ ],
+ "מדידת־": [
+ {
+ "word_nikkud": "מְדִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2825-medida",
+ "gender": "feminine"
+ }
+ ],
+ "מדידות־": [
+ {
+ "word_nikkud": "מְדִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2825-medida",
+ "gender": "feminine"
+ }
+ ],
+ "מדד": [
+ {
+ "word_nikkud": "מַדָּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4491-madad",
+ "gender": "masculine"
+ }
+ ],
+ "מדדים": [
+ {
+ "word_nikkud": "מַדָּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4491-madad",
+ "gender": "masculine"
+ }
+ ],
+ "מדד־": [
+ {
+ "word_nikkud": "מַדָּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4491-madad",
+ "gender": "masculine"
+ }
+ ],
+ "מדדי־": [
+ {
+ "word_nikkud": "מַדָּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4491-madad",
+ "gender": "masculine"
+ }
+ ],
+ "התמודדות": [
+ {
+ "word_nikkud": "הִתְמוֹדְדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7106-hitmodedut",
+ "gender": "feminine"
+ }
+ ],
+ "התמודדויות": [
+ {
+ "word_nikkud": "הִתְמוֹדְדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7106-hitmodedut",
+ "gender": "feminine"
+ }
+ ],
+ "התמודדות־": [
+ {
+ "word_nikkud": "הִתְמוֹדְדוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7106-hitmodedut",
+ "gender": "feminine"
+ }
+ ],
+ "התמודדויות־": [
+ {
+ "word_nikkud": "הִתְמוֹדְדוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7106-hitmodedut",
+ "gender": "feminine"
+ }
+ ],
+ "מדים": [
+ {
+ "word_nikkud": "מַדִּים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7845-madim",
+ "gender": "masculine"
+ }
+ ],
+ "מדי־": [
+ {
+ "word_nikkud": "מַדִּים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7845-madim",
+ "gender": "masculine"
+ }
+ ],
+ "מימד": [
+ {
+ "word_nikkud": "מֵמַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6745-memad",
+ "gender": ""
+ }
+ ],
+ "ממדים": [
+ {
+ "word_nikkud": "מֵמַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6745-memad",
+ "gender": ""
+ }
+ ],
+ "ממד־": [
+ {
+ "word_nikkud": "מֵמַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6745-memad",
+ "gender": ""
+ }
+ ],
+ "ממדי־": [
+ {
+ "word_nikkud": "מֵמַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6745-memad",
+ "gender": ""
+ }
+ ],
+ "מידתיות": [
+ {
+ "word_nikkud": "מִדָּתִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7291-midatiyut",
+ "gender": "feminine"
+ }
+ ],
+ "מידתיויות": [
+ {
+ "word_nikkud": "מִדָּתִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7291-midatiyut",
+ "gender": "feminine"
+ }
+ ],
+ "מידתיות־": [
+ {
+ "word_nikkud": "מִדָּתִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7291-midatiyut",
+ "gender": "feminine"
+ }
+ ],
+ "מידתיויות־": [
+ {
+ "word_nikkud": "מִדָּתִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7291-midatiyut",
+ "gender": "feminine"
+ }
+ ],
+ "מדוזה": [
+ {
+ "word_nikkud": "מֶדוּזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8597-meduza",
+ "gender": "feminine"
+ }
+ ],
+ "מדוזות": [
+ {
+ "word_nikkud": "מֶדוּזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8597-meduza",
+ "gender": "feminine"
+ }
+ ],
+ "מדוזת־": [
+ {
+ "word_nikkud": "מֶדוּזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8597-meduza",
+ "gender": "feminine"
+ }
+ ],
+ "מדוזות־": [
+ {
+ "word_nikkud": "מֶדוּזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8597-meduza",
+ "gender": "feminine"
+ }
+ ],
+ "מדחן": [
+ {
+ "word_nikkud": "מַדְחָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8880-madchan",
+ "gender": "masculine"
+ }
+ ],
+ "מדחנים": [
+ {
+ "word_nikkud": "מַדְחָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8880-madchan",
+ "gender": "masculine"
+ }
+ ],
+ "מדחן־": [
+ {
+ "word_nikkud": "מַדְחָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8880-madchan",
+ "gender": "masculine"
+ }
+ ],
+ "מדחני־": [
+ {
+ "word_nikkud": "מַדְחָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8880-madchan",
+ "gender": "masculine"
+ }
+ ],
+ "מדיטציה": [
+ {
+ "word_nikkud": "מֶדִיטַצְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7091-meditatzya",
+ "gender": "feminine"
+ }
+ ],
+ "מדיטציית־": [
+ {
+ "word_nikkud": "מֶדִיטַצְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7091-meditatzya",
+ "gender": "feminine"
+ }
+ ],
+ "מדיניות": [
+ {
+ "word_nikkud": "מְדִינִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6517-mediniyut",
+ "gender": ""
+ }
+ ],
+ "מדיניויות": [
+ {
+ "word_nikkud": "מְדִינִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6517-mediniyut",
+ "gender": ""
+ }
+ ],
+ "מדיניות־": [
+ {
+ "word_nikkud": "מְדִינִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6517-mediniyut",
+ "gender": ""
+ }
+ ],
+ "מדיניויות־": [
+ {
+ "word_nikkud": "מְדִינִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6517-mediniyut",
+ "gender": ""
+ }
+ ],
+ "מידור": [
+ {
+ "word_nikkud": "מִדּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3959-midur",
+ "gender": "masculine"
+ }
+ ],
+ "מידור־": [
+ {
+ "word_nikkud": "מִדּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3959-midur",
+ "gender": "masculine"
+ }
+ ],
+ "מדרון": [
+ {
+ "word_nikkud": "מִדְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4452-midron",
+ "gender": "masculine"
+ }
+ ],
+ "מדרונות": [
+ {
+ "word_nikkud": "מִדְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4452-midron",
+ "gender": "masculine"
+ }
+ ],
+ "מדרון־": [
+ {
+ "word_nikkud": "מִדְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4452-midron",
+ "gender": "masculine"
+ }
+ ],
+ "מדרונות־": [
+ {
+ "word_nikkud": "מִדְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4452-midron",
+ "gender": "masculine"
+ }
+ ],
+ "מהות": [
+ {
+ "word_nikkud": "מַהוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6844-mahut",
+ "gender": "feminine"
+ }
+ ],
+ "מהויות": [
+ {
+ "word_nikkud": "מַהוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6844-mahut",
+ "gender": "feminine"
+ }
+ ],
+ "מהות־": [
+ {
+ "word_nikkud": "מַהוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6844-mahut",
+ "gender": "feminine"
+ }
+ ],
+ "מהויות־": [
+ {
+ "word_nikkud": "מַהוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6844-mahut",
+ "gender": "feminine"
+ }
+ ],
+ "מהירות": [
+ {
+ "word_nikkud": "מְהִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6759-mehirut",
+ "gender": "feminine"
+ }
+ ],
+ "מהירויות": [
+ {
+ "word_nikkud": "מְהִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6759-mehirut",
+ "gender": "feminine"
+ }
+ ],
+ "מהירות־": [
+ {
+ "word_nikkud": "מְהִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6759-mehirut",
+ "gender": "feminine"
+ }
+ ],
+ "מהירויות־": [
+ {
+ "word_nikkud": "מְהִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6759-mehirut",
+ "gender": "feminine"
+ }
+ ],
+ "מודל": [
+ {
+ "word_nikkud": "מוֹדֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8786-model",
+ "gender": "masculine"
+ }
+ ],
+ "מודלים": [
+ {
+ "word_nikkud": "מוֹדֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8786-model",
+ "gender": "masculine"
+ }
+ ],
+ "מוזיאון": [
+ {
+ "word_nikkud": "מוּזֵאוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5507-muzeon",
+ "gender": "masculine"
+ }
+ ],
+ "מוזיאונים": [
+ {
+ "word_nikkud": "מוּזֵאוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5507-muzeon",
+ "gender": "masculine"
+ }
+ ],
+ "מוזיאון־": [
+ {
+ "word_nikkud": "מוּזֵאוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5507-muzeon",
+ "gender": "masculine"
+ }
+ ],
+ "מוזיאוני־": [
+ {
+ "word_nikkud": "מוּזֵאוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5507-muzeon",
+ "gender": "masculine"
+ }
+ ],
+ "מוזיקה": [
+ {
+ "word_nikkud": "מוּזִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5223-muzika",
+ "gender": "feminine"
+ }
+ ],
+ "מוסיקה": [
+ {
+ "word_nikkud": "מוּזִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5223-muzika",
+ "gender": "feminine"
+ }
+ ],
+ "מוזיקת־": [
+ {
+ "word_nikkud": "מוּזִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5223-muzika",
+ "gender": "feminine"
+ }
+ ],
+ "מוסיקת־": [
+ {
+ "word_nikkud": "מוּזִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5223-muzika",
+ "gender": "feminine"
+ }
+ ],
+ "התמוטטות": [
+ {
+ "word_nikkud": "הִתְמוֹטְטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7861-hitmotetut",
+ "gender": "feminine"
+ }
+ ],
+ "התמוטטויות": [
+ {
+ "word_nikkud": "הִתְמוֹטְטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7861-hitmotetut",
+ "gender": "feminine"
+ }
+ ],
+ "התמוטטות־": [
+ {
+ "word_nikkud": "הִתְמוֹטְטוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7861-hitmotetut",
+ "gender": "feminine"
+ }
+ ],
+ "התמוטטויות־": [
+ {
+ "word_nikkud": "הִתְמוֹטְטוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7861-hitmotetut",
+ "gender": "feminine"
+ }
+ ],
+ "מוט": [
+ {
+ "word_nikkud": "מוֹט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6527-mot",
+ "gender": "masculine"
+ }
+ ],
+ "מוטות": [
+ {
+ "word_nikkud": "מוֹט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6527-mot",
+ "gender": "masculine"
+ }
+ ],
+ "מוט־": [
+ {
+ "word_nikkud": "מוֹט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6527-mot",
+ "gender": "masculine"
+ }
+ ],
+ "מוטות־": [
+ {
+ "word_nikkud": "מוֹט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6527-mot",
+ "gender": "masculine"
+ }
+ ],
+ "מילה": [
+ {
+ "word_nikkud": "מִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8978-mila",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4746-mila",
+ "gender": "feminine"
+ }
+ ],
+ "מילות": [
+ {
+ "word_nikkud": "מִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8978-mila",
+ "gender": "feminine"
+ }
+ ],
+ "מילת־": [
+ {
+ "word_nikkud": "מִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8978-mila",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4746-mila",
+ "gender": "feminine"
+ }
+ ],
+ "מילות־": [
+ {
+ "word_nikkud": "מִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8978-mila",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4746-mila",
+ "gender": "feminine"
+ }
+ ],
+ "מום": [
+ {
+ "word_nikkud": "מוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7450-mum",
+ "gender": "masculine"
+ }
+ ],
+ "מומים": [
+ {
+ "word_nikkud": "מוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7450-mum",
+ "gender": "masculine"
+ }
+ ],
+ "מום־": [
+ {
+ "word_nikkud": "מוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7450-mum",
+ "gender": "masculine"
+ }
+ ],
+ "מומי־": [
+ {
+ "word_nikkud": "מוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7450-mum",
+ "gender": "masculine"
+ }
+ ],
+ "מונולוג": [
+ {
+ "word_nikkud": "מוֹנוֹלוֹג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7084-monolog",
+ "gender": "masculine"
+ }
+ ],
+ "מונולוגים": [
+ {
+ "word_nikkud": "מוֹנוֹלוֹג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7084-monolog",
+ "gender": "masculine"
+ }
+ ],
+ "תמורה": [
+ {
+ "word_nikkud": "תְּמוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5846-tmura",
+ "gender": "feminine"
+ }
+ ],
+ "תמורות": [
+ {
+ "word_nikkud": "תְּמוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5846-tmura",
+ "gender": "feminine"
+ }
+ ],
+ "תמורת־": [
+ {
+ "word_nikkud": "תְּמוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5846-tmura",
+ "gender": "feminine"
+ }
+ ],
+ "תמורות־": [
+ {
+ "word_nikkud": "תְּמוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5846-tmura",
+ "gender": "feminine"
+ }
+ ],
+ "מר": [
+ {
+ "word_nikkud": "מַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4310-mar",
+ "gender": ""
+ }
+ ],
+ "מוות": [
+ {
+ "word_nikkud": "מָוֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4167-mavet",
+ "gender": "masculine"
+ }
+ ],
+ "מות־": [
+ {
+ "word_nikkud": "מָוֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4167-mavet",
+ "gender": "masculine"
+ }
+ ],
+ "תמותה": [
+ {
+ "word_nikkud": "תְּמוּתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6525-tmuta",
+ "gender": "feminine"
+ }
+ ],
+ "תמותות": [
+ {
+ "word_nikkud": "תְּמוּתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6525-tmuta",
+ "gender": "feminine"
+ }
+ ],
+ "תמותת־": [
+ {
+ "word_nikkud": "תְּמוּתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6525-tmuta",
+ "gender": "feminine"
+ }
+ ],
+ "תמותות־": [
+ {
+ "word_nikkud": "תְּמוּתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6525-tmuta",
+ "gender": "feminine"
+ }
+ ],
+ "מיזוג": [
+ {
+ "word_nikkud": "מִזּוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7328-mizug",
+ "gender": "masculine"
+ }
+ ],
+ "מיזוגים": [
+ {
+ "word_nikkud": "מִזּוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7328-mizug",
+ "gender": "masculine"
+ }
+ ],
+ "מיזוג־": [
+ {
+ "word_nikkud": "מִזּוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7328-mizug",
+ "gender": "masculine"
+ }
+ ],
+ "מיזוגי־": [
+ {
+ "word_nikkud": "מִזּוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7328-mizug",
+ "gender": "masculine"
+ }
+ ],
+ "מזג": [
+ {
+ "word_nikkud": "מֶזֶג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5750-mezeg",
+ "gender": "masculine"
+ }
+ ],
+ "מזגים": [
+ {
+ "word_nikkud": "מֶזֶג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5750-mezeg",
+ "gender": "masculine"
+ }
+ ],
+ "מזג־": [
+ {
+ "word_nikkud": "מֶזֶג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5750-mezeg",
+ "gender": "masculine"
+ }
+ ],
+ "מזגי־": [
+ {
+ "word_nikkud": "מֶזֶג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5750-mezeg",
+ "gender": "masculine"
+ }
+ ],
+ "מזגן": [
+ {
+ "word_nikkud": "מַזְגָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4609-mazgan",
+ "gender": "masculine"
+ }
+ ],
+ "מזגנים": [
+ {
+ "word_nikkud": "מַזְגָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4609-mazgan",
+ "gender": "masculine"
+ }
+ ],
+ "מזגן־": [
+ {
+ "word_nikkud": "מַזְגָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4609-mazgan",
+ "gender": "masculine"
+ }
+ ],
+ "מזגני־": [
+ {
+ "word_nikkud": "מַזְגָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4609-mazgan",
+ "gender": "masculine"
+ }
+ ],
+ "מזוזה": [
+ {
+ "word_nikkud": "מְזוּזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8369-mezuza",
+ "gender": "feminine"
+ }
+ ],
+ "מזוזות": [
+ {
+ "word_nikkud": "מְזוּזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8369-mezuza",
+ "gender": "feminine"
+ }
+ ],
+ "מזוזת־": [
+ {
+ "word_nikkud": "מְזוּזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8369-mezuza",
+ "gender": "feminine"
+ }
+ ],
+ "מזוזות־": [
+ {
+ "word_nikkud": "מְזוּזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8369-mezuza",
+ "gender": "feminine"
+ }
+ ],
+ "מזח": [
+ {
+ "word_nikkud": "מֶזַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9171-mezach",
+ "gender": "masculine"
+ }
+ ],
+ "מזחים": [
+ {
+ "word_nikkud": "מֶזַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9171-mezach",
+ "gender": "masculine"
+ }
+ ],
+ "מזח־": [
+ {
+ "word_nikkud": "מֶזַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9171-mezach",
+ "gender": "masculine"
+ }
+ ],
+ "מזחי־": [
+ {
+ "word_nikkud": "מֶזַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9171-mezach",
+ "gender": "masculine"
+ }
+ ],
+ "מזל": [
+ {
+ "word_nikkud": "מַזָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3673-mazal",
+ "gender": "masculine"
+ }
+ ],
+ "מזלות": [
+ {
+ "word_nikkud": "מַזָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3673-mazal",
+ "gender": "masculine"
+ }
+ ],
+ "מזל־": [
+ {
+ "word_nikkud": "מַזָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3673-mazal",
+ "gender": "masculine"
+ }
+ ],
+ "מזלות־": [
+ {
+ "word_nikkud": "מַזָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3673-mazal",
+ "gender": "masculine"
+ }
+ ],
+ "ממזר": [
+ {
+ "word_nikkud": "מַמְזֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8860-mamzer",
+ "gender": "masculine"
+ }
+ ],
+ "ממזרים": [
+ {
+ "word_nikkud": "מַמְזֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8860-mamzer",
+ "gender": "masculine"
+ }
+ ],
+ "ממזר־": [
+ {
+ "word_nikkud": "מַמְזֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8860-mamzer",
+ "gender": "masculine"
+ }
+ ],
+ "ממזרי־": [
+ {
+ "word_nikkud": "מַמְזֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8860-mamzer",
+ "gender": "masculine"
+ }
+ ],
+ "מחאה": [
+ {
+ "word_nikkud": "מְחָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5198-mechaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחאות": [
+ {
+ "word_nikkud": "מְחָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5198-mechaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחאת־": [
+ {
+ "word_nikkud": "מְחָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5198-mechaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחאות־": [
+ {
+ "word_nikkud": "מְחָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5198-mechaa",
+ "gender": "feminine"
+ }
+ ],
+ "המחאה": [
+ {
+ "word_nikkud": "הַמְחָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7971-hamchaa",
+ "gender": "feminine"
+ }
+ ],
+ "המחאות": [
+ {
+ "word_nikkud": "הַמְחָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7971-hamchaa",
+ "gender": "feminine"
+ }
+ ],
+ "המחאת־": [
+ {
+ "word_nikkud": "הַמְחָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7971-hamchaa",
+ "gender": "feminine"
+ }
+ ],
+ "המחאות־": [
+ {
+ "word_nikkud": "הַמְחָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7971-hamchaa",
+ "gender": "feminine"
+ }
+ ],
+ "מחיאה": [
+ {
+ "word_nikkud": "מְחִיאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8668-mechia",
+ "gender": "feminine"
+ }
+ ],
+ "מחיאות": [
+ {
+ "word_nikkud": "מְחִיאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8668-mechia",
+ "gender": "feminine"
+ }
+ ],
+ "מחיאת־": [
+ {
+ "word_nikkud": "מְחִיאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8668-mechia",
+ "gender": "feminine"
+ }
+ ],
+ "מחיאות־": [
+ {
+ "word_nikkud": "מְחִיאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8668-mechia",
+ "gender": "feminine"
+ }
+ ],
+ "מוח": [
+ {
+ "word_nikkud": "מֹחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5650-moach",
+ "gender": "masculine"
+ }
+ ],
+ "מוחות": [
+ {
+ "word_nikkud": "מֹחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5650-moach",
+ "gender": "masculine"
+ }
+ ],
+ "מוח־": [
+ {
+ "word_nikkud": "מֹחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5650-moach",
+ "gender": "masculine"
+ }
+ ],
+ "מוחות־": [
+ {
+ "word_nikkud": "מֹחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5650-moach",
+ "gender": "masculine"
+ }
+ ],
+ "ממחטה": [
+ {
+ "word_nikkud": "מִמְחָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3569-mimchata",
+ "gender": "feminine"
+ }
+ ],
+ "ממחטות": [
+ {
+ "word_nikkud": "מִמְחָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3569-mimchata",
+ "gender": "feminine"
+ }
+ ],
+ "ממחטת־": [
+ {
+ "word_nikkud": "מִמְחָטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3569-mimchata",
+ "gender": "feminine"
+ }
+ ],
+ "ממחטות־": [
+ {
+ "word_nikkud": "מִמְחָטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3569-mimchata",
+ "gender": "feminine"
+ }
+ ],
+ "מחט": [
+ {
+ "word_nikkud": "מַחַט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8832-machat",
+ "gender": "feminine"
+ }
+ ],
+ "מחטים": [
+ {
+ "word_nikkud": "מַחַט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8832-machat",
+ "gender": "feminine"
+ }
+ ],
+ "מחט־": [
+ {
+ "word_nikkud": "מַחַט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8832-machat",
+ "gender": "feminine"
+ }
+ ],
+ "מחטי־": [
+ {
+ "word_nikkud": "מַחַט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8832-machat",
+ "gender": "feminine"
+ }
+ ],
+ "מומחה": [
+ {
+ "word_nikkud": "מֻמְחֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4589-mumche",
+ "gender": "masculine"
+ }
+ ],
+ "מומחים": [
+ {
+ "word_nikkud": "מֻמְחֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4589-mumche",
+ "gender": "masculine"
+ }
+ ],
+ "מומחה־": [
+ {
+ "word_nikkud": "מֻמְחֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4589-mumche",
+ "gender": "masculine"
+ }
+ ],
+ "מומחי־": [
+ {
+ "word_nikkud": "מֻמְחֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4589-mumche",
+ "gender": "masculine"
+ }
+ ],
+ "התמחות": [
+ {
+ "word_nikkud": "הִתְמַחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6265-hitmachut",
+ "gender": "feminine"
+ }
+ ],
+ "התמחויות": [
+ {
+ "word_nikkud": "הִתְמַחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6265-hitmachut",
+ "gender": "feminine"
+ }
+ ],
+ "התמחות־": [
+ {
+ "word_nikkud": "הִתְמַחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6265-hitmachut",
+ "gender": "feminine"
+ }
+ ],
+ "התמחויות־": [
+ {
+ "word_nikkud": "הִתְמַחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6265-hitmachut",
+ "gender": "feminine"
+ }
+ ],
+ "מתמחה": [
+ {
+ "word_nikkud": "מִתְמַחֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6907-mitmache",
+ "gender": "masculine"
+ }
+ ],
+ "מתמחים": [
+ {
+ "word_nikkud": "מִתְמַחֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6907-mitmache",
+ "gender": "masculine"
+ }
+ ],
+ "מתמחה־": [
+ {
+ "word_nikkud": "מִתְמַחֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6907-mitmache",
+ "gender": "masculine"
+ }
+ ],
+ "מתמחי־": [
+ {
+ "word_nikkud": "מִתְמַחֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6907-mitmache",
+ "gender": "masculine"
+ }
+ ],
+ "מחילה": [
+ {
+ "word_nikkud": "מְחִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4302-mechila",
+ "gender": "feminine"
+ }
+ ],
+ "מחילות": [
+ {
+ "word_nikkud": "מְחִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4302-mechila",
+ "gender": "feminine"
+ }
+ ],
+ "מחילת־": [
+ {
+ "word_nikkud": "מְחִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4302-mechila",
+ "gender": "feminine"
+ }
+ ],
+ "מחילות־": [
+ {
+ "word_nikkud": "מְחִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4302-mechila",
+ "gender": "feminine"
+ }
+ ],
+ "מחיקה": [
+ {
+ "word_nikkud": "מְחִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4018-mechika",
+ "gender": "feminine"
+ }
+ ],
+ "מחיקות": [
+ {
+ "word_nikkud": "מְחִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4018-mechika",
+ "gender": "feminine"
+ }
+ ],
+ "מחיקת־": [
+ {
+ "word_nikkud": "מְחִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4018-mechika",
+ "gender": "feminine"
+ }
+ ],
+ "מחיקות־": [
+ {
+ "word_nikkud": "מְחִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4018-mechika",
+ "gender": "feminine"
+ }
+ ],
+ "מחר": [
+ {
+ "word_nikkud": "מָחָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4555-machar",
+ "gender": ""
+ }
+ ],
+ "מחיר": [
+ {
+ "word_nikkud": "מְחִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3728-mechir",
+ "gender": "masculine"
+ }
+ ],
+ "מחירים": [
+ {
+ "word_nikkud": "מְחִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3728-mechir",
+ "gender": "masculine"
+ }
+ ],
+ "מחיר־": [
+ {
+ "word_nikkud": "מְחִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3728-mechir",
+ "gender": "masculine"
+ }
+ ],
+ "מחירי־": [
+ {
+ "word_nikkud": "מְחִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3728-mechir",
+ "gender": "masculine"
+ }
+ ],
+ "מחירון": [
+ {
+ "word_nikkud": "מְחִירוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6678-mechiron",
+ "gender": "masculine"
+ }
+ ],
+ "מחירונים": [
+ {
+ "word_nikkud": "מְחִירוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6678-mechiron",
+ "gender": "masculine"
+ }
+ ],
+ "מחירון־": [
+ {
+ "word_nikkud": "מְחִירוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6678-mechiron",
+ "gender": "masculine"
+ }
+ ],
+ "מחירוני־": [
+ {
+ "word_nikkud": "מְחִירוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6678-mechiron",
+ "gender": "masculine"
+ }
+ ],
+ "מטקה": [
+ {
+ "word_nikkud": "מַטְקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8816-matka",
+ "gender": ""
+ }
+ ],
+ "מטקות": [
+ {
+ "word_nikkud": "מַטְקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8816-matka",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "מַטְקוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8817-matkot",
+ "gender": "feminine"
+ }
+ ],
+ "מטקת־": [
+ {
+ "word_nikkud": "מַטְקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8816-matka",
+ "gender": ""
+ }
+ ],
+ "מטקות־": [
+ {
+ "word_nikkud": "מַטְקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8816-matka",
+ "gender": ""
+ }
+ ],
+ "ממטרה": [
+ {
+ "word_nikkud": "מַמְטֵרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3335-mamtera",
+ "gender": "feminine"
+ }
+ ],
+ "ממטרות": [
+ {
+ "word_nikkud": "מַמְטֵרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3335-mamtera",
+ "gender": "feminine"
+ }
+ ],
+ "ממטרת־": [
+ {
+ "word_nikkud": "מַמְטֵרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3335-mamtera",
+ "gender": "feminine"
+ }
+ ],
+ "ממטרות־": [
+ {
+ "word_nikkud": "מַמְטֵרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3335-mamtera",
+ "gender": "feminine"
+ }
+ ],
+ "מטר": [
+ {
+ "word_nikkud": "מֶטֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8484-meter",
+ "gender": "masculine"
+ }
+ ],
+ "מטרים": [
+ {
+ "word_nikkud": "מֶטֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8484-meter",
+ "gender": "masculine"
+ }
+ ],
+ "מטרייה": [
+ {
+ "word_nikkud": "מִטְרִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5940-mitriya",
+ "gender": "feminine"
+ }
+ ],
+ "מטריות": [
+ {
+ "word_nikkud": "מִטְרִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5940-mitriya",
+ "gender": "feminine"
+ }
+ ],
+ "מטריית־": [
+ {
+ "word_nikkud": "מִטְרִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5940-mitriya",
+ "gender": "feminine"
+ }
+ ],
+ "מטריות־": [
+ {
+ "word_nikkud": "מִטְרִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5940-mitriya",
+ "gender": "feminine"
+ }
+ ],
+ "מיונז": [
+ {
+ "word_nikkud": "מָיוֹנֶז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7072-mayonez",
+ "gender": "masculine"
+ }
+ ],
+ "מיונז־": [
+ {
+ "word_nikkud": "מָיוֹנֶז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7072-mayonez",
+ "gender": "masculine"
+ }
+ ],
+ "מיורן": [
+ {
+ "word_nikkud": "מָיוֹרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9110-mayoran",
+ "gender": "masculine"
+ }
+ ],
+ "מיליארד": [
+ {
+ "word_nikkud": "מִילְיַארְד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8535-milyard",
+ "gender": "masculine"
+ }
+ ],
+ "מיליארדים": [
+ {
+ "word_nikkud": "מִילְיַארְד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8535-milyard",
+ "gender": "masculine"
+ }
+ ],
+ "מיליארד־": [
+ {
+ "word_nikkud": "מִילְיַארְד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8535-milyard",
+ "gender": "masculine"
+ }
+ ],
+ "מיליארדי־": [
+ {
+ "word_nikkud": "מִילְיַארְד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8535-milyard",
+ "gender": "masculine"
+ }
+ ],
+ "מיליון": [
+ {
+ "word_nikkud": "מִילְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7419-milyon",
+ "gender": "masculine"
+ }
+ ],
+ "מיליונים": [
+ {
+ "word_nikkud": "מִילְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7419-milyon",
+ "gender": "masculine"
+ }
+ ],
+ "מיליון־": [
+ {
+ "word_nikkud": "מִילְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7419-milyon",
+ "gender": "masculine"
+ }
+ ],
+ "מיליוני־": [
+ {
+ "word_nikkud": "מִילְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7419-milyon",
+ "gender": "masculine"
+ }
+ ],
+ "מילניום": [
+ {
+ "word_nikkud": "מִילֶנְיוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8632-milenyum",
+ "gender": "masculine"
+ }
+ ],
+ "מילניום־": [
+ {
+ "word_nikkud": "מִילֶנְיוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8632-milenyum",
+ "gender": "masculine"
+ }
+ ],
+ "מים": [
+ {
+ "word_nikkud": "מַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4270-mayim",
+ "gender": "masculine"
+ }
+ ],
+ "מי־": [
+ {
+ "word_nikkud": "מַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4270-mayim",
+ "gender": "masculine"
+ }
+ ],
+ "הממה": [
+ {
+ "word_nikkud": "מֵימָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3981-meiman",
+ "gender": "masculine"
+ }
+ ],
+ "הממת־": [
+ {
+ "word_nikkud": "מֵימָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3981-meiman",
+ "gender": "masculine"
+ }
+ ],
+ "מיון": [
+ {
+ "word_nikkud": "מִיּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2974-miyun",
+ "gender": "masculine"
+ }
+ ],
+ "מיונים": [
+ {
+ "word_nikkud": "מִיּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2974-miyun",
+ "gender": "masculine"
+ }
+ ],
+ "מיון־": [
+ {
+ "word_nikkud": "מִיּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2974-miyun",
+ "gender": "masculine"
+ }
+ ],
+ "מיוני־": [
+ {
+ "word_nikkud": "מִיּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2974-miyun",
+ "gender": "masculine"
+ }
+ ],
+ "מין": [
+ {
+ "word_nikkud": "מִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5054-min",
+ "gender": "masculine"
+ }
+ ],
+ "מינים": [
+ {
+ "word_nikkud": "מִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5054-min",
+ "gender": "masculine"
+ }
+ ],
+ "מין־": [
+ {
+ "word_nikkud": "מִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5054-min",
+ "gender": "masculine"
+ }
+ ],
+ "מיני־": [
+ {
+ "word_nikkud": "מִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5054-min",
+ "gender": "masculine"
+ }
+ ],
+ "תמונה": [
+ {
+ "word_nikkud": "תְּמוּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4260-tmuna",
+ "gender": "feminine"
+ }
+ ],
+ "תמונות": [
+ {
+ "word_nikkud": "תְּמוּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4260-tmuna",
+ "gender": "feminine"
+ }
+ ],
+ "תמונת־": [
+ {
+ "word_nikkud": "תְּמוּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4260-tmuna",
+ "gender": "feminine"
+ }
+ ],
+ "תמונות־": [
+ {
+ "word_nikkud": "תְּמוּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4260-tmuna",
+ "gender": "feminine"
+ }
+ ],
+ "מיקור חוץ": [
+ {
+ "word_nikkud": "מִקּוּר חוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7622-mikur-chutz",
+ "gender": ""
+ }
+ ],
+ "מיקרוגל": [
+ {
+ "word_nikkud": "מִיקְרוֹגַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6473-mikrogal",
+ "gender": ""
+ }
+ ],
+ "מיתוס": [
+ {
+ "word_nikkud": "מִיתוֹס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8180-mitos",
+ "gender": "masculine"
+ }
+ ],
+ "מיתוסים": [
+ {
+ "word_nikkud": "מִיתוֹס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8180-mitos",
+ "gender": "masculine"
+ }
+ ],
+ "מיתוס־": [
+ {
+ "word_nikkud": "מִיתוֹס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8180-mitos",
+ "gender": "masculine"
+ }
+ ],
+ "מיתוסי־": [
+ {
+ "word_nikkud": "מִיתוֹס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8180-mitos",
+ "gender": "masculine"
+ }
+ ],
+ "מכונת כביסה": [
+ {
+ "word_nikkud": "מְכוֹנַת כְּבִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7526-mechonat-kvisa",
+ "gender": ""
+ }
+ ],
+ "מכונות כביסה": [
+ {
+ "word_nikkud": "מְכוֹנַת כְּבִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7526-mechonat-kvisa",
+ "gender": ""
+ }
+ ],
+ "מכס": [
+ {
+ "word_nikkud": "מֶכֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8682-meches",
+ "gender": "masculine"
+ }
+ ],
+ "מכס־": [
+ {
+ "word_nikkud": "מֶכֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8682-meches",
+ "gender": "masculine"
+ }
+ ],
+ "התמכרות": [
+ {
+ "word_nikkud": "הִתְמַכְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4681-hitmakrut",
+ "gender": "feminine"
+ }
+ ],
+ "התמכרויות": [
+ {
+ "word_nikkud": "הִתְמַכְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4681-hitmakrut",
+ "gender": "feminine"
+ }
+ ],
+ "התמכרות־": [
+ {
+ "word_nikkud": "הִתְמַכְּרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4681-hitmakrut",
+ "gender": "feminine"
+ }
+ ],
+ "התמכרויות־": [
+ {
+ "word_nikkud": "הִתְמַכְּרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4681-hitmakrut",
+ "gender": "feminine"
+ }
+ ],
+ "מכירה": [
+ {
+ "word_nikkud": "מְכִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2826-mechira",
+ "gender": "feminine"
+ }
+ ],
+ "מכירות": [
+ {
+ "word_nikkud": "מְכִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2826-mechira",
+ "gender": "feminine"
+ }
+ ],
+ "מכירת־": [
+ {
+ "word_nikkud": "מְכִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2826-mechira",
+ "gender": "feminine"
+ }
+ ],
+ "מכירות־": [
+ {
+ "word_nikkud": "מְכִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2826-mechira",
+ "gender": "feminine"
+ }
+ ],
+ "מכר": [
+ {
+ "word_nikkud": "מֶכֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6481-mecher",
+ "gender": "masculine"
+ }
+ ],
+ "מכרים": [
+ {
+ "word_nikkud": "מֶכֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6481-mecher",
+ "gender": "masculine"
+ }
+ ],
+ "מכר־": [
+ {
+ "word_nikkud": "מֶכֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6481-mecher",
+ "gender": "masculine"
+ }
+ ],
+ "מכרי־": [
+ {
+ "word_nikkud": "מֶכֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6481-mecher",
+ "gender": "masculine"
+ }
+ ],
+ "מכשפה": [
+ {
+ "word_nikkud": "מְכַשֵּׁפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8173-mechashefa",
+ "gender": ""
+ }
+ ],
+ "מכשפת־": [
+ {
+ "word_nikkud": "מְכַשֵּׁפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8173-mechashefa",
+ "gender": ""
+ }
+ ],
+ "מלאי": [
+ {
+ "word_nikkud": "מְלַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7794-mlay",
+ "gender": "masculine"
+ }
+ ],
+ "מלאים": [
+ {
+ "word_nikkud": "מְלַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7794-mlay",
+ "gender": "masculine"
+ }
+ ],
+ "מלאי־": [
+ {
+ "word_nikkud": "מְלַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7794-mlay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מְלַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7794-mlay",
+ "gender": "masculine"
+ }
+ ],
+ "התמלאות": [
+ {
+ "word_nikkud": "הִתְמַלְּאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7835-hitmalut",
+ "gender": "feminine"
+ }
+ ],
+ "התמלאות־": [
+ {
+ "word_nikkud": "הִתְמַלְּאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7835-hitmalut",
+ "gender": "feminine"
+ }
+ ],
+ "מילואים": [
+ {
+ "word_nikkud": "מִלּוּאִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9176-miluim",
+ "gender": "masculine"
+ }
+ ],
+ "מילואי־": [
+ {
+ "word_nikkud": "מִלּוּאִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9176-miluim",
+ "gender": "masculine"
+ }
+ ],
+ "מלוא": [
+ {
+ "word_nikkud": "מְלוֹא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7319-melo",
+ "gender": "masculine"
+ }
+ ],
+ "מלוא־": [
+ {
+ "word_nikkud": "מְלוֹא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7319-melo",
+ "gender": "masculine"
+ }
+ ],
+ "מלאכה": [
+ {
+ "word_nikkud": "מְלָאכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5332-melacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלאכות": [
+ {
+ "word_nikkud": "מְלָאכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5332-melacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלאכת־": [
+ {
+ "word_nikkud": "מְלָאכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5332-melacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלאכות־": [
+ {
+ "word_nikkud": "מְלָאכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5332-melacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלגה": [
+ {
+ "word_nikkud": "מִלְגָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3935-milga",
+ "gender": "feminine"
+ }
+ ],
+ "מלגות": [
+ {
+ "word_nikkud": "מִלְגָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3935-milga",
+ "gender": "feminine"
+ }
+ ],
+ "מלגת־": [
+ {
+ "word_nikkud": "מִלְגָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3935-milga",
+ "gender": "feminine"
+ }
+ ],
+ "מלגות־": [
+ {
+ "word_nikkud": "מִלְגָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3935-milga",
+ "gender": "feminine"
+ }
+ ],
+ "תמלוגים": [
+ {
+ "word_nikkud": "תַּמְלוּגִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8604-tamlugim",
+ "gender": "masculine"
+ }
+ ],
+ "תמלוגי־": [
+ {
+ "word_nikkud": "תַּמְלוּגִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8604-tamlugim",
+ "gender": "masculine"
+ }
+ ],
+ "מלח": [
+ {
+ "word_nikkud": "מֶלַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5739-melach",
+ "gender": "masculine"
+ }
+ ],
+ "מלחים": [
+ {
+ "word_nikkud": "מֶלַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5739-melach",
+ "gender": "masculine"
+ }
+ ],
+ "מלח־": [
+ {
+ "word_nikkud": "מֶלַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5739-melach",
+ "gender": "masculine"
+ }
+ ],
+ "מלחי־": [
+ {
+ "word_nikkud": "מֶלַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5739-melach",
+ "gender": "masculine"
+ }
+ ],
+ "מליחות": [
+ {
+ "word_nikkud": "מְלִיחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8264-melichut",
+ "gender": "feminine"
+ }
+ ],
+ "מליחויות": [
+ {
+ "word_nikkud": "מְלִיחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8264-melichut",
+ "gender": "feminine"
+ }
+ ],
+ "מליחות־": [
+ {
+ "word_nikkud": "מְלִיחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8264-melichut",
+ "gender": "feminine"
+ }
+ ],
+ "מליחויות־": [
+ {
+ "word_nikkud": "מְלִיחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8264-melichut",
+ "gender": "feminine"
+ }
+ ],
+ "מלחייה": [
+ {
+ "word_nikkud": "מִלְחִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9000-milchiya",
+ "gender": "masculine"
+ }
+ ],
+ "מלחיות": [
+ {
+ "word_nikkud": "מִלְחִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9000-milchiya",
+ "gender": "masculine"
+ }
+ ],
+ "מלחיית־": [
+ {
+ "word_nikkud": "מִלְחִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9000-milchiya",
+ "gender": "masculine"
+ }
+ ],
+ "מלחיות־": [
+ {
+ "word_nikkud": "מִלְחִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9000-milchiya",
+ "gender": "masculine"
+ }
+ ],
+ "מילוט": [
+ {
+ "word_nikkud": "מִלּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3984-milut",
+ "gender": "masculine"
+ }
+ ],
+ "מילוטים": [
+ {
+ "word_nikkud": "מִלּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3984-milut",
+ "gender": "masculine"
+ }
+ ],
+ "מילוט־": [
+ {
+ "word_nikkud": "מִלּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3984-milut",
+ "gender": "masculine"
+ }
+ ],
+ "מילוטי־": [
+ {
+ "word_nikkud": "מִלּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3984-milut",
+ "gender": "masculine"
+ }
+ ],
+ "מליטה": [
+ {
+ "word_nikkud": "מְלִיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4928-melita",
+ "gender": "feminine"
+ }
+ ],
+ "מליטת־": [
+ {
+ "word_nikkud": "מְלִיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4928-melita",
+ "gender": "feminine"
+ }
+ ],
+ "מלט": [
+ {
+ "word_nikkud": "מֶלֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4929-melet",
+ "gender": "masculine"
+ }
+ ],
+ "מלט־": [
+ {
+ "word_nikkud": "מֶלֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4929-melet",
+ "gender": "masculine"
+ }
+ ],
+ "מילוי": [
+ {
+ "word_nikkud": "מִלּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8427-miluy",
+ "gender": "masculine"
+ }
+ ],
+ "מילויים": [
+ {
+ "word_nikkud": "מִלּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8427-miluy",
+ "gender": "masculine"
+ }
+ ],
+ "מילוי־": [
+ {
+ "word_nikkud": "מִלּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8427-miluy",
+ "gender": "masculine"
+ }
+ ],
+ "מילויי־": [
+ {
+ "word_nikkud": "מִלּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8427-miluy",
+ "gender": "masculine"
+ }
+ ],
+ "מלך": [
+ {
+ "word_nikkud": "מֶלֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6002-melech",
+ "gender": "masculine"
+ }
+ ],
+ "מלכים": [
+ {
+ "word_nikkud": "מֶלֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6002-melech",
+ "gender": "masculine"
+ }
+ ],
+ "מלך־": [
+ {
+ "word_nikkud": "מֶלֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6002-melech",
+ "gender": "masculine"
+ }
+ ],
+ "מלכי־": [
+ {
+ "word_nikkud": "מֶלֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6002-melech",
+ "gender": "masculine"
+ }
+ ],
+ "ממלכה": [
+ {
+ "word_nikkud": "מַמְלָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4526-mamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "ממלכות": [
+ {
+ "word_nikkud": "מַמְלָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4526-mamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "ממלכת־": [
+ {
+ "word_nikkud": "מַמְלָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4526-mamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "ממלכות־": [
+ {
+ "word_nikkud": "מַמְלָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4526-mamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "מלכות": [
+ {
+ "word_nikkud": "מַלְכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3645-malchut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַלְכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6050-malka",
+ "gender": "feminine"
+ }
+ ],
+ "מלכויות": [
+ {
+ "word_nikkud": "מַלְכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3645-malchut",
+ "gender": "feminine"
+ }
+ ],
+ "מלכות־": [
+ {
+ "word_nikkud": "מַלְכוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3645-malchut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַלְכָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6050-malka",
+ "gender": "feminine"
+ }
+ ],
+ "מלכויות־": [
+ {
+ "word_nikkud": "מַלְכוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3645-malchut",
+ "gender": "feminine"
+ }
+ ],
+ "מלכה": [
+ {
+ "word_nikkud": "מַלְכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6050-malka",
+ "gender": "feminine"
+ }
+ ],
+ "מלכת־": [
+ {
+ "word_nikkud": "מַלְכָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6050-malka",
+ "gender": "feminine"
+ }
+ ],
+ "המלכה": [
+ {
+ "word_nikkud": "הַמְלָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7744-hamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "המלכות": [
+ {
+ "word_nikkud": "הַמְלָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7744-hamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "המלכת־": [
+ {
+ "word_nikkud": "הַמְלָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7744-hamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "המלכות־": [
+ {
+ "word_nikkud": "הַמְלָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7744-hamlacha",
+ "gender": "feminine"
+ }
+ ],
+ "ממלכתיות": [
+ {
+ "word_nikkud": "מַמְלַכְתִּיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4528-mamlachtiyut",
+ "gender": "feminine"
+ }
+ ],
+ "ממלכתיות־": [
+ {
+ "word_nikkud": "מַמְלַכְתִּיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4528-mamlachtiyut",
+ "gender": "feminine"
+ }
+ ],
+ "מלוכה": [
+ {
+ "word_nikkud": "מְלוּכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6475-melucha",
+ "gender": "feminine"
+ }
+ ],
+ "מלוכות": [
+ {
+ "word_nikkud": "מְלוּכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6475-melucha",
+ "gender": "feminine"
+ }
+ ],
+ "מלוכת־": [
+ {
+ "word_nikkud": "מְלוּכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6475-melucha",
+ "gender": "feminine"
+ }
+ ],
+ "מלוכות־": [
+ {
+ "word_nikkud": "מְלוּכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6475-melucha",
+ "gender": "feminine"
+ }
+ ],
+ "מילים": [
+ {
+ "word_nikkud": "מִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4746-mila",
+ "gender": "feminine"
+ }
+ ],
+ "מלל": [
+ {
+ "word_nikkud": "מֶלֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3117-melel",
+ "gender": "masculine"
+ }
+ ],
+ "מלל־": [
+ {
+ "word_nikkud": "מֶלֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3117-melel",
+ "gender": "masculine"
+ }
+ ],
+ "תמליל": [
+ {
+ "word_nikkud": "תַּמְלִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7304-tamlil",
+ "gender": "masculine"
+ }
+ ],
+ "תמלילים": [
+ {
+ "word_nikkud": "תַּמְלִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7304-tamlil",
+ "gender": "masculine"
+ }
+ ],
+ "תמליל־": [
+ {
+ "word_nikkud": "תַּמְלִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7304-tamlil",
+ "gender": "masculine"
+ }
+ ],
+ "תמלילי־": [
+ {
+ "word_nikkud": "תַּמְלִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7304-tamlil",
+ "gender": "masculine"
+ }
+ ],
+ "מלפפון": [
+ {
+ "word_nikkud": "מְלָפְפוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4855-melafefon",
+ "gender": "masculine"
+ }
+ ],
+ "מלפפונים": [
+ {
+ "word_nikkud": "מְלָפְפוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4855-melafefon",
+ "gender": "masculine"
+ }
+ ],
+ "מלפפון־": [
+ {
+ "word_nikkud": "מְלָפְפוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4855-melafefon",
+ "gender": "masculine"
+ }
+ ],
+ "מלפפוני־": [
+ {
+ "word_nikkud": "מְלָפְפוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4855-melafefon",
+ "gender": "masculine"
+ }
+ ],
+ "המלצה": [
+ {
+ "word_nikkud": "הַמְלָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2886-hamlatza",
+ "gender": "feminine"
+ }
+ ],
+ "המלצות": [
+ {
+ "word_nikkud": "הַמְלָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2886-hamlatza",
+ "gender": "feminine"
+ }
+ ],
+ "המלצת־": [
+ {
+ "word_nikkud": "הַמְלָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2886-hamlatza",
+ "gender": "feminine"
+ }
+ ],
+ "המלצות־": [
+ {
+ "word_nikkud": "הַמְלָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2886-hamlatza",
+ "gender": "feminine"
+ }
+ ],
+ "מלצר": [
+ {
+ "word_nikkud": "מֶלְצַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5946-meltzar",
+ "gender": "masculine"
+ }
+ ],
+ "מלצרים": [
+ {
+ "word_nikkud": "מֶלְצַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5946-meltzar",
+ "gender": "masculine"
+ }
+ ],
+ "מלצר־": [
+ {
+ "word_nikkud": "מֶלְצַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5946-meltzar",
+ "gender": "masculine"
+ }
+ ],
+ "מלצרי־": [
+ {
+ "word_nikkud": "מֶלְצַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5946-meltzar",
+ "gender": "masculine"
+ }
+ ],
+ "ממותה": [
+ {
+ "word_nikkud": "מָמוּתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8214-mamuta",
+ "gender": "feminine"
+ }
+ ],
+ "ממותות": [
+ {
+ "word_nikkud": "מָמוּתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8214-mamuta",
+ "gender": "feminine"
+ }
+ ],
+ "ממותת־": [
+ {
+ "word_nikkud": "מָמוּתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8214-mamuta",
+ "gender": "feminine"
+ }
+ ],
+ "ממותות־": [
+ {
+ "word_nikkud": "מָמוּתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8214-mamuta",
+ "gender": "feminine"
+ }
+ ],
+ "מימון": [
+ {
+ "word_nikkud": "מִמּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2975-mimun",
+ "gender": "masculine"
+ }
+ ],
+ "מימונים": [
+ {
+ "word_nikkud": "מִמּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2975-mimun",
+ "gender": "masculine"
+ }
+ ],
+ "מימון־": [
+ {
+ "word_nikkud": "מִמּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2975-mimun",
+ "gender": "masculine"
+ }
+ ],
+ "מימוני־": [
+ {
+ "word_nikkud": "מִמּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2975-mimun",
+ "gender": "masculine"
+ }
+ ],
+ "ממשיות": [
+ {
+ "word_nikkud": "מַמָּשִׁיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6459-mamashiyut",
+ "gender": "feminine"
+ }
+ ],
+ "ממשיויות": [
+ {
+ "word_nikkud": "מַמָּשִׁיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6459-mamashiyut",
+ "gender": "feminine"
+ }
+ ],
+ "ממשיות־": [
+ {
+ "word_nikkud": "מַמָּשִׁיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6459-mamashiyut",
+ "gender": "feminine"
+ }
+ ],
+ "ממשיויות־": [
+ {
+ "word_nikkud": "מַמָּשִׁיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6459-mamashiyut",
+ "gender": "feminine"
+ }
+ ],
+ "מימוש": [
+ {
+ "word_nikkud": "מִמּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4503-mimush",
+ "gender": "masculine"
+ }
+ ],
+ "מימושים": [
+ {
+ "word_nikkud": "מִמּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4503-mimush",
+ "gender": "masculine"
+ }
+ ],
+ "מימוש־": [
+ {
+ "word_nikkud": "מִמּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4503-mimush",
+ "gender": "masculine"
+ }
+ ],
+ "מימושי־": [
+ {
+ "word_nikkud": "מִמּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4503-mimush",
+ "gender": "masculine"
+ }
+ ],
+ "ממש": [
+ {
+ "word_nikkud": "מַמָּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5979-mamash",
+ "gender": "masculine"
+ }
+ ],
+ "ממשות": [
+ {
+ "word_nikkud": "מַמָּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5979-mamash",
+ "gender": "masculine"
+ }
+ ],
+ "ממש־": [
+ {
+ "word_nikkud": "מַמָּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5979-mamash",
+ "gender": "masculine"
+ }
+ ],
+ "ממשות־": [
+ {
+ "word_nikkud": "מַמָּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5979-mamash",
+ "gender": "masculine"
+ }
+ ],
+ "מן": [
+ {
+ "word_nikkud": "מָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9279-man",
+ "gender": "masculine"
+ }
+ ],
+ "מן־": [
+ {
+ "word_nikkud": "מָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9279-man",
+ "gender": "masculine"
+ }
+ ],
+ "מנגו": [
+ {
+ "word_nikkud": "מַנְגוֹ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7167-mango",
+ "gender": "masculine"
+ }
+ ],
+ "מנגואים": [
+ {
+ "word_nikkud": "מַנְגוֹ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7167-mango",
+ "gender": "masculine"
+ }
+ ],
+ "מנגו־": [
+ {
+ "word_nikkud": "מַנְגוֹ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7167-mango",
+ "gender": "masculine"
+ }
+ ],
+ "מנגואי־": [
+ {
+ "word_nikkud": "מַנְגוֹ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7167-mango",
+ "gender": "masculine"
+ }
+ ],
+ "מנגינה": [
+ {
+ "word_nikkud": "מַנְגִּינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5408-mangina",
+ "gender": "feminine"
+ }
+ ],
+ "מנגינות": [
+ {
+ "word_nikkud": "מַנְגִּינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5408-mangina",
+ "gender": "feminine"
+ }
+ ],
+ "מנגינת־": [
+ {
+ "word_nikkud": "מַנְגִּינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5408-mangina",
+ "gender": "feminine"
+ }
+ ],
+ "מנגינות־": [
+ {
+ "word_nikkud": "מַנְגִּינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5408-mangina",
+ "gender": "feminine"
+ }
+ ],
+ "מנגנון": [
+ {
+ "word_nikkud": "מַנְגָּנוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6766-manganon",
+ "gender": ""
+ }
+ ],
+ "מנגנונים": [
+ {
+ "word_nikkud": "מַנְגָּנוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6766-manganon",
+ "gender": ""
+ }
+ ],
+ "מנגנון־": [
+ {
+ "word_nikkud": "מַנְגָּנוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6766-manganon",
+ "gender": ""
+ }
+ ],
+ "מנגנוני־": [
+ {
+ "word_nikkud": "מַנְגָּנוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6766-manganon",
+ "gender": ""
+ }
+ ],
+ "מנחה": [
+ {
+ "word_nikkud": "מִנְחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4265-mincha",
+ "gender": "feminine"
+ }
+ ],
+ "מנחות": [
+ {
+ "word_nikkud": "מִנְחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4265-mincha",
+ "gender": "feminine"
+ }
+ ],
+ "מנחת־": [
+ {
+ "word_nikkud": "מִנְחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4265-mincha",
+ "gender": "feminine"
+ }
+ ],
+ "מנחות־": [
+ {
+ "word_nikkud": "מִנְחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4265-mincha",
+ "gender": "feminine"
+ }
+ ],
+ "מנוי": [
+ {
+ "word_nikkud": "מָנוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4015-manuy",
+ "gender": "masculine"
+ }
+ ],
+ "מנויים": [
+ {
+ "word_nikkud": "מָנוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4015-manuy",
+ "gender": "masculine"
+ }
+ ],
+ "מנוי־": [
+ {
+ "word_nikkud": "מָנוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4015-manuy",
+ "gender": "masculine"
+ }
+ ],
+ "מנויי־": [
+ {
+ "word_nikkud": "מָנוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4015-manuy",
+ "gender": "masculine"
+ }
+ ],
+ "מניה": [
+ {
+ "word_nikkud": "מְנָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2850-menaya",
+ "gender": "feminine"
+ }
+ ],
+ "מניות": [
+ {
+ "word_nikkud": "מְנָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2850-menaya",
+ "gender": "feminine"
+ }
+ ],
+ "מניית־": [
+ {
+ "word_nikkud": "מְנָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2850-menaya",
+ "gender": "feminine"
+ }
+ ],
+ "מניות־": [
+ {
+ "word_nikkud": "מְנָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2850-menaya",
+ "gender": "feminine"
+ }
+ ],
+ "מנה": [
+ {
+ "word_nikkud": "מָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4492-mana",
+ "gender": "feminine"
+ }
+ ],
+ "מנות": [
+ {
+ "word_nikkud": "מָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4492-mana",
+ "gender": "feminine"
+ }
+ ],
+ "מנת־": [
+ {
+ "word_nikkud": "מָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4492-mana",
+ "gender": "feminine"
+ }
+ ],
+ "מנות־": [
+ {
+ "word_nikkud": "מָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4492-mana",
+ "gender": "feminine"
+ }
+ ],
+ "מונה": [
+ {
+ "word_nikkud": "מוֹנֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6930-mone",
+ "gender": "masculine"
+ }
+ ],
+ "מונים": [
+ {
+ "word_nikkud": "מוֹנֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6930-mone",
+ "gender": "masculine"
+ }
+ ],
+ "מונה־": [
+ {
+ "word_nikkud": "מוֹנֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6930-mone",
+ "gender": "masculine"
+ }
+ ],
+ "מוני־": [
+ {
+ "word_nikkud": "מוֹנֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6930-mone",
+ "gender": "masculine"
+ }
+ ],
+ "מונית": [
+ {
+ "word_nikkud": "מוֹנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6931-monit",
+ "gender": "feminine"
+ }
+ ],
+ "מוניות": [
+ {
+ "word_nikkud": "מוֹנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6931-monit",
+ "gender": "feminine"
+ }
+ ],
+ "מונית־": [
+ {
+ "word_nikkud": "מוֹנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6931-monit",
+ "gender": "feminine"
+ }
+ ],
+ "מוניות־": [
+ {
+ "word_nikkud": "מוֹנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6931-monit",
+ "gender": "feminine"
+ }
+ ],
+ "מניין": [
+ {
+ "word_nikkud": "מִנְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7299-minyan",
+ "gender": "masculine"
+ }
+ ],
+ "מניינים": [
+ {
+ "word_nikkud": "מִנְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7299-minyan",
+ "gender": "masculine"
+ }
+ ],
+ "מניין־": [
+ {
+ "word_nikkud": "מִנְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7299-minyan",
+ "gender": "masculine"
+ }
+ ],
+ "מנייני־": [
+ {
+ "word_nikkud": "מִנְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7299-minyan",
+ "gender": "masculine"
+ }
+ ],
+ "הימנעות": [
+ {
+ "word_nikkud": "הִמָּנְעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8596-himanut",
+ "gender": "feminine"
+ }
+ ],
+ "הימנעויות": [
+ {
+ "word_nikkud": "הִמָּנְעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8596-himanut",
+ "gender": "feminine"
+ }
+ ],
+ "הימנעות־": [
+ {
+ "word_nikkud": "הִמָּנְעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8596-himanut",
+ "gender": "feminine"
+ }
+ ],
+ "הימנעויות־": [
+ {
+ "word_nikkud": "הִמָּנְעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8596-himanut",
+ "gender": "feminine"
+ }
+ ],
+ "מניעה": [
+ {
+ "word_nikkud": "מְנִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3087-menia",
+ "gender": "feminine"
+ }
+ ],
+ "מניעות": [
+ {
+ "word_nikkud": "מְנִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3087-menia",
+ "gender": "feminine"
+ }
+ ],
+ "מניעת־": [
+ {
+ "word_nikkud": "מְנִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3087-menia",
+ "gender": "feminine"
+ }
+ ],
+ "מניעות־": [
+ {
+ "word_nikkud": "מְנִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3087-menia",
+ "gender": "feminine"
+ }
+ ],
+ "מנתה": [
+ {
+ "word_nikkud": "מֶנְתָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7068-menta",
+ "gender": "feminine"
+ }
+ ],
+ "מנתת־": [
+ {
+ "word_nikkud": "מֶנְתָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7068-menta",
+ "gender": "feminine"
+ }
+ ],
+ "ממסד": [
+ {
+ "word_nikkud": "מִמְסָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3085-mimsad",
+ "gender": "masculine"
+ }
+ ],
+ "ממסדים": [
+ {
+ "word_nikkud": "מִמְסָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3085-mimsad",
+ "gender": "masculine"
+ }
+ ],
+ "ממסד־": [
+ {
+ "word_nikkud": "מִמְסָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3085-mimsad",
+ "gender": "masculine"
+ }
+ ],
+ "ממסדי־": [
+ {
+ "word_nikkud": "מִמְסָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3085-mimsad",
+ "gender": "masculine"
+ }
+ ],
+ "מסחור": [
+ {
+ "word_nikkud": "מִסְחוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5512-mischur",
+ "gender": "masculine"
+ }
+ ],
+ "מסחורים": [
+ {
+ "word_nikkud": "מִסְחוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5512-mischur",
+ "gender": "masculine"
+ }
+ ],
+ "מסחור־": [
+ {
+ "word_nikkud": "מִסְחוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5512-mischur",
+ "gender": "masculine"
+ }
+ ],
+ "מסחורי־": [
+ {
+ "word_nikkud": "מִסְחוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5512-mischur",
+ "gender": "masculine"
+ }
+ ],
+ "מסטיק": [
+ {
+ "word_nikkud": "מַסְטִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7004-mastik",
+ "gender": "masculine"
+ }
+ ],
+ "מסטיקים": [
+ {
+ "word_nikkud": "מַסְטִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7004-mastik",
+ "gender": "masculine"
+ }
+ ],
+ "מסטיק־": [
+ {
+ "word_nikkud": "מַסְטִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7004-mastik",
+ "gender": "masculine"
+ }
+ ],
+ "מסטיקי־": [
+ {
+ "word_nikkud": "מַסְטִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7004-mastik",
+ "gender": "masculine"
+ }
+ ],
+ "מיסוי": [
+ {
+ "word_nikkud": "מִסּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6860-misuy",
+ "gender": "masculine"
+ }
+ ],
+ "מיסויים": [
+ {
+ "word_nikkud": "מִסּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6860-misuy",
+ "gender": "masculine"
+ }
+ ],
+ "מיסוי־": [
+ {
+ "word_nikkud": "מִסּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6860-misuy",
+ "gender": "masculine"
+ }
+ ],
+ "מיסויי־": [
+ {
+ "word_nikkud": "מִסּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6860-misuy",
+ "gender": "masculine"
+ }
+ ],
+ "תמיסה": [
+ {
+ "word_nikkud": "תְּמִסָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3796-tmisa",
+ "gender": "feminine"
+ }
+ ],
+ "תמיסות": [
+ {
+ "word_nikkud": "תְּמִסָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3796-tmisa",
+ "gender": "feminine"
+ }
+ ],
+ "תמיסת־": [
+ {
+ "word_nikkud": "תְּמִסָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3796-tmisa",
+ "gender": "feminine"
+ }
+ ],
+ "תמיסות־": [
+ {
+ "word_nikkud": "תְּמִסָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3796-tmisa",
+ "gender": "feminine"
+ }
+ ],
+ "מס": [
+ {
+ "word_nikkud": "מַס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2676-mas",
+ "gender": "masculine"
+ }
+ ],
+ "מיסים": [
+ {
+ "word_nikkud": "מַס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2676-mas",
+ "gender": "masculine"
+ }
+ ],
+ "מס־": [
+ {
+ "word_nikkud": "מַס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2676-mas",
+ "gender": "masculine"
+ }
+ ],
+ "מיסי־": [
+ {
+ "word_nikkud": "מַס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2676-mas",
+ "gender": "masculine"
+ }
+ ],
+ "מסירות": [
+ {
+ "word_nikkud": "מְסִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6464-mesirut",
+ "gender": "feminine"
+ }
+ ],
+ "מסירויות": [
+ {
+ "word_nikkud": "מְסִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6464-mesirut",
+ "gender": "feminine"
+ }
+ ],
+ "מסירות־": [
+ {
+ "word_nikkud": "מְסִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6464-mesirut",
+ "gender": "feminine"
+ }
+ ],
+ "מסירויות־": [
+ {
+ "word_nikkud": "מְסִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6464-mesirut",
+ "gender": "feminine"
+ }
+ ],
+ "מסר": [
+ {
+ "word_nikkud": "מֶסֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3804-meser",
+ "gender": "masculine"
+ }
+ ],
+ "מסרים": [
+ {
+ "word_nikkud": "מֶסֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3804-meser",
+ "gender": "masculine"
+ }
+ ],
+ "מסר־": [
+ {
+ "word_nikkud": "מֶסֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3804-meser",
+ "gender": "masculine"
+ }
+ ],
+ "מסרי־": [
+ {
+ "word_nikkud": "מֶסֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3804-meser",
+ "gender": "masculine"
+ }
+ ],
+ "מסרון": [
+ {
+ "word_nikkud": "מִסְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7530-misron",
+ "gender": "masculine"
+ }
+ ],
+ "מסרונים": [
+ {
+ "word_nikkud": "מִסְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7530-misron",
+ "gender": "masculine"
+ }
+ ],
+ "מסרון־": [
+ {
+ "word_nikkud": "מִסְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7530-misron",
+ "gender": "masculine"
+ }
+ ],
+ "מסרוני־": [
+ {
+ "word_nikkud": "מִסְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7530-misron",
+ "gender": "masculine"
+ }
+ ],
+ "מסורת": [
+ {
+ "word_nikkud": "מָסֹרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6275-masoret",
+ "gender": "feminine"
+ }
+ ],
+ "מסורות": [
+ {
+ "word_nikkud": "מָסֹרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6275-masoret",
+ "gender": "feminine"
+ }
+ ],
+ "מסורת־": [
+ {
+ "word_nikkud": "מָסֹרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6275-masoret",
+ "gender": "feminine"
+ }
+ ],
+ "מסורות־": [
+ {
+ "word_nikkud": "מָסֹרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6275-masoret",
+ "gender": "feminine"
+ }
+ ],
+ "מסתורין": [
+ {
+ "word_nikkud": "מִסְתּוֹרִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8169-mistorin",
+ "gender": "masculine"
+ }
+ ],
+ "מעידה": [
+ {
+ "word_nikkud": "מְעִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8372-meida",
+ "gender": "feminine"
+ }
+ ],
+ "מעידות": [
+ {
+ "word_nikkud": "מְעִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8372-meida",
+ "gender": "feminine"
+ }
+ ],
+ "מעידת־": [
+ {
+ "word_nikkud": "מְעִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8372-meida",
+ "gender": "feminine"
+ }
+ ],
+ "מעידות־": [
+ {
+ "word_nikkud": "מְעִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8372-meida",
+ "gender": "feminine"
+ }
+ ],
+ "מיעוט": [
+ {
+ "word_nikkud": "מִעוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7888-miut",
+ "gender": "masculine"
+ }
+ ],
+ "מיעוטים": [
+ {
+ "word_nikkud": "מִעוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7888-miut",
+ "gender": "masculine"
+ }
+ ],
+ "מיעוט־": [
+ {
+ "word_nikkud": "מִעוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7888-miut",
+ "gender": "masculine"
+ }
+ ],
+ "מיעוטי־": [
+ {
+ "word_nikkud": "מִעוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7888-miut",
+ "gender": "masculine"
+ }
+ ],
+ "מעי": [
+ {
+ "word_nikkud": "מְעִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6794-mei",
+ "gender": "masculine"
+ }
+ ],
+ "מעיים": [
+ {
+ "word_nikkud": "מְעִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6794-mei",
+ "gender": "masculine"
+ }
+ ],
+ "מעי־": [
+ {
+ "word_nikkud": "מְעִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6794-mei",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מְעִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6794-mei",
+ "gender": "masculine"
+ }
+ ],
+ "מעיל": [
+ {
+ "word_nikkud": "מְעִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5743-meil",
+ "gender": "masculine"
+ }
+ ],
+ "מעילים": [
+ {
+ "word_nikkud": "מְעִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5743-meil",
+ "gender": "masculine"
+ }
+ ],
+ "מעיל־": [
+ {
+ "word_nikkud": "מְעִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5743-meil",
+ "gender": "masculine"
+ }
+ ],
+ "מעילי־": [
+ {
+ "word_nikkud": "מְעִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5743-meil",
+ "gender": "masculine"
+ }
+ ],
+ "מעילה": [
+ {
+ "word_nikkud": "מְעִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9219-meila",
+ "gender": "feminine"
+ }
+ ],
+ "מעילות": [
+ {
+ "word_nikkud": "מְעִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9219-meila",
+ "gender": "feminine"
+ }
+ ],
+ "מעילת־": [
+ {
+ "word_nikkud": "מְעִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9219-meila",
+ "gender": "feminine"
+ }
+ ],
+ "מעילות־": [
+ {
+ "word_nikkud": "מְעִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9219-meila",
+ "gender": "feminine"
+ }
+ ],
+ "מען": [
+ {
+ "word_nikkud": "מַעַן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5830-maan",
+ "gender": "masculine"
+ }
+ ],
+ "מענים": [
+ {
+ "word_nikkud": "מַעַן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5830-maan",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַעֲנֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5351-maane",
+ "gender": "masculine"
+ }
+ ],
+ "מען־": [
+ {
+ "word_nikkud": "מַעַן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5830-maan",
+ "gender": "masculine"
+ }
+ ],
+ "מעני־": [
+ {
+ "word_nikkud": "מַעַן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5830-maan",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מַעֲנֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5351-maane",
+ "gender": "masculine"
+ }
+ ],
+ "מפה": [
+ {
+ "word_nikkud": "מַפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6732-mapa",
+ "gender": "feminine"
+ }
+ ],
+ "מפות": [
+ {
+ "word_nikkud": "מַפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6732-mapa",
+ "gender": "feminine"
+ }
+ ],
+ "מפת־": [
+ {
+ "word_nikkud": "מַפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6732-mapa",
+ "gender": "feminine"
+ }
+ ],
+ "מפות־": [
+ {
+ "word_nikkud": "מַפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6732-mapa",
+ "gender": "feminine"
+ }
+ ],
+ "מפית": [
+ {
+ "word_nikkud": "מַפִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7954-mapit",
+ "gender": "feminine"
+ }
+ ],
+ "מפיות": [
+ {
+ "word_nikkud": "מַפִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7954-mapit",
+ "gender": "feminine"
+ }
+ ],
+ "מפית־": [
+ {
+ "word_nikkud": "מַפִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7954-mapit",
+ "gender": "feminine"
+ }
+ ],
+ "מפיות־": [
+ {
+ "word_nikkud": "מַפִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7954-mapit",
+ "gender": "feminine"
+ }
+ ],
+ "מופת": [
+ {
+ "word_nikkud": "מוֹפֵת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3950-mofet",
+ "gender": "masculine"
+ }
+ ],
+ "מופתים": [
+ {
+ "word_nikkud": "מוֹפֵת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3950-mofet",
+ "gender": "masculine"
+ }
+ ],
+ "מופת־": [
+ {
+ "word_nikkud": "מוֹפֵת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3950-mofet",
+ "gender": "masculine"
+ }
+ ],
+ "מופתי־": [
+ {
+ "word_nikkud": "מוֹפֵת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3950-mofet",
+ "gender": "masculine"
+ }
+ ],
+ "מציאות": [
+ {
+ "word_nikkud": "מְצִיאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5363-metziut",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "מְצִיאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6140-metzia",
+ "gender": "feminine"
+ }
+ ],
+ "מציאויות": [
+ {
+ "word_nikkud": "מְצִיאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5363-metziut",
+ "gender": ""
+ }
+ ],
+ "מציאות־": [
+ {
+ "word_nikkud": "מְצִיאוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5363-metziut",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "מְצִיאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6140-metzia",
+ "gender": "feminine"
+ }
+ ],
+ "מציאויות־": [
+ {
+ "word_nikkud": "מְצִיאוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5363-metziut",
+ "gender": ""
+ }
+ ],
+ "התמצאות": [
+ {
+ "word_nikkud": "הִתְמַצְּאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3018-hitmatzut",
+ "gender": "feminine"
+ }
+ ],
+ "התמצאות־": [
+ {
+ "word_nikkud": "הִתְמַצְּאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3018-hitmatzut",
+ "gender": "feminine"
+ }
+ ],
+ "הימצאות": [
+ {
+ "word_nikkud": "הִמָּצְאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2868-himatzut",
+ "gender": "feminine"
+ }
+ ],
+ "הימצאות־": [
+ {
+ "word_nikkud": "הִמָּצְאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2868-himatzut",
+ "gender": "feminine"
+ }
+ ],
+ "המצאה": [
+ {
+ "word_nikkud": "הַמְצָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2887-hamtzaa",
+ "gender": "feminine"
+ }
+ ],
+ "המצאות": [
+ {
+ "word_nikkud": "הַמְצָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2887-hamtzaa",
+ "gender": "feminine"
+ }
+ ],
+ "המצאת־": [
+ {
+ "word_nikkud": "הַמְצָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2887-hamtzaa",
+ "gender": "feminine"
+ }
+ ],
+ "המצאות־": [
+ {
+ "word_nikkud": "הַמְצָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2887-hamtzaa",
+ "gender": "feminine"
+ }
+ ],
+ "מציאה": [
+ {
+ "word_nikkud": "מְצִיאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6140-metzia",
+ "gender": "feminine"
+ }
+ ],
+ "מציאת־": [
+ {
+ "word_nikkud": "מְצִיאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6140-metzia",
+ "gender": "feminine"
+ }
+ ],
+ "ממצא": [
+ {
+ "word_nikkud": "מִמְצָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9269-mimtza",
+ "gender": "masculine"
+ }
+ ],
+ "ממצאים": [
+ {
+ "word_nikkud": "מִמְצָא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9269-mimtza",
+ "gender": "masculine"
+ }
+ ],
+ "ממצא־": [
+ {
+ "word_nikkud": "מִמְצָא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9269-mimtza",
+ "gender": "masculine"
+ }
+ ],
+ "ממצאי־": [
+ {
+ "word_nikkud": "מִמְצָא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9269-mimtza",
+ "gender": "masculine"
+ }
+ ],
+ "מיצוב": [
+ {
+ "word_nikkud": "מִצּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2640-mitzuv",
+ "gender": "masculine"
+ }
+ ],
+ "מיצובים": [
+ {
+ "word_nikkud": "מִצּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2640-mitzuv",
+ "gender": "masculine"
+ }
+ ],
+ "מיצוב־": [
+ {
+ "word_nikkud": "מִצּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2640-mitzuv",
+ "gender": "masculine"
+ }
+ ],
+ "מיצובי־": [
+ {
+ "word_nikkud": "מִצּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2640-mitzuv",
+ "gender": "masculine"
+ }
+ ],
+ "מצח": [
+ {
+ "word_nikkud": "מֵצַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5493-metzach",
+ "gender": "masculine"
+ }
+ ],
+ "מצחים": [
+ {
+ "word_nikkud": "מֵצַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5493-metzach",
+ "gender": "masculine"
+ }
+ ],
+ "מצח־": [
+ {
+ "word_nikkud": "מֵצַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5493-metzach",
+ "gender": "masculine"
+ }
+ ],
+ "מצחי־": [
+ {
+ "word_nikkud": "מֵצַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5493-metzach",
+ "gender": "masculine"
+ }
+ ],
+ "תמצית": [
+ {
+ "word_nikkud": "תַּמְצִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3770-tamtzit",
+ "gender": "feminine"
+ }
+ ],
+ "תמציות": [
+ {
+ "word_nikkud": "תַּמְצִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3770-tamtzit",
+ "gender": "feminine"
+ }
+ ],
+ "תמצית־": [
+ {
+ "word_nikkud": "תַּמְצִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3770-tamtzit",
+ "gender": "feminine"
+ }
+ ],
+ "תמציות־": [
+ {
+ "word_nikkud": "תַּמְצִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3770-tamtzit",
+ "gender": "feminine"
+ }
+ ],
+ "מיץ": [
+ {
+ "word_nikkud": "מִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6391-mitz",
+ "gender": "masculine"
+ }
+ ],
+ "מיצים": [
+ {
+ "word_nikkud": "מִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6391-mitz",
+ "gender": "masculine"
+ }
+ ],
+ "מיץ־": [
+ {
+ "word_nikkud": "מִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6391-mitz",
+ "gender": "masculine"
+ }
+ ],
+ "מיצי־": [
+ {
+ "word_nikkud": "מִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6391-mitz",
+ "gender": "masculine"
+ }
+ ],
+ "אמצעות": [
+ {
+ "word_nikkud": "אֶמְצָעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5508-emtzaut",
+ "gender": "feminine"
+ }
+ ],
+ "אמצעות־": [
+ {
+ "word_nikkud": "אֶמְצָעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5508-emtzaut",
+ "gender": "feminine"
+ }
+ ],
+ "אמצע": [
+ {
+ "word_nikkud": "אֶמְצַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4872-emtza",
+ "gender": "masculine"
+ }
+ ],
+ "אמצעים": [
+ {
+ "word_nikkud": "אֶמְצַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4872-emtza",
+ "gender": "masculine"
+ }
+ ],
+ "אמצע־": [
+ {
+ "word_nikkud": "אֶמְצַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4872-emtza",
+ "gender": "masculine"
+ }
+ ],
+ "אמצעי־": [
+ {
+ "word_nikkud": "אֶמְצַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4872-emtza",
+ "gender": "masculine"
+ }
+ ],
+ "מציצה": [
+ {
+ "word_nikkud": "מְצִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6756-metzitza",
+ "gender": "feminine"
+ }
+ ],
+ "מציצות": [
+ {
+ "word_nikkud": "מְצִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6756-metzitza",
+ "gender": "feminine"
+ }
+ ],
+ "מציצת־": [
+ {
+ "word_nikkud": "מְצִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6756-metzitza",
+ "gender": "feminine"
+ }
+ ],
+ "מציצות־": [
+ {
+ "word_nikkud": "מְצִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6756-metzitza",
+ "gender": "feminine"
+ }
+ ],
+ "מצה": [
+ {
+ "word_nikkud": "מַצָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7080-matza",
+ "gender": "feminine"
+ }
+ ],
+ "מצות": [
+ {
+ "word_nikkud": "מַצָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7080-matza",
+ "gender": "feminine"
+ }
+ ],
+ "מצות־": [
+ {
+ "word_nikkud": "מַצָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7080-matza",
+ "gender": "feminine"
+ }
+ ],
+ "מצרים": [
+ {
+ "word_nikkud": "מִצְרַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5644-mitzrayim",
+ "gender": "feminine"
+ }
+ ],
+ "מיקוד": [
+ {
+ "word_nikkud": "מִקּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6389-mikud",
+ "gender": "masculine"
+ }
+ ],
+ "מיקודים": [
+ {
+ "word_nikkud": "מִקּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6389-mikud",
+ "gender": "masculine"
+ }
+ ],
+ "מיקוד־": [
+ {
+ "word_nikkud": "מִקּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6389-mikud",
+ "gender": "masculine"
+ }
+ ],
+ "מיקודי־": [
+ {
+ "word_nikkud": "מִקּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6389-mikud",
+ "gender": "masculine"
+ }
+ ],
+ "התמקחות": [
+ {
+ "word_nikkud": "הִתְמַקְּחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7391-hitmakchut",
+ "gender": "feminine"
+ }
+ ],
+ "התמקחויות": [
+ {
+ "word_nikkud": "הִתְמַקְּחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7391-hitmakchut",
+ "gender": "feminine"
+ }
+ ],
+ "התמקחות־": [
+ {
+ "word_nikkud": "הִתְמַקְּחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7391-hitmakchut",
+ "gender": "feminine"
+ }
+ ],
+ "התמקחויות־": [
+ {
+ "word_nikkud": "הִתְמַקְּחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7391-hitmakchut",
+ "gender": "feminine"
+ }
+ ],
+ "מקטורן": [
+ {
+ "word_nikkud": "מִקְטֹרֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4385-miktoren",
+ "gender": "masculine"
+ }
+ ],
+ "מקטורנים": [
+ {
+ "word_nikkud": "מִקְטֹרֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4385-miktoren",
+ "gender": "masculine"
+ }
+ ],
+ "מקטורן־": [
+ {
+ "word_nikkud": "מִקְטֹרֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4385-miktoren",
+ "gender": "masculine"
+ }
+ ],
+ "מקטורני־": [
+ {
+ "word_nikkud": "מִקְטֹרֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4385-miktoren",
+ "gender": "masculine"
+ }
+ ],
+ "מקום": [
+ {
+ "word_nikkud": "מָקוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3727-makom",
+ "gender": "masculine"
+ }
+ ],
+ "מקומות": [
+ {
+ "word_nikkud": "מָקוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3727-makom",
+ "gender": "masculine"
+ }
+ ],
+ "מקום־": [
+ {
+ "word_nikkud": "מָקוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3727-makom",
+ "gender": "masculine"
+ }
+ ],
+ "מקומות־": [
+ {
+ "word_nikkud": "מָקוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3727-makom",
+ "gender": "masculine"
+ }
+ ],
+ "מקסום": [
+ {
+ "word_nikkud": "מִקְסוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9212-miksum",
+ "gender": "masculine"
+ }
+ ],
+ "מקסום־": [
+ {
+ "word_nikkud": "מִקְסוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9212-miksum",
+ "gender": "masculine"
+ }
+ ],
+ "מקצת": [
+ {
+ "word_nikkud": "מִקְצָת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8150-miktzat",
+ "gender": "feminine"
+ }
+ ],
+ "מקצת־": [
+ {
+ "word_nikkud": "מִקְצָת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8150-miktzat",
+ "gender": "feminine"
+ }
+ ],
+ "מקק": [
+ {
+ "word_nikkud": "מֶקֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8046-mekek",
+ "gender": "masculine"
+ }
+ ],
+ "מקק־": [
+ {
+ "word_nikkud": "מֶקֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8046-mekek",
+ "gender": "masculine"
+ }
+ ],
+ "מקור": [
+ {
+ "word_nikkud": "מָקוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5748-makor",
+ "gender": "masculine"
+ }
+ ],
+ "מקורות": [
+ {
+ "word_nikkud": "מָקוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5748-makor",
+ "gender": "masculine"
+ }
+ ],
+ "מקור־": [
+ {
+ "word_nikkud": "מָקוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5748-makor",
+ "gender": "masculine"
+ }
+ ],
+ "מקורות־": [
+ {
+ "word_nikkud": "מָקוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5748-makor",
+ "gender": "masculine"
+ }
+ ],
+ "המראה": [
+ {
+ "word_nikkud": "הַמְרָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2888-hamraa",
+ "gender": "feminine"
+ }
+ ],
+ "המראות": [
+ {
+ "word_nikkud": "הַמְרָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2888-hamraa",
+ "gender": "feminine"
+ }
+ ],
+ "המראת־": [
+ {
+ "word_nikkud": "הַמְרָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2888-hamraa",
+ "gender": "feminine"
+ }
+ ],
+ "המראות־": [
+ {
+ "word_nikkud": "הַמְרָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2888-hamraa",
+ "gender": "feminine"
+ }
+ ],
+ "מרד": [
+ {
+ "word_nikkud": "מֶרֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3118-mered",
+ "gender": "masculine"
+ }
+ ],
+ "מרדים": [
+ {
+ "word_nikkud": "מֶרֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3118-mered",
+ "gender": "masculine"
+ }
+ ],
+ "מרד־": [
+ {
+ "word_nikkud": "מֶרֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3118-mered",
+ "gender": "masculine"
+ }
+ ],
+ "מרדי־": [
+ {
+ "word_nikkud": "מֶרֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3118-mered",
+ "gender": "masculine"
+ }
+ ],
+ "מרדן": [
+ {
+ "word_nikkud": "מַרְדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5951-mardan",
+ "gender": "masculine"
+ }
+ ],
+ "מרדנים": [
+ {
+ "word_nikkud": "מַרְדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5951-mardan",
+ "gender": "masculine"
+ }
+ ],
+ "מרדן־": [
+ {
+ "word_nikkud": "מַרְדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5951-mardan",
+ "gender": "masculine"
+ }
+ ],
+ "מרדני־": [
+ {
+ "word_nikkud": "מַרְדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5951-mardan",
+ "gender": "masculine"
+ }
+ ],
+ "מרות": [
+ {
+ "word_nikkud": "מָרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8293-marut",
+ "gender": "feminine"
+ }
+ ],
+ "מרות־": [
+ {
+ "word_nikkud": "מָרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8293-marut",
+ "gender": "feminine"
+ }
+ ],
+ "ממרח": [
+ {
+ "word_nikkud": "מִמְרָח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9200-mimrach",
+ "gender": "masculine"
+ }
+ ],
+ "ממרחים": [
+ {
+ "word_nikkud": "מִמְרָח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9200-mimrach",
+ "gender": "masculine"
+ }
+ ],
+ "ממרח־": [
+ {
+ "word_nikkud": "מִמְרָח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9200-mimrach",
+ "gender": "masculine"
+ }
+ ],
+ "ממרחי־": [
+ {
+ "word_nikkud": "מִמְרָח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9200-mimrach",
+ "gender": "masculine"
+ }
+ ],
+ "מרית": [
+ {
+ "word_nikkud": "מָרִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6711-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מריות": [
+ {
+ "word_nikkud": "מָרִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6711-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מרית־": [
+ {
+ "word_nikkud": "מָרִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6711-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מריות־": [
+ {
+ "word_nikkud": "מָרִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6711-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מרכול": [
+ {
+ "word_nikkud": "מַרְכּוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9034-markol",
+ "gender": "masculine"
+ }
+ ],
+ "מרכולים": [
+ {
+ "word_nikkud": "מַרְכּוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9034-markol",
+ "gender": "masculine"
+ }
+ ],
+ "מרכול־": [
+ {
+ "word_nikkud": "מַרְכּוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9034-markol",
+ "gender": "masculine"
+ }
+ ],
+ "מרכולי־": [
+ {
+ "word_nikkud": "מַרְכּוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9034-markol",
+ "gender": "masculine"
+ }
+ ],
+ "המרצה": [
+ {
+ "word_nikkud": "הַמְרָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2583-hamratza",
+ "gender": "feminine"
+ }
+ ],
+ "המרצות": [
+ {
+ "word_nikkud": "הַמְרָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2583-hamratza",
+ "gender": "feminine"
+ }
+ ],
+ "המרצת־": [
+ {
+ "word_nikkud": "הַמְרָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2583-hamratza",
+ "gender": "feminine"
+ }
+ ],
+ "המרצות־": [
+ {
+ "word_nikkud": "הַמְרָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2583-hamratza",
+ "gender": "feminine"
+ }
+ ],
+ "מרץ": [
+ {
+ "word_nikkud": "מֶרֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3081-meretz",
+ "gender": "masculine"
+ }
+ ],
+ "מרץ־": [
+ {
+ "word_nikkud": "מֶרֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3081-meretz",
+ "gender": "masculine"
+ }
+ ],
+ "תמריץ": [
+ {
+ "word_nikkud": "תַּמְרִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3611-tamritz",
+ "gender": "masculine"
+ }
+ ],
+ "תמריצים": [
+ {
+ "word_nikkud": "תַּמְרִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3611-tamritz",
+ "gender": "masculine"
+ }
+ ],
+ "תמריץ־": [
+ {
+ "word_nikkud": "תַּמְרִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3611-tamritz",
+ "gender": "masculine"
+ }
+ ],
+ "תמריצי־": [
+ {
+ "word_nikkud": "תַּמְרִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3611-tamritz",
+ "gender": "masculine"
+ }
+ ],
+ "תמרוק": [
+ {
+ "word_nikkud": "תַּמְרוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3624-tamruk",
+ "gender": "masculine"
+ }
+ ],
+ "תמרוקים": [
+ {
+ "word_nikkud": "תַּמְרוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3624-tamruk",
+ "gender": "masculine"
+ }
+ ],
+ "תמרוק־": [
+ {
+ "word_nikkud": "תַּמְרוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3624-tamruk",
+ "gender": "masculine"
+ }
+ ],
+ "תמרוקי־": [
+ {
+ "word_nikkud": "תַּמְרוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3624-tamruk",
+ "gender": "masculine"
+ }
+ ],
+ "מרק": [
+ {
+ "word_nikkud": "מָרָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3627-marak",
+ "gender": "masculine"
+ }
+ ],
+ "מרקים": [
+ {
+ "word_nikkud": "מָרָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3627-marak",
+ "gender": "masculine"
+ }
+ ],
+ "מרק־": [
+ {
+ "word_nikkud": "מָרָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3627-marak",
+ "gender": "masculine"
+ }
+ ],
+ "מרקי־": [
+ {
+ "word_nikkud": "מָרָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3627-marak",
+ "gender": "masculine"
+ }
+ ],
+ "מרקר": [
+ {
+ "word_nikkud": "מַרְקֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7069-marker",
+ "gender": "masculine"
+ }
+ ],
+ "מרקרים": [
+ {
+ "word_nikkud": "מַרְקֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7069-marker",
+ "gender": "masculine"
+ }
+ ],
+ "מרקר־": [
+ {
+ "word_nikkud": "מַרְקֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7069-marker",
+ "gender": "masculine"
+ }
+ ],
+ "מרקרי־": [
+ {
+ "word_nikkud": "מַרְקֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7069-marker",
+ "gender": "masculine"
+ }
+ ],
+ "מרור": [
+ {
+ "word_nikkud": "מָרוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8574-maror",
+ "gender": "masculine"
+ }
+ ],
+ "מרורים": [
+ {
+ "word_nikkud": "מָרוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8574-maror",
+ "gender": "masculine"
+ }
+ ],
+ "מרור־": [
+ {
+ "word_nikkud": "מָרוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8574-maror",
+ "gender": "masculine"
+ }
+ ],
+ "מרורי־": [
+ {
+ "word_nikkud": "מָרוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8574-maror",
+ "gender": "masculine"
+ }
+ ],
+ "מושא": [
+ {
+ "word_nikkud": "מֻשָּׂא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5164-musa",
+ "gender": "masculine"
+ }
+ ],
+ "מושאים": [
+ {
+ "word_nikkud": "מֻשָּׂא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5164-musa",
+ "gender": "masculine"
+ }
+ ],
+ "מושא־": [
+ {
+ "word_nikkud": "מֻשָּׂא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5164-musa",
+ "gender": "masculine"
+ }
+ ],
+ "מושאי־": [
+ {
+ "word_nikkud": "מֻשָּׂא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5164-musa",
+ "gender": "masculine"
+ }
+ ],
+ "משאית": [
+ {
+ "word_nikkud": "מַשָּׂאִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4836-masait",
+ "gender": "feminine"
+ }
+ ],
+ "משאיות": [
+ {
+ "word_nikkud": "מַשָּׂאִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4836-masait",
+ "gender": "feminine"
+ }
+ ],
+ "משאית־": [
+ {
+ "word_nikkud": "מַשָּׂאִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4836-masait",
+ "gender": "feminine"
+ }
+ ],
+ "משאיות־": [
+ {
+ "word_nikkud": "מַשָּׂאִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4836-masait",
+ "gender": "feminine"
+ }
+ ],
+ "משחה": [
+ {
+ "word_nikkud": "מִשְׂחֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4255-mische",
+ "gender": "masculine"
+ }
+ ],
+ "משחים": [
+ {
+ "word_nikkud": "מִשְׂחֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4255-mische",
+ "gender": "masculine"
+ }
+ ],
+ "משחה־": [
+ {
+ "word_nikkud": "מִשְׂחֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4255-mische",
+ "gender": "masculine"
+ }
+ ],
+ "משחי־": [
+ {
+ "word_nikkud": "מִשְׂחֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4255-mische",
+ "gender": "masculine"
+ }
+ ],
+ "משיח": [
+ {
+ "word_nikkud": "מָשִׁיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6733-mashiach",
+ "gender": "masculine"
+ }
+ ],
+ "משיחים": [
+ {
+ "word_nikkud": "מָשִׁיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6733-mashiach",
+ "gender": "masculine"
+ }
+ ],
+ "משיח־": [
+ {
+ "word_nikkud": "מָשִׁיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6733-mashiach",
+ "gender": "masculine"
+ }
+ ],
+ "משיחי־": [
+ {
+ "word_nikkud": "מָשִׁיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6733-mashiach",
+ "gender": "masculine"
+ }
+ ],
+ "משי": [
+ {
+ "word_nikkud": "מֶשִׁי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8683-meshi",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מֶשִׁי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8683-meshi",
+ "gender": "masculine"
+ }
+ ],
+ "משי־": [
+ {
+ "word_nikkud": "מֶשִׁי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8683-meshi",
+ "gender": "masculine"
+ }
+ ],
+ "משיכה": [
+ {
+ "word_nikkud": "מְשִׁיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5900-meshicha",
+ "gender": "feminine"
+ }
+ ],
+ "משיכות": [
+ {
+ "word_nikkud": "מְשִׁיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5900-meshicha",
+ "gender": "feminine"
+ }
+ ],
+ "משיכת־": [
+ {
+ "word_nikkud": "מְשִׁיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5900-meshicha",
+ "gender": "feminine"
+ }
+ ],
+ "משיכות־": [
+ {
+ "word_nikkud": "מְשִׁיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5900-meshicha",
+ "gender": "feminine"
+ }
+ ],
+ "המשך": [
+ {
+ "word_nikkud": "הֶמְשֵׁךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2933-hemshech",
+ "gender": "masculine"
+ }
+ ],
+ "המשך־": [
+ {
+ "word_nikkud": "הֶמְשֵׁךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2933-hemshech",
+ "gender": "masculine"
+ }
+ ],
+ "משך": [
+ {
+ "word_nikkud": "מֶשֶׁךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5132-meshech",
+ "gender": "masculine"
+ }
+ ],
+ "משך־": [
+ {
+ "word_nikkud": "מֶשֶׁךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5132-meshech",
+ "gender": "masculine"
+ }
+ ],
+ "הימשכות": [
+ {
+ "word_nikkud": "הִמָּשְׁכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6685-himashchut",
+ "gender": "feminine"
+ }
+ ],
+ "הימשכויות": [
+ {
+ "word_nikkud": "הִמָּשְׁכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6685-himashchut",
+ "gender": "feminine"
+ }
+ ],
+ "הימשכות־": [
+ {
+ "word_nikkud": "הִמָּשְׁכוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6685-himashchut",
+ "gender": "feminine"
+ }
+ ],
+ "הימשכויות־": [
+ {
+ "word_nikkud": "הִמָּשְׁכוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6685-himashchut",
+ "gender": "feminine"
+ }
+ ],
+ "משל": [
+ {
+ "word_nikkud": "מָשָׁל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4364-mashal",
+ "gender": "masculine"
+ }
+ ],
+ "משלים": [
+ {
+ "word_nikkud": "מָשָׁל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4364-mashal",
+ "gender": "masculine"
+ }
+ ],
+ "משל־": [
+ {
+ "word_nikkud": "מָשָׁל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4364-mashal",
+ "gender": "masculine"
+ }
+ ],
+ "משלי־": [
+ {
+ "word_nikkud": "מָשָׁל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4364-mashal",
+ "gender": "masculine"
+ }
+ ],
+ "ממשלת": [
+ {
+ "word_nikkud": "מֶמְשֶׁלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4524-memshelet",
+ "gender": "feminine"
+ }
+ ],
+ "ממשלות": [
+ {
+ "word_nikkud": "מֶמְשֶׁלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4524-memshelet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מֶמְשָׁלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7302-memshala",
+ "gender": "feminine"
+ }
+ ],
+ "ממשלת־": [
+ {
+ "word_nikkud": "מֶמְשֶׁלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4524-memshelet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מֶמְשָׁלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7302-memshala",
+ "gender": "feminine"
+ }
+ ],
+ "ממשלות־": [
+ {
+ "word_nikkud": "מֶמְשֶׁלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4524-memshelet",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מֶמְשָׁלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7302-memshala",
+ "gender": "feminine"
+ }
+ ],
+ "משילות": [
+ {
+ "word_nikkud": "מְשִׁילוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7927-meshilut",
+ "gender": ""
+ }
+ ],
+ "משילות־": [
+ {
+ "word_nikkud": "מְשִׁילוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7927-meshilut",
+ "gender": ""
+ }
+ ],
+ "מושל": [
+ {
+ "word_nikkud": "מוֹשֵׁל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6511-moshel",
+ "gender": "masculine"
+ }
+ ],
+ "מושלים": [
+ {
+ "word_nikkud": "מוֹשֵׁל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6511-moshel",
+ "gender": "masculine"
+ }
+ ],
+ "מושל־": [
+ {
+ "word_nikkud": "מוֹשֵׁל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6511-moshel",
+ "gender": "masculine"
+ }
+ ],
+ "מושלי־": [
+ {
+ "word_nikkud": "מוֹשֵׁל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6511-moshel",
+ "gender": "masculine"
+ }
+ ],
+ "ממשלה": [
+ {
+ "word_nikkud": "מֶמְשָׁלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7302-memshala",
+ "gender": "feminine"
+ }
+ ],
+ "משמש": [
+ {
+ "word_nikkud": "מִשְׁמֵשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5763-mishmesh",
+ "gender": "masculine"
+ }
+ ],
+ "משמשים": [
+ {
+ "word_nikkud": "מִשְׁמֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5763-mishmesh",
+ "gender": "masculine"
+ }
+ ],
+ "משמש־": [
+ {
+ "word_nikkud": "מִשְׁמֵשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5763-mishmesh",
+ "gender": "masculine"
+ }
+ ],
+ "משמשי־": [
+ {
+ "word_nikkud": "מִשְׁמֵשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5763-mishmesh",
+ "gender": "masculine"
+ }
+ ],
+ "משק": [
+ {
+ "word_nikkud": "מֶשֶׁק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5682-meshek",
+ "gender": "masculine"
+ }
+ ],
+ "משקים": [
+ {
+ "word_nikkud": "מֶשֶׁק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5682-meshek",
+ "gender": "masculine"
+ }
+ ],
+ "משק־": [
+ {
+ "word_nikkud": "מֶשֶׁק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5682-meshek",
+ "gender": "masculine"
+ }
+ ],
+ "משקי־": [
+ {
+ "word_nikkud": "מֶשֶׁק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5682-meshek",
+ "gender": "masculine"
+ }
+ ],
+ "ממשק": [
+ {
+ "word_nikkud": "מִמְשָׁק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6828-mimshak",
+ "gender": "masculine"
+ }
+ ],
+ "ממשקים": [
+ {
+ "word_nikkud": "מִמְשָׁק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6828-mimshak",
+ "gender": "masculine"
+ }
+ ],
+ "ממשק־": [
+ {
+ "word_nikkud": "מִמְשָׁק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6828-mimshak",
+ "gender": "masculine"
+ }
+ ],
+ "ממשקי־": [
+ {
+ "word_nikkud": "מִמְשָׁק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6828-mimshak",
+ "gender": "masculine"
+ }
+ ],
+ "משקפי שמש": [
+ {
+ "word_nikkud": "מִשְׁקְפֵי שֵׁמֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6220-mishkefei-shemesh",
+ "gender": "masculine"
+ }
+ ],
+ "משוש": [
+ {
+ "word_nikkud": "מָשׂוֹשׂ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8691-masos",
+ "gender": "masculine"
+ }
+ ],
+ "משושים": [
+ {
+ "word_nikkud": "מָשׂוֹשׂ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8691-masos",
+ "gender": "masculine"
+ }
+ ],
+ "משוש־": [
+ {
+ "word_nikkud": "מָשׂוֹשׂ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8691-masos",
+ "gender": "masculine"
+ }
+ ],
+ "משושי־": [
+ {
+ "word_nikkud": "מָשׂוֹשׂ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8691-masos",
+ "gender": "masculine"
+ }
+ ],
+ "מתג": [
+ {
+ "word_nikkud": "מֶתֶג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4802-meteg",
+ "gender": "masculine"
+ }
+ ],
+ "מתגים": [
+ {
+ "word_nikkud": "מֶתֶג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4802-meteg",
+ "gender": "masculine"
+ }
+ ],
+ "מתג־": [
+ {
+ "word_nikkud": "מֶתֶג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4802-meteg",
+ "gender": "masculine"
+ }
+ ],
+ "מתגי־": [
+ {
+ "word_nikkud": "מֶתֶג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4802-meteg",
+ "gender": "masculine"
+ }
+ ],
+ "מתיחות": [
+ {
+ "word_nikkud": "מְתִיחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5456-metichut",
+ "gender": "feminine"
+ }
+ ],
+ "מתיחויות": [
+ {
+ "word_nikkud": "מְתִיחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5456-metichut",
+ "gender": "feminine"
+ }
+ ],
+ "מתיחות־": [
+ {
+ "word_nikkud": "מְתִיחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5456-metichut",
+ "gender": "feminine"
+ }
+ ],
+ "מתיחויות־": [
+ {
+ "word_nikkud": "מְתִיחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5456-metichut",
+ "gender": "feminine"
+ }
+ ],
+ "מתח": [
+ {
+ "word_nikkud": "מֶתַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4410-metach",
+ "gender": "masculine"
+ }
+ ],
+ "מתחים": [
+ {
+ "word_nikkud": "מֶתַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4410-metach",
+ "gender": "masculine"
+ }
+ ],
+ "מתח־": [
+ {
+ "word_nikkud": "מֶתַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4410-metach",
+ "gender": "masculine"
+ }
+ ],
+ "מתחי־": [
+ {
+ "word_nikkud": "מֶתַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4410-metach",
+ "gender": "masculine"
+ }
+ ],
+ "מתמטיקה": [
+ {
+ "word_nikkud": "מָתֶמָטִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5219-matematika",
+ "gender": "feminine"
+ }
+ ],
+ "מתמטיקת־": [
+ {
+ "word_nikkud": "מָתֶמָטִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5219-matematika",
+ "gender": "feminine"
+ }
+ ],
+ "מתן": [
+ {
+ "word_nikkud": "מַתָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8361-matan",
+ "gender": "masculine"
+ }
+ ],
+ "מתנים": [
+ {
+ "word_nikkud": "מַתָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8361-matan",
+ "gender": "masculine"
+ }
+ ],
+ "מתן־": [
+ {
+ "word_nikkud": "מַתָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8361-matan",
+ "gender": "masculine"
+ }
+ ],
+ "מתני־": [
+ {
+ "word_nikkud": "מַתָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8361-matan",
+ "gender": "masculine"
+ }
+ ],
+ "ממתק": [
+ {
+ "word_nikkud": "מַמְתָּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3518-mamtak",
+ "gender": "masculine"
+ }
+ ],
+ "ממתקים": [
+ {
+ "word_nikkud": "מַמְתָּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3518-mamtak",
+ "gender": "masculine"
+ }
+ ],
+ "ממתק־": [
+ {
+ "word_nikkud": "מַמְתָּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3518-mamtak",
+ "gender": "masculine"
+ }
+ ],
+ "ממתקי־": [
+ {
+ "word_nikkud": "מַמְתָּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3518-mamtak",
+ "gender": "masculine"
+ }
+ ],
+ "מותק": [
+ {
+ "word_nikkud": "מֹתֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8494-motek",
+ "gender": "masculine"
+ }
+ ],
+ "נאד": [
+ {
+ "word_nikkud": "נֹאד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8740-nod",
+ "gender": "masculine"
+ }
+ ],
+ "נאדות": [
+ {
+ "word_nikkud": "נֹאד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8740-nod",
+ "gender": "masculine"
+ }
+ ],
+ "נאד־": [
+ {
+ "word_nikkud": "נֹאד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8740-nod",
+ "gender": "masculine"
+ }
+ ],
+ "נאדות־": [
+ {
+ "word_nikkud": "נֹאד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8740-nod",
+ "gender": "masculine"
+ }
+ ],
+ "נאום": [
+ {
+ "word_nikkud": "נְאוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3532-neum",
+ "gender": "masculine"
+ }
+ ],
+ "נאומים": [
+ {
+ "word_nikkud": "נְאוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3532-neum",
+ "gender": "masculine"
+ }
+ ],
+ "נאום־": [
+ {
+ "word_nikkud": "נְאוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3532-neum",
+ "gender": "masculine"
+ }
+ ],
+ "נאומי־": [
+ {
+ "word_nikkud": "נְאוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3532-neum",
+ "gender": "masculine"
+ }
+ ],
+ "ניאוף": [
+ {
+ "word_nikkud": "נִאוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6315-niuf",
+ "gender": "masculine"
+ }
+ ],
+ "ניאופים": [
+ {
+ "word_nikkud": "נִאוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6315-niuf",
+ "gender": "masculine"
+ }
+ ],
+ "ניאוף־": [
+ {
+ "word_nikkud": "נִאוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6315-niuf",
+ "gender": "masculine"
+ }
+ ],
+ "ניאופי־": [
+ {
+ "word_nikkud": "נִאוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6315-niuf",
+ "gender": "masculine"
+ }
+ ],
+ "נאקה": [
+ {
+ "word_nikkud": "נְאָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2852-neaka",
+ "gender": "feminine"
+ }
+ ],
+ "נאקות": [
+ {
+ "word_nikkud": "נְאָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2852-neaka",
+ "gender": "feminine"
+ }
+ ],
+ "נאקת־": [
+ {
+ "word_nikkud": "נְאָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2852-neaka",
+ "gender": "feminine"
+ }
+ ],
+ "נאקות־": [
+ {
+ "word_nikkud": "נְאָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2852-neaka",
+ "gender": "feminine"
+ }
+ ],
+ "נבואה": [
+ {
+ "word_nikkud": "נְבוּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3660-nevua",
+ "gender": "feminine"
+ }
+ ],
+ "נבואות": [
+ {
+ "word_nikkud": "נְבוּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3660-nevua",
+ "gender": "feminine"
+ }
+ ],
+ "נבואת־": [
+ {
+ "word_nikkud": "נְבוּאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3660-nevua",
+ "gender": "feminine"
+ }
+ ],
+ "נבואות־": [
+ {
+ "word_nikkud": "נְבוּאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3660-nevua",
+ "gender": "feminine"
+ }
+ ],
+ "נביא": [
+ {
+ "word_nikkud": "נָבִיא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4834-navi",
+ "gender": "masculine"
+ }
+ ],
+ "נביאים": [
+ {
+ "word_nikkud": "נָבִיא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4834-navi",
+ "gender": "masculine"
+ }
+ ],
+ "נביא־": [
+ {
+ "word_nikkud": "נָבִיא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4834-navi",
+ "gender": "masculine"
+ }
+ ],
+ "נביאי־": [
+ {
+ "word_nikkud": "נָבִיא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4834-navi",
+ "gender": "masculine"
+ }
+ ],
+ "נבג": [
+ {
+ "word_nikkud": "נֶבֶג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8402-neveg",
+ "gender": "masculine"
+ }
+ ],
+ "נבגים": [
+ {
+ "word_nikkud": "נֶבֶג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8402-neveg",
+ "gender": "masculine"
+ }
+ ],
+ "נבג־": [
+ {
+ "word_nikkud": "נֶבֶג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8402-neveg",
+ "gender": "masculine"
+ }
+ ],
+ "נבגי־": [
+ {
+ "word_nikkud": "נֶבֶג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8402-neveg",
+ "gender": "masculine"
+ }
+ ],
+ "נביחה": [
+ {
+ "word_nikkud": "נְבִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9036-nevicha",
+ "gender": "feminine"
+ }
+ ],
+ "נביחות": [
+ {
+ "word_nikkud": "נְבִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9036-nevicha",
+ "gender": "feminine"
+ }
+ ],
+ "נביחת־": [
+ {
+ "word_nikkud": "נְבִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9036-nevicha",
+ "gender": "feminine"
+ }
+ ],
+ "נביחות־": [
+ {
+ "word_nikkud": "נְבִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9036-nevicha",
+ "gender": "feminine"
+ }
+ ],
+ "מבט": [
+ {
+ "word_nikkud": "מַבָּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3527-mabat",
+ "gender": "masculine"
+ }
+ ],
+ "מבטים": [
+ {
+ "word_nikkud": "מַבָּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3527-mabat",
+ "gender": "masculine"
+ }
+ ],
+ "מבט־": [
+ {
+ "word_nikkud": "מַבָּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3527-mabat",
+ "gender": "masculine"
+ }
+ ],
+ "מבטי־": [
+ {
+ "word_nikkud": "מַבָּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3527-mabat",
+ "gender": "masculine"
+ }
+ ],
+ "היבט": [
+ {
+ "word_nikkud": "הֶבֵּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6307-hebet",
+ "gender": "masculine"
+ }
+ ],
+ "היבטים": [
+ {
+ "word_nikkud": "הֶבֵּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6307-hebet",
+ "gender": "masculine"
+ }
+ ],
+ "היבט־": [
+ {
+ "word_nikkud": "הֶבֵּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6307-hebet",
+ "gender": "masculine"
+ }
+ ],
+ "היבטי־": [
+ {
+ "word_nikkud": "הֶבֵּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6307-hebet",
+ "gender": "masculine"
+ }
+ ],
+ "נבך": [
+ {
+ "word_nikkud": "נֶבֶּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8390-nebech",
+ "gender": "masculine"
+ }
+ ],
+ "נעבעך": [
+ {
+ "word_nikkud": "נֶבֶּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8390-nebech",
+ "gender": "masculine"
+ }
+ ],
+ "נבל": [
+ {
+ "word_nikkud": "נֶבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8099-nevel",
+ "gender": "masculine"
+ }
+ ],
+ "נבלים": [
+ {
+ "word_nikkud": "נֶבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8099-nevel",
+ "gender": "masculine"
+ }
+ ],
+ "נבל־": [
+ {
+ "word_nikkud": "נֶבֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8099-nevel",
+ "gender": "masculine"
+ }
+ ],
+ "נבלי־": [
+ {
+ "word_nikkud": "נֶבֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8099-nevel",
+ "gender": "masculine"
+ }
+ ],
+ "ניבול": [
+ {
+ "word_nikkud": "נִבּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7457-nibul",
+ "gender": "masculine"
+ }
+ ],
+ "ניבול־": [
+ {
+ "word_nikkud": "נִבּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7457-nibul",
+ "gender": "masculine"
+ }
+ ],
+ "הבעה": [
+ {
+ "word_nikkud": "הַבָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3994-habaa",
+ "gender": "feminine"
+ }
+ ],
+ "הבעות": [
+ {
+ "word_nikkud": "הַבָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3994-habaa",
+ "gender": "feminine"
+ }
+ ],
+ "הבעת־": [
+ {
+ "word_nikkud": "הַבָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3994-habaa",
+ "gender": "feminine"
+ }
+ ],
+ "הבעות־": [
+ {
+ "word_nikkud": "הַבָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3994-habaa",
+ "gender": "feminine"
+ }
+ ],
+ "נברשת": [
+ {
+ "word_nikkud": "נִבְרֶשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9042-nivreshet",
+ "gender": "feminine"
+ }
+ ],
+ "נברשות": [
+ {
+ "word_nikkud": "נִבְרֶשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9042-nivreshet",
+ "gender": "feminine"
+ }
+ ],
+ "נברשת־": [
+ {
+ "word_nikkud": "נִבְרֶשֶׁת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9042-nivreshet",
+ "gender": "feminine"
+ }
+ ],
+ "נברשות־": [
+ {
+ "word_nikkud": "נִבְרֶשֶׁת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9042-nivreshet",
+ "gender": "feminine"
+ }
+ ],
+ "מגבת": [
+ {
+ "word_nikkud": "מַגֶּבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3745-magevet",
+ "gender": "feminine"
+ }
+ ],
+ "מגבות": [
+ {
+ "word_nikkud": "מַגֶּבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3745-magevet",
+ "gender": "feminine"
+ }
+ ],
+ "מגבת־": [
+ {
+ "word_nikkud": "מַגֶּבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3745-magevet",
+ "gender": "feminine"
+ }
+ ],
+ "מגבות־": [
+ {
+ "word_nikkud": "מַגֶּבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3745-magevet",
+ "gender": "feminine"
+ }
+ ],
+ "מגב": [
+ {
+ "word_nikkud": "מַגֵּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5121-magev",
+ "gender": "masculine"
+ }
+ ],
+ "מגבים": [
+ {
+ "word_nikkud": "מַגֵּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5121-magev",
+ "gender": "masculine"
+ }
+ ],
+ "מגב־": [
+ {
+ "word_nikkud": "מַגֵּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5121-magev",
+ "gender": "masculine"
+ }
+ ],
+ "מגבי־": [
+ {
+ "word_nikkud": "מַגֵּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5121-magev",
+ "gender": "masculine"
+ }
+ ],
+ "מגבון": [
+ {
+ "word_nikkud": "מַגְּבוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5122-magvon",
+ "gender": "masculine"
+ }
+ ],
+ "מגבונים": [
+ {
+ "word_nikkud": "מַגְּבוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5122-magvon",
+ "gender": "masculine"
+ }
+ ],
+ "מגבון־": [
+ {
+ "word_nikkud": "מַגְּבוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5122-magvon",
+ "gender": "masculine"
+ }
+ ],
+ "מגבוני־": [
+ {
+ "word_nikkud": "מַגְּבוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5122-magvon",
+ "gender": "masculine"
+ }
+ ],
+ "ניגוד": [
+ {
+ "word_nikkud": "נִגּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8034-nigud",
+ "gender": "masculine"
+ }
+ ],
+ "ניגודים": [
+ {
+ "word_nikkud": "נִגּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8034-nigud",
+ "gender": "masculine"
+ }
+ ],
+ "ניגוד־": [
+ {
+ "word_nikkud": "נִגּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8034-nigud",
+ "gender": "masculine"
+ }
+ ],
+ "ניגודי־": [
+ {
+ "word_nikkud": "נִגּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8034-nigud",
+ "gender": "masculine"
+ }
+ ],
+ "נגד": [
+ {
+ "word_nikkud": "נַגָּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5368-nagad",
+ "gender": "masculine"
+ }
+ ],
+ "נגדים": [
+ {
+ "word_nikkud": "נַגָּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5368-nagad",
+ "gender": "masculine"
+ }
+ ],
+ "נגד־": [
+ {
+ "word_nikkud": "נַגָּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5368-nagad",
+ "gender": "masculine"
+ }
+ ],
+ "נגדי־": [
+ {
+ "word_nikkud": "נַגָּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5368-nagad",
+ "gender": "masculine"
+ }
+ ],
+ "התנגדות": [
+ {
+ "word_nikkud": "הִתְנַגְּדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3019-hitnagdut",
+ "gender": "feminine"
+ }
+ ],
+ "התנגדות־": [
+ {
+ "word_nikkud": "הִתְנַגְּדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3019-hitnagdut",
+ "gender": "feminine"
+ }
+ ],
+ "הגדה": [
+ {
+ "word_nikkud": "הַגָּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4211-hagada",
+ "gender": "feminine"
+ }
+ ],
+ "הגדות": [
+ {
+ "word_nikkud": "הַגָּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4211-hagada",
+ "gender": "feminine"
+ }
+ ],
+ "הגדת־": [
+ {
+ "word_nikkud": "הַגָּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4211-hagada",
+ "gender": "feminine"
+ }
+ ],
+ "הגדות־": [
+ {
+ "word_nikkud": "הַגָּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4211-hagada",
+ "gender": "feminine"
+ }
+ ],
+ "נגיד": [
+ {
+ "word_nikkud": "נָגִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8312-nagid",
+ "gender": "masculine"
+ }
+ ],
+ "נגידים": [
+ {
+ "word_nikkud": "נָגִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8312-nagid",
+ "gender": "masculine"
+ }
+ ],
+ "נגיד־": [
+ {
+ "word_nikkud": "נָגִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8312-nagid",
+ "gender": "masculine"
+ }
+ ],
+ "נגידי־": [
+ {
+ "word_nikkud": "נָגִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8312-nagid",
+ "gender": "masculine"
+ }
+ ],
+ "נוגה": [
+ {
+ "word_nikkud": "נֹגַהּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4060-nogah",
+ "gender": "masculine"
+ }
+ ],
+ "נגהים": [
+ {
+ "word_nikkud": "נֹגַהּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4060-nogah",
+ "gender": "masculine"
+ }
+ ],
+ "נוגה־": [
+ {
+ "word_nikkud": "נֹגַהּ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4060-nogah",
+ "gender": "masculine"
+ }
+ ],
+ "נגהי־": [
+ {
+ "word_nikkud": "נֹגַהּ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4060-nogah",
+ "gender": "masculine"
+ }
+ ],
+ "הגהה": [
+ {
+ "word_nikkud": "הַגָּהָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9053-hagaha",
+ "gender": "feminine"
+ }
+ ],
+ "הגהות": [
+ {
+ "word_nikkud": "הַגָּהָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9053-hagaha",
+ "gender": "feminine"
+ }
+ ],
+ "הגהת־": [
+ {
+ "word_nikkud": "הַגָּהָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9053-hagaha",
+ "gender": "feminine"
+ }
+ ],
+ "הגהות־": [
+ {
+ "word_nikkud": "הַגָּהָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9053-hagaha",
+ "gender": "feminine"
+ }
+ ],
+ "ניגוח": [
+ {
+ "word_nikkud": "נִגּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6988-niguach",
+ "gender": "masculine"
+ }
+ ],
+ "ניגוחים": [
+ {
+ "word_nikkud": "נִגּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6988-niguach",
+ "gender": "masculine"
+ }
+ ],
+ "ניגוח־": [
+ {
+ "word_nikkud": "נִגּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6988-niguach",
+ "gender": "masculine"
+ }
+ ],
+ "ניגוחי־": [
+ {
+ "word_nikkud": "נִגּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6988-niguach",
+ "gender": "masculine"
+ }
+ ],
+ "ניגון": [
+ {
+ "word_nikkud": "נִגּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5636-nigun",
+ "gender": "masculine"
+ }
+ ],
+ "ניגונים": [
+ {
+ "word_nikkud": "נִגּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5636-nigun",
+ "gender": "masculine"
+ }
+ ],
+ "ניגון־": [
+ {
+ "word_nikkud": "נִגּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5636-nigun",
+ "gender": "masculine"
+ }
+ ],
+ "ניגוני־": [
+ {
+ "word_nikkud": "נִגּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5636-nigun",
+ "gender": "masculine"
+ }
+ ],
+ "נגן": [
+ {
+ "word_nikkud": "נַגָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7599-nagan",
+ "gender": "masculine"
+ }
+ ],
+ "נגנים": [
+ {
+ "word_nikkud": "נַגָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7599-nagan",
+ "gender": "masculine"
+ }
+ ],
+ "נגן־": [
+ {
+ "word_nikkud": "נַגָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7599-nagan",
+ "gender": "masculine"
+ }
+ ],
+ "נגני־": [
+ {
+ "word_nikkud": "נַגָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7599-nagan",
+ "gender": "masculine"
+ }
+ ],
+ "נגינה": [
+ {
+ "word_nikkud": "נְגִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6922-negina",
+ "gender": "feminine"
+ }
+ ],
+ "נגינות": [
+ {
+ "word_nikkud": "נְגִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6922-negina",
+ "gender": "feminine"
+ }
+ ],
+ "נגינת־": [
+ {
+ "word_nikkud": "נְגִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6922-negina",
+ "gender": "feminine"
+ }
+ ],
+ "נגינות־": [
+ {
+ "word_nikkud": "נְגִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6922-negina",
+ "gender": "feminine"
+ }
+ ],
+ "מגע": [
+ {
+ "word_nikkud": "מַגָּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4114-maga",
+ "gender": "masculine"
+ }
+ ],
+ "מגעים": [
+ {
+ "word_nikkud": "מַגָּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4114-maga",
+ "gender": "masculine"
+ }
+ ],
+ "מגע־": [
+ {
+ "word_nikkud": "מַגָּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4114-maga",
+ "gender": "masculine"
+ }
+ ],
+ "מגעי־": [
+ {
+ "word_nikkud": "מַגָּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4114-maga",
+ "gender": "masculine"
+ }
+ ],
+ "נגע": [
+ {
+ "word_nikkud": "נֶגַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5973-nega",
+ "gender": "masculine"
+ }
+ ],
+ "נגעים": [
+ {
+ "word_nikkud": "נֶגַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5973-nega",
+ "gender": "masculine"
+ }
+ ],
+ "נגע־": [
+ {
+ "word_nikkud": "נֶגַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5973-nega",
+ "gender": "masculine"
+ }
+ ],
+ "נגעי־": [
+ {
+ "word_nikkud": "נֶגַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5973-nega",
+ "gender": "masculine"
+ }
+ ],
+ "הגעה": [
+ {
+ "word_nikkud": "הַגָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6856-hagaa",
+ "gender": "feminine"
+ }
+ ],
+ "הגעות": [
+ {
+ "word_nikkud": "הַגָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6856-hagaa",
+ "gender": "feminine"
+ }
+ ],
+ "הגעת־": [
+ {
+ "word_nikkud": "הַגָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6856-hagaa",
+ "gender": "feminine"
+ }
+ ],
+ "הגעות־": [
+ {
+ "word_nikkud": "הַגָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6856-hagaa",
+ "gender": "feminine"
+ }
+ ],
+ "מגיפה": [
+ {
+ "word_nikkud": "מַגֵּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7256-magefa",
+ "gender": "feminine"
+ }
+ ],
+ "מגיפות": [
+ {
+ "word_nikkud": "מַגֵּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7256-magefa",
+ "gender": "feminine"
+ }
+ ],
+ "מגיפת־": [
+ {
+ "word_nikkud": "מַגֵּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7256-magefa",
+ "gender": "feminine"
+ }
+ ],
+ "מגיפות־": [
+ {
+ "word_nikkud": "מַגֵּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7256-magefa",
+ "gender": "feminine"
+ }
+ ],
+ "נגף": [
+ {
+ "word_nikkud": "נֶגֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8122-negef",
+ "gender": "masculine"
+ }
+ ],
+ "נגפים": [
+ {
+ "word_nikkud": "נֶגֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8122-negef",
+ "gender": "masculine"
+ }
+ ],
+ "נגף־": [
+ {
+ "word_nikkud": "נֶגֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8122-negef",
+ "gender": "masculine"
+ }
+ ],
+ "נגפי־": [
+ {
+ "word_nikkud": "נֶגֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8122-negef",
+ "gender": "masculine"
+ }
+ ],
+ "נגיף": [
+ {
+ "word_nikkud": "נְגִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7116-negif",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נְגִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7116-negif",
+ "gender": "masculine"
+ }
+ ],
+ "נגיפים": [
+ {
+ "word_nikkud": "נְגִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7116-negif",
+ "gender": "masculine"
+ }
+ ],
+ "נגיף־": [
+ {
+ "word_nikkud": "נְגִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7116-negif",
+ "gender": "masculine"
+ }
+ ],
+ "נגיפי־": [
+ {
+ "word_nikkud": "נְגִיף",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7116-negif",
+ "gender": "masculine"
+ }
+ ],
+ "נגר": [
+ {
+ "word_nikkud": "נַגָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6066-nagar",
+ "gender": "masculine"
+ }
+ ],
+ "נגרים": [
+ {
+ "word_nikkud": "נַגָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6066-nagar",
+ "gender": "masculine"
+ }
+ ],
+ "נגר־": [
+ {
+ "word_nikkud": "נַגָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6066-nagar",
+ "gender": "masculine"
+ }
+ ],
+ "נגרי־": [
+ {
+ "word_nikkud": "נַגָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6066-nagar",
+ "gender": "masculine"
+ }
+ ],
+ "התנגשות": [
+ {
+ "word_nikkud": "הִתְנַגְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3021-hitnagshut",
+ "gender": "feminine"
+ }
+ ],
+ "התנגשויות": [
+ {
+ "word_nikkud": "הִתְנַגְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3021-hitnagshut",
+ "gender": "feminine"
+ }
+ ],
+ "התנגשות־": [
+ {
+ "word_nikkud": "הִתְנַגְּשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3021-hitnagshut",
+ "gender": "feminine"
+ }
+ ],
+ "התנגשויות־": [
+ {
+ "word_nikkud": "הִתְנַגְּשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3021-hitnagshut",
+ "gender": "feminine"
+ }
+ ],
+ "הגשה": [
+ {
+ "word_nikkud": "הַגָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9092-hagasha",
+ "gender": "feminine"
+ }
+ ],
+ "הגשות": [
+ {
+ "word_nikkud": "הַגָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9092-hagasha",
+ "gender": "feminine"
+ }
+ ],
+ "הגשת־": [
+ {
+ "word_nikkud": "הַגָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9092-hagasha",
+ "gender": "feminine"
+ }
+ ],
+ "הגשות־": [
+ {
+ "word_nikkud": "הַגָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9092-hagasha",
+ "gender": "feminine"
+ }
+ ],
+ "גישה": [
+ {
+ "word_nikkud": "גִּישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6383-gisha",
+ "gender": "feminine"
+ }
+ ],
+ "גישות": [
+ {
+ "word_nikkud": "גִּישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6383-gisha",
+ "gender": "feminine"
+ }
+ ],
+ "גישת־": [
+ {
+ "word_nikkud": "גִּישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6383-gisha",
+ "gender": "feminine"
+ }
+ ],
+ "גישות־": [
+ {
+ "word_nikkud": "גִּישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6383-gisha",
+ "gender": "feminine"
+ }
+ ],
+ "מגש": [
+ {
+ "word_nikkud": "מַגָּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6883-magash",
+ "gender": "masculine"
+ }
+ ],
+ "מגשים": [
+ {
+ "word_nikkud": "מַגָּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6883-magash",
+ "gender": "masculine"
+ }
+ ],
+ "מגש־": [
+ {
+ "word_nikkud": "מַגָּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6883-magash",
+ "gender": "masculine"
+ }
+ ],
+ "מגשי־": [
+ {
+ "word_nikkud": "מַגָּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6883-magash",
+ "gender": "masculine"
+ }
+ ],
+ "נדיבות": [
+ {
+ "word_nikkud": "נְדִיבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5110-nedivut",
+ "gender": "feminine"
+ }
+ ],
+ "נדיבויות": [
+ {
+ "word_nikkud": "נְדִיבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5110-nedivut",
+ "gender": "feminine"
+ }
+ ],
+ "נדיבות־": [
+ {
+ "word_nikkud": "נְדִיבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5110-nedivut",
+ "gender": "feminine"
+ }
+ ],
+ "נדיבויות־": [
+ {
+ "word_nikkud": "נְדִיבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5110-nedivut",
+ "gender": "feminine"
+ }
+ ],
+ "נדבה": [
+ {
+ "word_nikkud": "נְדָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2853-nedava",
+ "gender": "feminine"
+ }
+ ],
+ "נדבות": [
+ {
+ "word_nikkud": "נְדָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2853-nedava",
+ "gender": "feminine"
+ }
+ ],
+ "נדבת־": [
+ {
+ "word_nikkud": "נְדָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2853-nedava",
+ "gender": "feminine"
+ }
+ ],
+ "נדבות־": [
+ {
+ "word_nikkud": "נְדָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2853-nedava",
+ "gender": "feminine"
+ }
+ ],
+ "התנדבות": [
+ {
+ "word_nikkud": "הִתְנַדְּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3022-hitnadvut",
+ "gender": "feminine"
+ }
+ ],
+ "התנדבות־": [
+ {
+ "word_nikkud": "הִתְנַדְּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3022-hitnadvut",
+ "gender": "feminine"
+ }
+ ],
+ "מדף": [
+ {
+ "word_nikkud": "מַדָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4360-madaf",
+ "gender": "masculine"
+ }
+ ],
+ "מדפים": [
+ {
+ "word_nikkud": "מַדָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4360-madaf",
+ "gender": "masculine"
+ }
+ ],
+ "מדף־": [
+ {
+ "word_nikkud": "מַדָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4360-madaf",
+ "gender": "masculine"
+ }
+ ],
+ "מדפי־": [
+ {
+ "word_nikkud": "מַדָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4360-madaf",
+ "gender": "masculine"
+ }
+ ],
+ "נדר": [
+ {
+ "word_nikkud": "נֶדֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3119-neder",
+ "gender": "masculine"
+ }
+ ],
+ "נדרים": [
+ {
+ "word_nikkud": "נֶדֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3119-neder",
+ "gender": "masculine"
+ }
+ ],
+ "נדר־": [
+ {
+ "word_nikkud": "נֶדֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3119-neder",
+ "gender": "masculine"
+ }
+ ],
+ "נדרי־": [
+ {
+ "word_nikkud": "נֶדֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3119-neder",
+ "gender": "masculine"
+ }
+ ],
+ "התנהגות": [
+ {
+ "word_nikkud": "הִתְנַהֲגוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5268-hitnahagut",
+ "gender": "feminine"
+ }
+ ],
+ "התנהגויות": [
+ {
+ "word_nikkud": "הִתְנַהֲגוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5268-hitnahagut",
+ "gender": "feminine"
+ }
+ ],
+ "התנהגות־": [
+ {
+ "word_nikkud": "הִתְנַהֲגוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5268-hitnahagut",
+ "gender": "feminine"
+ }
+ ],
+ "התנהגויות־": [
+ {
+ "word_nikkud": "הִתְנַהֲגוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5268-hitnahagut",
+ "gender": "feminine"
+ }
+ ],
+ "נהג": [
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ }
+ ],
+ "נהגים": [
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ }
+ ],
+ "נהג־": [
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ }
+ ],
+ "נהגי־": [
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶהָג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6098-nehag",
+ "gender": "masculine"
+ }
+ ],
+ "נהיגה": [
+ {
+ "word_nikkud": "נְהִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2827-nehiga",
+ "gender": "feminine"
+ }
+ ],
+ "נהיגות": [
+ {
+ "word_nikkud": "נְהִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2827-nehiga",
+ "gender": "feminine"
+ }
+ ],
+ "נהיגת־": [
+ {
+ "word_nikkud": "נְהִיגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2827-nehiga",
+ "gender": "feminine"
+ }
+ ],
+ "נהיגות־": [
+ {
+ "word_nikkud": "נְהִיגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2827-nehiga",
+ "gender": "feminine"
+ }
+ ],
+ "מנהג": [
+ {
+ "word_nikkud": "מִנְהָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3542-minhag",
+ "gender": "masculine"
+ }
+ ],
+ "מנהגים": [
+ {
+ "word_nikkud": "מִנְהָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3542-minhag",
+ "gender": "masculine"
+ }
+ ],
+ "מנהג־": [
+ {
+ "word_nikkud": "מִנְהָג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3542-minhag",
+ "gender": "masculine"
+ }
+ ],
+ "מנהגי־": [
+ {
+ "word_nikkud": "מִנְהָג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3542-minhag",
+ "gender": "masculine"
+ }
+ ],
+ "מנהיג": [
+ {
+ "word_nikkud": "מַנְהִיג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6521-manhig",
+ "gender": "masculine"
+ }
+ ],
+ "מנהיגים": [
+ {
+ "word_nikkud": "מַנְהִיג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6521-manhig",
+ "gender": "masculine"
+ }
+ ],
+ "מנהיג־": [
+ {
+ "word_nikkud": "מַנְהִיג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6521-manhig",
+ "gender": "masculine"
+ }
+ ],
+ "מנהיגי־": [
+ {
+ "word_nikkud": "מַנְהִיג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6521-manhig",
+ "gender": "masculine"
+ }
+ ],
+ "התנהלות": [
+ {
+ "word_nikkud": "הִתְנַהֲלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7267-hitnahalut",
+ "gender": "feminine"
+ }
+ ],
+ "התנהלויות": [
+ {
+ "word_nikkud": "הִתְנַהֲלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7267-hitnahalut",
+ "gender": "feminine"
+ }
+ ],
+ "התנהלות־": [
+ {
+ "word_nikkud": "הִתְנַהֲלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7267-hitnahalut",
+ "gender": "feminine"
+ }
+ ],
+ "התנהלויות־": [
+ {
+ "word_nikkud": "הִתְנַהֲלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7267-hitnahalut",
+ "gender": "feminine"
+ }
+ ],
+ "מנהל": [
+ {
+ "word_nikkud": "מְנַהֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5545-menahel",
+ "gender": "masculine"
+ }
+ ],
+ "מנהלים": [
+ {
+ "word_nikkud": "מְנַהֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5545-menahel",
+ "gender": "masculine"
+ }
+ ],
+ "מנהל־": [
+ {
+ "word_nikkud": "מְנַהֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5545-menahel",
+ "gender": "masculine"
+ }
+ ],
+ "מנהלי־": [
+ {
+ "word_nikkud": "מְנַהֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5545-menahel",
+ "gender": "masculine"
+ }
+ ],
+ "נוהל": [
+ {
+ "word_nikkud": "נֹהַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3867-nohal",
+ "gender": "masculine"
+ }
+ ],
+ "נהלים": [
+ {
+ "word_nikkud": "נֹהַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3867-nohal",
+ "gender": "masculine"
+ }
+ ],
+ "נוהל־": [
+ {
+ "word_nikkud": "נֹהַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3867-nohal",
+ "gender": "masculine"
+ }
+ ],
+ "נהלי־": [
+ {
+ "word_nikkud": "נֹהַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3867-nohal",
+ "gender": "masculine"
+ }
+ ],
+ "ניהול": [
+ {
+ "word_nikkud": "נִהוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8981-nihul",
+ "gender": "masculine"
+ }
+ ],
+ "ניהולים": [
+ {
+ "word_nikkud": "נִהוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8981-nihul",
+ "gender": "masculine"
+ }
+ ],
+ "ניהול־": [
+ {
+ "word_nikkud": "נִהוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8981-nihul",
+ "gender": "masculine"
+ }
+ ],
+ "ניהולי־": [
+ {
+ "word_nikkud": "נִהוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8981-nihul",
+ "gender": "masculine"
+ }
+ ],
+ "הנהלה": [
+ {
+ "word_nikkud": "הַנְהָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7271-hanhala",
+ "gender": "feminine"
+ }
+ ],
+ "הנהלות": [
+ {
+ "word_nikkud": "הַנְהָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7271-hanhala",
+ "gender": "feminine"
+ }
+ ],
+ "הנהלת־": [
+ {
+ "word_nikkud": "הַנְהָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7271-hanhala",
+ "gender": "feminine"
+ }
+ ],
+ "הנהלות־": [
+ {
+ "word_nikkud": "הַנְהָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7271-hanhala",
+ "gender": "feminine"
+ }
+ ],
+ "נהימה": [
+ {
+ "word_nikkud": "נְהִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9148-nehima",
+ "gender": "feminine"
+ }
+ ],
+ "נהימות": [
+ {
+ "word_nikkud": "נְהִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9148-nehima",
+ "gender": "feminine"
+ }
+ ],
+ "נהימת־": [
+ {
+ "word_nikkud": "נְהִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9148-nehima",
+ "gender": "feminine"
+ }
+ ],
+ "נהימות־": [
+ {
+ "word_nikkud": "נְהִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9148-nehima",
+ "gender": "feminine"
+ }
+ ],
+ "נהר": [
+ {
+ "word_nikkud": "נָהָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3337-nahar",
+ "gender": "masculine"
+ }
+ ],
+ "נהרות": [
+ {
+ "word_nikkud": "נָהָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3337-nahar",
+ "gender": "masculine"
+ }
+ ],
+ "נהר־": [
+ {
+ "word_nikkud": "נָהָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3337-nahar",
+ "gender": "masculine"
+ }
+ ],
+ "נהרות־": [
+ {
+ "word_nikkud": "נָהָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3337-nahar",
+ "gender": "masculine"
+ }
+ ],
+ "מנהרה": [
+ {
+ "word_nikkud": "מִנְהָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5136-minhara",
+ "gender": "feminine"
+ }
+ ],
+ "מנהרות": [
+ {
+ "word_nikkud": "מִנְהָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5136-minhara",
+ "gender": "feminine"
+ }
+ ],
+ "מנהרת־": [
+ {
+ "word_nikkud": "מִנְהָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5136-minhara",
+ "gender": "feminine"
+ }
+ ],
+ "מנהרות־": [
+ {
+ "word_nikkud": "מִנְהָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5136-minhara",
+ "gender": "feminine"
+ }
+ ],
+ "ניב": [
+ {
+ "word_nikkud": "נִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8738-niv",
+ "gender": "masculine"
+ }
+ ],
+ "ניבים": [
+ {
+ "word_nikkud": "נִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8738-niv",
+ "gender": "masculine"
+ }
+ ],
+ "ניב־": [
+ {
+ "word_nikkud": "נִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8738-niv",
+ "gender": "masculine"
+ }
+ ],
+ "ניבי־": [
+ {
+ "word_nikkud": "נִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8738-niv",
+ "gender": "masculine"
+ }
+ ],
+ "תנובה": [
+ {
+ "word_nikkud": "תְּנוּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6261-tnuva",
+ "gender": "feminine"
+ }
+ ],
+ "תנובות": [
+ {
+ "word_nikkud": "תְּנוּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6261-tnuva",
+ "gender": "feminine"
+ }
+ ],
+ "תנובת־": [
+ {
+ "word_nikkud": "תְּנוּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6261-tnuva",
+ "gender": "feminine"
+ }
+ ],
+ "תנובות־": [
+ {
+ "word_nikkud": "תְּנוּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6261-tnuva",
+ "gender": "feminine"
+ }
+ ],
+ "נוד": [
+ {
+ "word_nikkud": "נוֹדּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8344-nod",
+ "gender": "masculine"
+ }
+ ],
+ "נוד־": [
+ {
+ "word_nikkud": "נוֹדּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8344-nod",
+ "gender": "masculine"
+ }
+ ],
+ "תנודה": [
+ {
+ "word_nikkud": "תְּנוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4148-tnuda",
+ "gender": "feminine"
+ }
+ ],
+ "תנודות": [
+ {
+ "word_nikkud": "תְּנוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4148-tnuda",
+ "gender": "feminine"
+ }
+ ],
+ "תנודת־": [
+ {
+ "word_nikkud": "תְּנוּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4148-tnuda",
+ "gender": "feminine"
+ }
+ ],
+ "תנודות־": [
+ {
+ "word_nikkud": "תְּנוּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4148-tnuda",
+ "gender": "feminine"
+ }
+ ],
+ "נודניק": [
+ {
+ "word_nikkud": "נוּדְנִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8918-nudnik",
+ "gender": "masculine"
+ }
+ ],
+ "נודניקים": [
+ {
+ "word_nikkud": "נוּדְנִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8918-nudnik",
+ "gender": "masculine"
+ }
+ ],
+ "מונח": [
+ {
+ "word_nikkud": "מֻנָּח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8598-munach",
+ "gender": "masculine"
+ }
+ ],
+ "מונחים": [
+ {
+ "word_nikkud": "מֻנָּח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8598-munach",
+ "gender": "masculine"
+ }
+ ],
+ "מונח־": [
+ {
+ "word_nikkud": "מֻנָּח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8598-munach",
+ "gender": "masculine"
+ }
+ ],
+ "מונחי־": [
+ {
+ "word_nikkud": "מֻנָּח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8598-munach",
+ "gender": "masculine"
+ }
+ ],
+ "נוחות": [
+ {
+ "word_nikkud": "נוֹחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4471-nochut",
+ "gender": "feminine"
+ }
+ ],
+ "נוחויות": [
+ {
+ "word_nikkud": "נוֹחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4471-nochut",
+ "gender": "feminine"
+ }
+ ],
+ "נוחות־": [
+ {
+ "word_nikkud": "נוֹחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4471-nochut",
+ "gender": "feminine"
+ }
+ ],
+ "נוחויות־": [
+ {
+ "word_nikkud": "נוֹחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4471-nochut",
+ "gender": "feminine"
+ }
+ ],
+ "תנוחה": [
+ {
+ "word_nikkud": "תְּנוּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3741-tnucha",
+ "gender": "feminine"
+ }
+ ],
+ "תנוחות": [
+ {
+ "word_nikkud": "תְּנוּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3741-tnucha",
+ "gender": "feminine"
+ }
+ ],
+ "תנוחת־": [
+ {
+ "word_nikkud": "תְּנוּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3741-tnucha",
+ "gender": "feminine"
+ }
+ ],
+ "תנוחות־": [
+ {
+ "word_nikkud": "תְּנוּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3741-tnucha",
+ "gender": "feminine"
+ }
+ ],
+ "מנוחה": [
+ {
+ "word_nikkud": "מְנוּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3751-menucha",
+ "gender": "feminine"
+ }
+ ],
+ "מנוחות": [
+ {
+ "word_nikkud": "מְנוּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3751-menucha",
+ "gender": "feminine"
+ }
+ ],
+ "מנוחת־": [
+ {
+ "word_nikkud": "מְנוּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3751-menucha",
+ "gender": "feminine"
+ }
+ ],
+ "מנוחות־": [
+ {
+ "word_nikkud": "מְנוּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3751-menucha",
+ "gender": "feminine"
+ }
+ ],
+ "נחת": [
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ }
+ ],
+ "נחתים": [
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ }
+ ],
+ "נחת־": [
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ }
+ ],
+ "נחתי־": [
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נֶחָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4372-nechat",
+ "gender": "masculine"
+ }
+ ],
+ "הנחה": [
+ {
+ "word_nikkud": "הֲנָחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8249-hanacha",
+ "gender": "feminine"
+ }
+ ],
+ "הנחות": [
+ {
+ "word_nikkud": "הֲנָחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8249-hanacha",
+ "gender": "feminine"
+ }
+ ],
+ "הנחת־": [
+ {
+ "word_nikkud": "הֲנָחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8249-hanacha",
+ "gender": "feminine"
+ }
+ ],
+ "הנחות־": [
+ {
+ "word_nikkud": "הֲנָחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8249-hanacha",
+ "gender": "feminine"
+ }
+ ],
+ "נווט": [
+ {
+ "word_nikkud": "נַוָּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3350-navat",
+ "gender": "masculine"
+ }
+ ],
+ "נווטים": [
+ {
+ "word_nikkud": "נַוָּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3350-navat",
+ "gender": "masculine"
+ }
+ ],
+ "נווט־": [
+ {
+ "word_nikkud": "נַוָּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3350-navat",
+ "gender": "masculine"
+ }
+ ],
+ "נווטי־": [
+ {
+ "word_nikkud": "נַוָּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3350-navat",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריון": [
+ {
+ "word_nikkud": "נוֹטַרְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6982-notaryon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריונים": [
+ {
+ "word_nikkud": "נוֹטַרְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6982-notaryon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריון־": [
+ {
+ "word_nikkud": "נוֹטַרְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6982-notaryon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריוני־": [
+ {
+ "word_nikkud": "נוֹטַרְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6982-notaryon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריקון": [
+ {
+ "word_nikkud": "נוֹטָרִיקוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8834-notarikon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריקונים": [
+ {
+ "word_nikkud": "נוֹטָרִיקוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8834-notarikon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריקון־": [
+ {
+ "word_nikkud": "נוֹטָרִיקוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8834-notarikon",
+ "gender": "masculine"
+ }
+ ],
+ "נוטריקוני־": [
+ {
+ "word_nikkud": "נוֹטָרִיקוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8834-notarikon",
+ "gender": "masculine"
+ }
+ ],
+ "נווה": [
+ {
+ "word_nikkud": "נָוֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9178-nave",
+ "gender": "masculine"
+ }
+ ],
+ "נאות": [
+ {
+ "word_nikkud": "נָוֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9178-nave",
+ "gender": "masculine"
+ }
+ ],
+ "נווה־": [
+ {
+ "word_nikkud": "נָוֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9178-nave",
+ "gender": "masculine"
+ }
+ ],
+ "נאות־": [
+ {
+ "word_nikkud": "נָוֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9178-nave",
+ "gender": "masculine"
+ }
+ ],
+ "נווי־": [
+ {
+ "word_nikkud": "נָוֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "9178-nave",
+ "gender": "masculine"
+ }
+ ],
+ "נול": [
+ {
+ "word_nikkud": "נוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8162-nul",
+ "gender": "masculine"
+ }
+ ],
+ "נולים": [
+ {
+ "word_nikkud": "נוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8162-nul",
+ "gender": "masculine"
+ }
+ ],
+ "נול־": [
+ {
+ "word_nikkud": "נוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8162-nul",
+ "gender": "masculine"
+ }
+ ],
+ "נולי־": [
+ {
+ "word_nikkud": "נוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8162-nul",
+ "gender": "masculine"
+ }
+ ],
+ "תנומה": [
+ {
+ "word_nikkud": "תְּנוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7090-tnuma",
+ "gender": "feminine"
+ }
+ ],
+ "תנומות": [
+ {
+ "word_nikkud": "תְּנוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7090-tnuma",
+ "gender": "feminine"
+ }
+ ],
+ "תנומת־": [
+ {
+ "word_nikkud": "תְּנוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7090-tnuma",
+ "gender": "feminine"
+ }
+ ],
+ "תנומות־": [
+ {
+ "word_nikkud": "תְּנוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7090-tnuma",
+ "gender": "feminine"
+ }
+ ],
+ "מנוס": [
+ {
+ "word_nikkud": "מָנוֹס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4197-manos",
+ "gender": "masculine"
+ }
+ ],
+ "מנוסים": [
+ {
+ "word_nikkud": "מָנוֹס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4197-manos",
+ "gender": "masculine"
+ }
+ ],
+ "מנוס־": [
+ {
+ "word_nikkud": "מָנוֹס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4197-manos",
+ "gender": "masculine"
+ }
+ ],
+ "מנוסי־": [
+ {
+ "word_nikkud": "מָנוֹס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4197-manos",
+ "gender": "masculine"
+ }
+ ],
+ "תנועה": [
+ {
+ "word_nikkud": "תְּנוּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5965-tnua",
+ "gender": "feminine"
+ }
+ ],
+ "תנועות": [
+ {
+ "word_nikkud": "תְּנוּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5965-tnua",
+ "gender": "feminine"
+ }
+ ],
+ "תנועת־": [
+ {
+ "word_nikkud": "תְּנוּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5965-tnua",
+ "gender": "feminine"
+ }
+ ],
+ "תנועות־": [
+ {
+ "word_nikkud": "תְּנוּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5965-tnua",
+ "gender": "feminine"
+ }
+ ],
+ "מנוע": [
+ {
+ "word_nikkud": "מָנוֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6154-manoa",
+ "gender": "masculine"
+ }
+ ],
+ "מנועים": [
+ {
+ "word_nikkud": "מָנוֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6154-manoa",
+ "gender": "masculine"
+ }
+ ],
+ "מנוע־": [
+ {
+ "word_nikkud": "מָנוֹעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6154-manoa",
+ "gender": "masculine"
+ }
+ ],
+ "מנועי־": [
+ {
+ "word_nikkud": "מָנוֹעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6154-manoa",
+ "gender": "masculine"
+ }
+ ],
+ "מנוף": [
+ {
+ "word_nikkud": "מָנוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5817-manof",
+ "gender": "masculine"
+ }
+ ],
+ "מנופים": [
+ {
+ "word_nikkud": "מָנוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5817-manof",
+ "gender": "masculine"
+ }
+ ],
+ "מנוף־": [
+ {
+ "word_nikkud": "מָנוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5817-manof",
+ "gender": "masculine"
+ }
+ ],
+ "מנופי־": [
+ {
+ "word_nikkud": "מָנוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5817-manof",
+ "gender": "masculine"
+ }
+ ],
+ "מניפה": [
+ {
+ "word_nikkud": "מְנִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3753-menifa",
+ "gender": "feminine"
+ }
+ ],
+ "מניפות": [
+ {
+ "word_nikkud": "מְנִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3753-menifa",
+ "gender": "feminine"
+ }
+ ],
+ "מניפת־": [
+ {
+ "word_nikkud": "מְנִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3753-menifa",
+ "gender": "feminine"
+ }
+ ],
+ "מניפות־": [
+ {
+ "word_nikkud": "מְנִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3753-menifa",
+ "gender": "feminine"
+ }
+ ],
+ "נוף": [
+ {
+ "word_nikkud": "נוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4892-nof",
+ "gender": ""
+ }
+ ],
+ "נופים": [
+ {
+ "word_nikkud": "נוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4892-nof",
+ "gender": ""
+ }
+ ],
+ "נוף־": [
+ {
+ "word_nikkud": "נוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4892-nof",
+ "gender": ""
+ }
+ ],
+ "נופי־": [
+ {
+ "word_nikkud": "נוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4892-nof",
+ "gender": ""
+ }
+ ],
+ "תנופה": [
+ {
+ "word_nikkud": "תְּנוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6775-tnufa",
+ "gender": "feminine"
+ }
+ ],
+ "תנופות": [
+ {
+ "word_nikkud": "תְּנוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6775-tnufa",
+ "gender": "feminine"
+ }
+ ],
+ "תנופת־": [
+ {
+ "word_nikkud": "תְּנוּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6775-tnufa",
+ "gender": "feminine"
+ }
+ ],
+ "תנופות־": [
+ {
+ "word_nikkud": "תְּנוּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6775-tnufa",
+ "gender": "feminine"
+ }
+ ],
+ "נוצה": [
+ {
+ "word_nikkud": "נוֹצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6952-notza",
+ "gender": "feminine"
+ }
+ ],
+ "נוצות": [
+ {
+ "word_nikkud": "נוֹצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6952-notza",
+ "gender": "feminine"
+ }
+ ],
+ "נוצת־": [
+ {
+ "word_nikkud": "נוֹצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6952-notza",
+ "gender": "feminine"
+ }
+ ],
+ "נוצות־": [
+ {
+ "word_nikkud": "נוֹצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6952-notza",
+ "gender": "feminine"
+ }
+ ],
+ "תנור": [
+ {
+ "word_nikkud": "תַּנּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5807-tanur",
+ "gender": "masculine"
+ }
+ ],
+ "תנורים": [
+ {
+ "word_nikkud": "תַּנּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5807-tanur",
+ "gender": "masculine"
+ }
+ ],
+ "תנור־": [
+ {
+ "word_nikkud": "תַּנּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5807-tanur",
+ "gender": "masculine"
+ }
+ ],
+ "תנורי־": [
+ {
+ "word_nikkud": "תַּנּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5807-tanur",
+ "gender": "masculine"
+ }
+ ],
+ "נור": [
+ {
+ "word_nikkud": "נוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5797-nur",
+ "gender": "masculine"
+ }
+ ],
+ "נור־": [
+ {
+ "word_nikkud": "נוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5797-nur",
+ "gender": "masculine"
+ }
+ ],
+ "מנורה": [
+ {
+ "word_nikkud": "מְנוֹרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5796-menora",
+ "gender": "feminine"
+ }
+ ],
+ "מנורות": [
+ {
+ "word_nikkud": "מְנוֹרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5796-menora",
+ "gender": "feminine"
+ }
+ ],
+ "מנורת־": [
+ {
+ "word_nikkud": "מְנוֹרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5796-menora",
+ "gender": "feminine"
+ }
+ ],
+ "מנורות־": [
+ {
+ "word_nikkud": "מְנוֹרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5796-menora",
+ "gender": "feminine"
+ }
+ ],
+ "נר": [
+ {
+ "word_nikkud": "נַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2677-nar",
+ "gender": "masculine"
+ }
+ ],
+ "נרים": [
+ {
+ "word_nikkud": "נַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2677-nar",
+ "gender": "masculine"
+ }
+ ],
+ "נר־": [
+ {
+ "word_nikkud": "נַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2677-nar",
+ "gender": "masculine"
+ }
+ ],
+ "נרי־": [
+ {
+ "word_nikkud": "נַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2677-nar",
+ "gender": "masculine"
+ }
+ ],
+ "נורה": [
+ {
+ "word_nikkud": "נוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6150-nura",
+ "gender": "feminine"
+ }
+ ],
+ "נורות": [
+ {
+ "word_nikkud": "נוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6150-nura",
+ "gender": "feminine"
+ }
+ ],
+ "נורת־": [
+ {
+ "word_nikkud": "נוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6150-nura",
+ "gender": "feminine"
+ }
+ ],
+ "נורות־": [
+ {
+ "word_nikkud": "נוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6150-nura",
+ "gender": "feminine"
+ }
+ ],
+ "נזלת": [
+ {
+ "word_nikkud": "נַזֶּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3293-nazelet",
+ "gender": "feminine"
+ }
+ ],
+ "נזלת־": [
+ {
+ "word_nikkud": "נַזֶּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3293-nazelet",
+ "gender": "feminine"
+ }
+ ],
+ "נוזל": [
+ {
+ "word_nikkud": "נוֹזֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6634-nozel",
+ "gender": "masculine"
+ }
+ ],
+ "נוזלים": [
+ {
+ "word_nikkud": "נוֹזֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6634-nozel",
+ "gender": "masculine"
+ }
+ ],
+ "נוזל־": [
+ {
+ "word_nikkud": "נוֹזֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6634-nozel",
+ "gender": "masculine"
+ }
+ ],
+ "נוזלי־": [
+ {
+ "word_nikkud": "נוֹזֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6634-nozel",
+ "gender": "masculine"
+ }
+ ],
+ "ניזום": [
+ {
+ "word_nikkud": "נִזּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8890-nizum",
+ "gender": "masculine"
+ }
+ ],
+ "ניזומים": [
+ {
+ "word_nikkud": "נִזּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8890-nizum",
+ "gender": "masculine"
+ }
+ ],
+ "ניזום־": [
+ {
+ "word_nikkud": "נִזּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8890-nizum",
+ "gender": "masculine"
+ }
+ ],
+ "ניזומי־": [
+ {
+ "word_nikkud": "נִזּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8890-nizum",
+ "gender": "masculine"
+ }
+ ],
+ "נזם": [
+ {
+ "word_nikkud": "נֶזֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9138-nezem",
+ "gender": "masculine"
+ }
+ ],
+ "נזמים": [
+ {
+ "word_nikkud": "נֶזֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9138-nezem",
+ "gender": "masculine"
+ }
+ ],
+ "נזם־": [
+ {
+ "word_nikkud": "נֶזֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9138-nezem",
+ "gender": "masculine"
+ }
+ ],
+ "נזמי־": [
+ {
+ "word_nikkud": "נֶזֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9138-nezem",
+ "gender": "masculine"
+ }
+ ],
+ "נזיפה": [
+ {
+ "word_nikkud": "נְזִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9168-nezifa",
+ "gender": "feminine"
+ }
+ ],
+ "נזיפות": [
+ {
+ "word_nikkud": "נְזִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9168-nezifa",
+ "gender": "feminine"
+ }
+ ],
+ "נזיפת־": [
+ {
+ "word_nikkud": "נְזִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9168-nezifa",
+ "gender": "feminine"
+ }
+ ],
+ "נזיפות־": [
+ {
+ "word_nikkud": "נְזִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9168-nezifa",
+ "gender": "feminine"
+ }
+ ],
+ "נזיקין": [
+ {
+ "word_nikkud": "נְזִיקִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7657-nezikin",
+ "gender": ""
+ }
+ ],
+ "נזק": [
+ {
+ "word_nikkud": "נֶזֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6802-nezek",
+ "gender": "masculine"
+ }
+ ],
+ "נזקים": [
+ {
+ "word_nikkud": "נֶזֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6802-nezek",
+ "gender": "masculine"
+ }
+ ],
+ "נזק־": [
+ {
+ "word_nikkud": "נֶזֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6802-nezek",
+ "gender": "masculine"
+ }
+ ],
+ "נזקי־": [
+ {
+ "word_nikkud": "נֶזֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6802-nezek",
+ "gender": "masculine"
+ }
+ ],
+ "נזירות": [
+ {
+ "word_nikkud": "נְזִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8102-nezirut",
+ "gender": "feminine"
+ }
+ ],
+ "נזירויות": [
+ {
+ "word_nikkud": "נְזִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8102-nezirut",
+ "gender": "feminine"
+ }
+ ],
+ "נזירות־": [
+ {
+ "word_nikkud": "נְזִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8102-nezirut",
+ "gender": "feminine"
+ }
+ ],
+ "נזירויות־": [
+ {
+ "word_nikkud": "נְזִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8102-nezirut",
+ "gender": "feminine"
+ }
+ ],
+ "נזר": [
+ {
+ "word_nikkud": "נֵזֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7449-nezer",
+ "gender": "masculine"
+ }
+ ],
+ "נזרים": [
+ {
+ "word_nikkud": "נֵזֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7449-nezer",
+ "gender": "masculine"
+ }
+ ],
+ "נזר־": [
+ {
+ "word_nikkud": "נֵזֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7449-nezer",
+ "gender": "masculine"
+ }
+ ],
+ "נזרי־": [
+ {
+ "word_nikkud": "נֵזֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7449-nezer",
+ "gender": "masculine"
+ }
+ ],
+ "נזיר": [
+ {
+ "word_nikkud": "נָזִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7770-nazir",
+ "gender": "masculine"
+ }
+ ],
+ "נזירים": [
+ {
+ "word_nikkud": "נָזִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7770-nazir",
+ "gender": "masculine"
+ }
+ ],
+ "נזיר־": [
+ {
+ "word_nikkud": "נָזִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7770-nazir",
+ "gender": "masculine"
+ }
+ ],
+ "נזירי־": [
+ {
+ "word_nikkud": "נָזִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7770-nazir",
+ "gender": "masculine"
+ }
+ ],
+ "מנזר": [
+ {
+ "word_nikkud": "מִנְזָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8132-minzar",
+ "gender": "masculine"
+ }
+ ],
+ "מנזרים": [
+ {
+ "word_nikkud": "מִנְזָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8132-minzar",
+ "gender": "masculine"
+ }
+ ],
+ "מנזר־": [
+ {
+ "word_nikkud": "מִנְזָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8132-minzar",
+ "gender": "masculine"
+ }
+ ],
+ "מנזרי־": [
+ {
+ "word_nikkud": "מִנְזָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8132-minzar",
+ "gender": "masculine"
+ }
+ ],
+ "הנחיה": [
+ {
+ "word_nikkud": "הַנְחָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3940-hanchaya",
+ "gender": "feminine"
+ }
+ ],
+ "הנחיות": [
+ {
+ "word_nikkud": "הַנְחָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3940-hanchaya",
+ "gender": "feminine"
+ }
+ ],
+ "הנחיית־": [
+ {
+ "word_nikkud": "הַנְחָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3940-hanchaya",
+ "gender": "feminine"
+ }
+ ],
+ "הנחיות־": [
+ {
+ "word_nikkud": "הַנְחָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3940-hanchaya",
+ "gender": "feminine"
+ }
+ ],
+ "התנחלות": [
+ {
+ "word_nikkud": "הִתְנַחֲלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8437-hitnachalut",
+ "gender": "feminine"
+ }
+ ],
+ "התנחלויות": [
+ {
+ "word_nikkud": "הִתְנַחֲלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8437-hitnachalut",
+ "gender": "feminine"
+ }
+ ],
+ "התנחלות־": [
+ {
+ "word_nikkud": "הִתְנַחֲלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8437-hitnachalut",
+ "gender": "feminine"
+ }
+ ],
+ "התנחלויות־": [
+ {
+ "word_nikkud": "הִתְנַחֲלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8437-hitnachalut",
+ "gender": "feminine"
+ }
+ ],
+ "נחיל": [
+ {
+ "word_nikkud": "נְחִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8023-nechil",
+ "gender": "masculine"
+ }
+ ],
+ "נחילים": [
+ {
+ "word_nikkud": "נְחִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8023-nechil",
+ "gender": "masculine"
+ }
+ ],
+ "נחיל־": [
+ {
+ "word_nikkud": "נְחִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8023-nechil",
+ "gender": "masculine"
+ }
+ ],
+ "נחילי־": [
+ {
+ "word_nikkud": "נְחִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8023-nechil",
+ "gender": "masculine"
+ }
+ ],
+ "נחלה": [
+ {
+ "word_nikkud": "נַחֲלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5576-nachala",
+ "gender": "feminine"
+ }
+ ],
+ "נחלות": [
+ {
+ "word_nikkud": "נַחֲלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5576-nachala",
+ "gender": "feminine"
+ }
+ ],
+ "נחלאות": [
+ {
+ "word_nikkud": "נַחֲלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5576-nachala",
+ "gender": "feminine"
+ }
+ ],
+ "נחלת־": [
+ {
+ "word_nikkud": "נַחֲלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5576-nachala",
+ "gender": "feminine"
+ }
+ ],
+ "נחלות־": [
+ {
+ "word_nikkud": "נַחֲלָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5576-nachala",
+ "gender": "feminine"
+ }
+ ],
+ "נחל": [
+ {
+ "word_nikkud": "נַחַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7071-nachal",
+ "gender": "masculine"
+ }
+ ],
+ "נחלים": [
+ {
+ "word_nikkud": "נַחַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7071-nachal",
+ "gender": "masculine"
+ }
+ ],
+ "נחל־": [
+ {
+ "word_nikkud": "נַחַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7071-nachal",
+ "gender": "masculine"
+ }
+ ],
+ "נחלי־": [
+ {
+ "word_nikkud": "נַחַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7071-nachal",
+ "gender": "masculine"
+ }
+ ],
+ "נחמה": [
+ {
+ "word_nikkud": "נֶחָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4214-nechama",
+ "gender": "feminine"
+ }
+ ],
+ "נחמות": [
+ {
+ "word_nikkud": "נֶחָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4214-nechama",
+ "gender": "feminine"
+ }
+ ],
+ "נחמת־": [
+ {
+ "word_nikkud": "נֶחָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4214-nechama",
+ "gender": "feminine"
+ }
+ ],
+ "נחמות־": [
+ {
+ "word_nikkud": "נֶחָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4214-nechama",
+ "gender": "feminine"
+ }
+ ],
+ "נחיר": [
+ {
+ "word_nikkud": "נְחִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5566-nechir",
+ "gender": "masculine"
+ }
+ ],
+ "נחיריים": [
+ {
+ "word_nikkud": "נְחִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5566-nechir",
+ "gender": "masculine"
+ }
+ ],
+ "נחיר־": [
+ {
+ "word_nikkud": "נְחִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5566-nechir",
+ "gender": "masculine"
+ }
+ ],
+ "נחירי־": [
+ {
+ "word_nikkud": "נְחִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5566-nechir",
+ "gender": "masculine"
+ }
+ ],
+ "נחישות": [
+ {
+ "word_nikkud": "נְחִישׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8158-nechishut",
+ "gender": "feminine"
+ }
+ ],
+ "נחישויות": [
+ {
+ "word_nikkud": "נְחִישׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8158-nechishut",
+ "gender": "feminine"
+ }
+ ],
+ "נחישות־": [
+ {
+ "word_nikkud": "נְחִישׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8158-nechishut",
+ "gender": "feminine"
+ }
+ ],
+ "נחישויות־": [
+ {
+ "word_nikkud": "נְחִישׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8158-nechishut",
+ "gender": "feminine"
+ }
+ ],
+ "נחושת": [
+ {
+ "word_nikkud": "נְחֹשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4361-nechoshet",
+ "gender": "feminine"
+ }
+ ],
+ "נחושת־": [
+ {
+ "word_nikkud": "נְחֹשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4361-nechoshet",
+ "gender": "feminine"
+ }
+ ],
+ "נחש": [
+ {
+ "word_nikkud": "נָחָשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3338-nachash",
+ "gender": "masculine"
+ }
+ ],
+ "נחשים": [
+ {
+ "word_nikkud": "נָחָשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3338-nachash",
+ "gender": "masculine"
+ }
+ ],
+ "נחש־": [
+ {
+ "word_nikkud": "נָחָשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3338-nachash",
+ "gender": "masculine"
+ }
+ ],
+ "נחשי־": [
+ {
+ "word_nikkud": "נָחָשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3338-nachash",
+ "gender": "masculine"
+ }
+ ],
+ "נחיתה": [
+ {
+ "word_nikkud": "נְחִיתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9255-nechita",
+ "gender": "feminine"
+ }
+ ],
+ "נחיתות": [
+ {
+ "word_nikkud": "נְחִיתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9255-nechita",
+ "gender": "feminine"
+ }
+ ],
+ "נחיתת־": [
+ {
+ "word_nikkud": "נְחִיתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9255-nechita",
+ "gender": "feminine"
+ }
+ ],
+ "נחיתות־": [
+ {
+ "word_nikkud": "נְחִיתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9255-nechita",
+ "gender": "feminine"
+ }
+ ],
+ "מטה": [
+ {
+ "word_nikkud": "מַטֶּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9043-mate",
+ "gender": "masculine"
+ }
+ ],
+ "מטים": [
+ {
+ "word_nikkud": "מַטֶּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9043-mate",
+ "gender": "masculine"
+ }
+ ],
+ "מטה־": [
+ {
+ "word_nikkud": "מַטֶּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9043-mate",
+ "gender": "masculine"
+ }
+ ],
+ "מטי־": [
+ {
+ "word_nikkud": "מַטֶּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9043-mate",
+ "gender": "masculine"
+ }
+ ],
+ "נטייה": [
+ {
+ "word_nikkud": "נְטִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6350-netiya",
+ "gender": "feminine"
+ }
+ ],
+ "נטיות": [
+ {
+ "word_nikkud": "נְטִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6350-netiya",
+ "gender": "feminine"
+ }
+ ],
+ "נטיית־": [
+ {
+ "word_nikkud": "נְטִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6350-netiya",
+ "gender": "feminine"
+ }
+ ],
+ "נטיות־": [
+ {
+ "word_nikkud": "נְטִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6350-netiya",
+ "gender": "feminine"
+ }
+ ],
+ "נטילת ידיים": [
+ {
+ "word_nikkud": "נְטִילַת יָדַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7637-netilat-yadayim",
+ "gender": ""
+ }
+ ],
+ "מטלה": [
+ {
+ "word_nikkud": "מַטָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5303-matala",
+ "gender": "feminine"
+ }
+ ],
+ "מטלות": [
+ {
+ "word_nikkud": "מַטָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5303-matala",
+ "gender": "feminine"
+ }
+ ],
+ "מטלת־": [
+ {
+ "word_nikkud": "מַטָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5303-matala",
+ "gender": "feminine"
+ }
+ ],
+ "מטלות־": [
+ {
+ "word_nikkud": "מַטָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5303-matala",
+ "gender": "feminine"
+ }
+ ],
+ "נטילה": [
+ {
+ "word_nikkud": "נְטִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7636-netila",
+ "gender": "feminine"
+ }
+ ],
+ "נטילות": [
+ {
+ "word_nikkud": "נְטִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7636-netila",
+ "gender": "feminine"
+ }
+ ],
+ "נטילת־": [
+ {
+ "word_nikkud": "נְטִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7636-netila",
+ "gender": "feminine"
+ }
+ ],
+ "נטילות־": [
+ {
+ "word_nikkud": "נְטִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7636-netila",
+ "gender": "feminine"
+ }
+ ],
+ "נטל": [
+ {
+ "word_nikkud": "נֵטֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8094-netel",
+ "gender": "masculine"
+ }
+ ],
+ "נטלים": [
+ {
+ "word_nikkud": "נֵטֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8094-netel",
+ "gender": "masculine"
+ }
+ ],
+ "נטל־": [
+ {
+ "word_nikkud": "נֵטֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8094-netel",
+ "gender": "masculine"
+ }
+ ],
+ "נטלי־": [
+ {
+ "word_nikkud": "נֵטֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8094-netel",
+ "gender": "masculine"
+ }
+ ],
+ "נטיעה": [
+ {
+ "word_nikkud": "נְטִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7417-netia",
+ "gender": "feminine"
+ }
+ ],
+ "נטיעות": [
+ {
+ "word_nikkud": "נְטִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7417-netia",
+ "gender": "feminine"
+ }
+ ],
+ "נטיעת־": [
+ {
+ "word_nikkud": "נְטִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7417-netia",
+ "gender": "feminine"
+ }
+ ],
+ "נטיעות־": [
+ {
+ "word_nikkud": "נְטִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7417-netia",
+ "gender": "feminine"
+ }
+ ],
+ "מטע": [
+ {
+ "word_nikkud": "מַטָּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8195-mata",
+ "gender": "masculine"
+ }
+ ],
+ "מטעים": [
+ {
+ "word_nikkud": "מַטָּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8195-mata",
+ "gender": "masculine"
+ }
+ ],
+ "מטע־": [
+ {
+ "word_nikkud": "מַטָּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8195-mata",
+ "gender": "masculine"
+ }
+ ],
+ "מטעי־": [
+ {
+ "word_nikkud": "מַטָּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8195-mata",
+ "gender": "masculine"
+ }
+ ],
+ "נטיף": [
+ {
+ "word_nikkud": "נָטִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7677-natif",
+ "gender": "masculine"
+ }
+ ],
+ "נטיפים": [
+ {
+ "word_nikkud": "נָטִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7677-natif",
+ "gender": "masculine"
+ }
+ ],
+ "נטיף־": [
+ {
+ "word_nikkud": "נָטִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7677-natif",
+ "gender": "masculine"
+ }
+ ],
+ "נטיפי־": [
+ {
+ "word_nikkud": "נָטִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7677-natif",
+ "gender": "masculine"
+ }
+ ],
+ "הטפה": [
+ {
+ "word_nikkud": "הַטָּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8098-hatafa",
+ "gender": "feminine"
+ }
+ ],
+ "הטפות": [
+ {
+ "word_nikkud": "הַטָּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8098-hatafa",
+ "gender": "feminine"
+ }
+ ],
+ "הטפת־": [
+ {
+ "word_nikkud": "הַטָּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8098-hatafa",
+ "gender": "feminine"
+ }
+ ],
+ "הטפות־": [
+ {
+ "word_nikkud": "הַטָּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8098-hatafa",
+ "gender": "feminine"
+ }
+ ],
+ "נטף": [
+ {
+ "word_nikkud": "נֵטֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7010-netef",
+ "gender": "masculine"
+ }
+ ],
+ "נטפים": [
+ {
+ "word_nikkud": "נֵטֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7010-netef",
+ "gender": "masculine"
+ }
+ ],
+ "נטף־": [
+ {
+ "word_nikkud": "נֵטֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7010-netef",
+ "gender": "masculine"
+ }
+ ],
+ "נטפי־": [
+ {
+ "word_nikkud": "נֵטֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7010-netef",
+ "gender": "masculine"
+ }
+ ],
+ "ניטור": [
+ {
+ "word_nikkud": "נִטּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4861-nitur",
+ "gender": "masculine"
+ }
+ ],
+ "ניטורים": [
+ {
+ "word_nikkud": "נִטּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4861-nitur",
+ "gender": "masculine"
+ }
+ ],
+ "ניטור־": [
+ {
+ "word_nikkud": "נִטּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4861-nitur",
+ "gender": "masculine"
+ }
+ ],
+ "ניטורי־": [
+ {
+ "word_nikkud": "נִטּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4861-nitur",
+ "gender": "masculine"
+ }
+ ],
+ "מטרה": [
+ {
+ "word_nikkud": "מַטָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4123-matara",
+ "gender": "feminine"
+ }
+ ],
+ "מטרות": [
+ {
+ "word_nikkud": "מַטָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4123-matara",
+ "gender": "feminine"
+ }
+ ],
+ "מטרת־": [
+ {
+ "word_nikkud": "מַטָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4123-matara",
+ "gender": "feminine"
+ }
+ ],
+ "מטרות־": [
+ {
+ "word_nikkud": "מַטָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4123-matara",
+ "gender": "feminine"
+ }
+ ],
+ "ניבול פה": [
+ {
+ "word_nikkud": "נִבּוּל פֶּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7458-nibul-pe",
+ "gender": ""
+ }
+ ],
+ "נייד": [
+ {
+ "word_nikkud": "נַיָּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3871-nayad",
+ "gender": "masculine"
+ }
+ ],
+ "ניידים": [
+ {
+ "word_nikkud": "נַיָּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3871-nayad",
+ "gender": "masculine"
+ }
+ ],
+ "נייד־": [
+ {
+ "word_nikkud": "נַיָּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3871-nayad",
+ "gender": "masculine"
+ }
+ ],
+ "ניידי־": [
+ {
+ "word_nikkud": "נַיָּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3871-nayad",
+ "gender": "masculine"
+ }
+ ],
+ "ניידת": [
+ {
+ "word_nikkud": "נַיֶּדֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3872-nayedet",
+ "gender": "feminine"
+ }
+ ],
+ "ניידות": [
+ {
+ "word_nikkud": "נַיֶּדֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3872-nayedet",
+ "gender": "feminine"
+ }
+ ],
+ "ניידת־": [
+ {
+ "word_nikkud": "נַיֶּדֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3872-nayedet",
+ "gender": "feminine"
+ }
+ ],
+ "ניידות־": [
+ {
+ "word_nikkud": "נַיֶּדֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3872-nayedet",
+ "gender": "feminine"
+ }
+ ],
+ "ניחוח": [
+ {
+ "word_nikkud": "נִיחוֹחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5008-nichoach",
+ "gender": "masculine"
+ }
+ ],
+ "ניחוחים": [
+ {
+ "word_nikkud": "נִיחוֹחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5008-nichoach",
+ "gender": "masculine"
+ }
+ ],
+ "ניחוח־": [
+ {
+ "word_nikkud": "נִיחוֹחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5008-nichoach",
+ "gender": "masculine"
+ }
+ ],
+ "ניחוחי־": [
+ {
+ "word_nikkud": "נִיחוֹחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5008-nichoach",
+ "gender": "masculine"
+ }
+ ],
+ "נייר": [
+ {
+ "word_nikkud": "נְיָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4515-neyar",
+ "gender": "masculine"
+ }
+ ],
+ "ניירות": [
+ {
+ "word_nikkud": "נְיָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4515-neyar",
+ "gender": "masculine"
+ }
+ ],
+ "נייר־": [
+ {
+ "word_nikkud": "נְיָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4515-neyar",
+ "gender": "masculine"
+ }
+ ],
+ "ניירות־": [
+ {
+ "word_nikkud": "נְיָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4515-neyar",
+ "gender": "masculine"
+ }
+ ],
+ "נין": [
+ {
+ "word_nikkud": "נִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4612-nin",
+ "gender": "masculine"
+ }
+ ],
+ "נינים": [
+ {
+ "word_nikkud": "נִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4612-nin",
+ "gender": "masculine"
+ }
+ ],
+ "נין־": [
+ {
+ "word_nikkud": "נִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4612-nin",
+ "gender": "masculine"
+ }
+ ],
+ "ניני־": [
+ {
+ "word_nikkud": "נִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4612-nin",
+ "gender": "masculine"
+ }
+ ],
+ "נינה": [
+ {
+ "word_nikkud": "נִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4613-nina",
+ "gender": "feminine"
+ }
+ ],
+ "נינות": [
+ {
+ "word_nikkud": "נִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4613-nina",
+ "gender": "feminine"
+ }
+ ],
+ "נינת־": [
+ {
+ "word_nikkud": "נִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4613-nina",
+ "gender": "feminine"
+ }
+ ],
+ "נינות־": [
+ {
+ "word_nikkud": "נִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4613-nina",
+ "gender": "feminine"
+ }
+ ],
+ "נירוסטה": [
+ {
+ "word_nikkud": "נִירוֹסְטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6501-nirosta",
+ "gender": "feminine"
+ }
+ ],
+ "נכד": [
+ {
+ "word_nikkud": "נֶכֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4610-neched",
+ "gender": "masculine"
+ }
+ ],
+ "נכדים": [
+ {
+ "word_nikkud": "נֶכֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4610-neched",
+ "gender": "masculine"
+ }
+ ],
+ "נכד־": [
+ {
+ "word_nikkud": "נֶכֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4610-neched",
+ "gender": "masculine"
+ }
+ ],
+ "נכדי־": [
+ {
+ "word_nikkud": "נֶכֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4610-neched",
+ "gender": "masculine"
+ }
+ ],
+ "נכדה": [
+ {
+ "word_nikkud": "נֶכְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4611-nechda",
+ "gender": "feminine"
+ }
+ ],
+ "נכדות": [
+ {
+ "word_nikkud": "נֶכְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4611-nechda",
+ "gender": "feminine"
+ }
+ ],
+ "נכדת־": [
+ {
+ "word_nikkud": "נֶכְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4611-nechda",
+ "gender": "feminine"
+ }
+ ],
+ "נכדות־": [
+ {
+ "word_nikkud": "נֶכְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4611-nechda",
+ "gender": "feminine"
+ }
+ ],
+ "נוכחות": [
+ {
+ "word_nikkud": "נוֹכְחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6768-nochechut",
+ "gender": "feminine"
+ }
+ ],
+ "נוכחות־": [
+ {
+ "word_nikkud": "נוֹכְחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6768-nochechut",
+ "gender": "feminine"
+ }
+ ],
+ "נכה": [
+ {
+ "word_nikkud": "נָכֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5144-nache",
+ "gender": "masculine"
+ }
+ ],
+ "נכים": [
+ {
+ "word_nikkud": "נָכֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5144-nache",
+ "gender": "masculine"
+ }
+ ],
+ "נכה־": [
+ {
+ "word_nikkud": "נָכֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5144-nache",
+ "gender": "masculine"
+ }
+ ],
+ "נכי־": [
+ {
+ "word_nikkud": "נָכֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5144-nache",
+ "gender": "masculine"
+ }
+ ],
+ "נכות": [
+ {
+ "word_nikkud": "נָכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3775-nachut",
+ "gender": "feminine"
+ }
+ ],
+ "נכויות": [
+ {
+ "word_nikkud": "נָכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3775-nachut",
+ "gender": "feminine"
+ }
+ ],
+ "נכות־": [
+ {
+ "word_nikkud": "נָכוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3775-nachut",
+ "gender": "feminine"
+ }
+ ],
+ "נכויות־": [
+ {
+ "word_nikkud": "נָכוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3775-nachut",
+ "gender": "feminine"
+ }
+ ],
+ "מכה": [
+ {
+ "word_nikkud": "מַכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3957-maka",
+ "gender": "feminine"
+ }
+ ],
+ "מכות": [
+ {
+ "word_nikkud": "מַכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3957-maka",
+ "gender": "feminine"
+ }
+ ],
+ "מכת־": [
+ {
+ "word_nikkud": "מַכָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3957-maka",
+ "gender": "feminine"
+ }
+ ],
+ "מכות־": [
+ {
+ "word_nikkud": "מַכָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3957-maka",
+ "gender": "feminine"
+ }
+ ],
+ "ניכוי": [
+ {
+ "word_nikkud": "נִכּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5824-nikuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניכויים": [
+ {
+ "word_nikkud": "נִכּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5824-nikuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניכוי־": [
+ {
+ "word_nikkud": "נִכּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5824-nikuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניכויי־": [
+ {
+ "word_nikkud": "נִכּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5824-nikuy",
+ "gender": "masculine"
+ }
+ ],
+ "נוכל": [
+ {
+ "word_nikkud": "נוֹכֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3931-nochel",
+ "gender": "masculine"
+ }
+ ],
+ "נוכלים": [
+ {
+ "word_nikkud": "נוֹכֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3931-nochel",
+ "gender": "masculine"
+ }
+ ],
+ "נוכל־": [
+ {
+ "word_nikkud": "נוֹכֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3931-nochel",
+ "gender": "masculine"
+ }
+ ],
+ "נוכלי־": [
+ {
+ "word_nikkud": "נוֹכֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3931-nochel",
+ "gender": "masculine"
+ }
+ ],
+ "נכס": [
+ {
+ "word_nikkud": "נֶכֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6579-neches",
+ "gender": "masculine"
+ }
+ ],
+ "נכסים": [
+ {
+ "word_nikkud": "נֶכֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6579-neches",
+ "gender": "masculine"
+ }
+ ],
+ "נכס־": [
+ {
+ "word_nikkud": "נֶכֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6579-neches",
+ "gender": "masculine"
+ }
+ ],
+ "נכסי־": [
+ {
+ "word_nikkud": "נֶכֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6579-neches",
+ "gender": "masculine"
+ }
+ ],
+ "ניכור": [
+ {
+ "word_nikkud": "נִכּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8482-nikur",
+ "gender": "masculine"
+ }
+ ],
+ "ניכורים": [
+ {
+ "word_nikkud": "נִכּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8482-nikur",
+ "gender": "masculine"
+ }
+ ],
+ "ניכור־": [
+ {
+ "word_nikkud": "נִכּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8482-nikur",
+ "gender": "masculine"
+ }
+ ],
+ "ניכורי־": [
+ {
+ "word_nikkud": "נִכּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8482-nikur",
+ "gender": "masculine"
+ }
+ ],
+ "הכרה": [
+ {
+ "word_nikkud": "הַכָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5847-hakara",
+ "gender": "feminine"
+ }
+ ],
+ "הכרות": [
+ {
+ "word_nikkud": "הַכָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5847-hakara",
+ "gender": "feminine"
+ }
+ ],
+ "הכרת־": [
+ {
+ "word_nikkud": "הַכָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5847-hakara",
+ "gender": "feminine"
+ }
+ ],
+ "הכרות־": [
+ {
+ "word_nikkud": "הַכָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5847-hakara",
+ "gender": "feminine"
+ }
+ ],
+ "היכרות": [
+ {
+ "word_nikkud": "הֶכֵּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8828-hekerut",
+ "gender": "feminine"
+ }
+ ],
+ "היכרות־": [
+ {
+ "word_nikkud": "הֶכֵּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8828-hekerut",
+ "gender": "feminine"
+ }
+ ],
+ "היכר": [
+ {
+ "word_nikkud": "הֶכֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6889-heker",
+ "gender": "masculine"
+ }
+ ],
+ "היכרים": [
+ {
+ "word_nikkud": "הֶכֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6889-heker",
+ "gender": "masculine"
+ }
+ ],
+ "היכר־": [
+ {
+ "word_nikkud": "הֶכֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6889-heker",
+ "gender": "masculine"
+ }
+ ],
+ "היכרי־": [
+ {
+ "word_nikkud": "הֶכֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6889-heker",
+ "gender": "masculine"
+ }
+ ],
+ "מכוש": [
+ {
+ "word_nikkud": "מַכּוֹשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4131-makosh",
+ "gender": "masculine"
+ }
+ ],
+ "מכושים": [
+ {
+ "word_nikkud": "מַכּוֹשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4131-makosh",
+ "gender": "masculine"
+ }
+ ],
+ "מכוש־": [
+ {
+ "word_nikkud": "מַכּוֹשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4131-makosh",
+ "gender": "masculine"
+ }
+ ],
+ "מכושי־": [
+ {
+ "word_nikkud": "מַכּוֹשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4131-makosh",
+ "gender": "masculine"
+ }
+ ],
+ "הנמכה": [
+ {
+ "word_nikkud": "הַנְמָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2889-hanmacha",
+ "gender": "feminine"
+ }
+ ],
+ "הנמכת־": [
+ {
+ "word_nikkud": "הַנְמָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2889-hanmacha",
+ "gender": "feminine"
+ }
+ ],
+ "נמלה": [
+ {
+ "word_nikkud": "נְמָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7595-nemala",
+ "gender": "feminine"
+ }
+ ],
+ "נמלים": [
+ {
+ "word_nikkud": "נְמָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7595-nemala",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "נָמֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6238-namel",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נָמֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6238-namel",
+ "gender": "masculine"
+ }
+ ],
+ "נמלת־": [
+ {
+ "word_nikkud": "נְמָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7595-nemala",
+ "gender": "feminine"
+ }
+ ],
+ "נמלי־": [
+ {
+ "word_nikkud": "נְמָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7595-nemala",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "נָמֵל",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6238-namel",
+ "gender": "masculine"
+ }
+ ],
+ "נימול": [
+ {
+ "word_nikkud": "נִמּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8211-nimul",
+ "gender": "masculine"
+ }
+ ],
+ "נימול־": [
+ {
+ "word_nikkud": "נִמּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8211-nimul",
+ "gender": "masculine"
+ }
+ ],
+ "נמל": [
+ {
+ "word_nikkud": "נָמֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6238-namel",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "נָמֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6238-namel",
+ "gender": "masculine"
+ }
+ ],
+ "נמל־": [
+ {
+ "word_nikkud": "נָמֵל",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6238-namel",
+ "gender": "masculine"
+ }
+ ],
+ "נמל תעופה": [
+ {
+ "word_nikkud": "נְמַל תְּעוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7881-nemal-teufa",
+ "gender": ""
+ }
+ ],
+ "נמלי תעופה": [
+ {
+ "word_nikkud": "נְמַל תְּעוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7881-nemal-teufa",
+ "gender": ""
+ }
+ ],
+ "נמנום": [
+ {
+ "word_nikkud": "נִמְנוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6953-nimnum",
+ "gender": "masculine"
+ }
+ ],
+ "נמנומים": [
+ {
+ "word_nikkud": "נִמְנוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6953-nimnum",
+ "gender": "masculine"
+ }
+ ],
+ "נמנום־": [
+ {
+ "word_nikkud": "נִמְנוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6953-nimnum",
+ "gender": "masculine"
+ }
+ ],
+ "נמנומי־": [
+ {
+ "word_nikkud": "נִמְנוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6953-nimnum",
+ "gender": "masculine"
+ }
+ ],
+ "נימוס": [
+ {
+ "word_nikkud": "נִמּוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6240-nimus",
+ "gender": "masculine"
+ }
+ ],
+ "נימוסים": [
+ {
+ "word_nikkud": "נִמּוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6240-nimus",
+ "gender": "masculine"
+ }
+ ],
+ "נימוס־": [
+ {
+ "word_nikkud": "נִמּוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6240-nimus",
+ "gender": "masculine"
+ }
+ ],
+ "נימוסי־": [
+ {
+ "word_nikkud": "נִמּוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6240-nimus",
+ "gender": "masculine"
+ }
+ ],
+ "נימוק": [
+ {
+ "word_nikkud": "נִמּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6202-nimuk",
+ "gender": "masculine"
+ }
+ ],
+ "נימוקים": [
+ {
+ "word_nikkud": "נִמּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6202-nimuk",
+ "gender": "masculine"
+ }
+ ],
+ "נימוק־": [
+ {
+ "word_nikkud": "נִמּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6202-nimuk",
+ "gender": "masculine"
+ }
+ ],
+ "נימוקי־": [
+ {
+ "word_nikkud": "נִמּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6202-nimuk",
+ "gender": "masculine"
+ }
+ ],
+ "נמר": [
+ {
+ "word_nikkud": "נָמֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5689-namer",
+ "gender": "masculine"
+ }
+ ],
+ "נמרים": [
+ {
+ "word_nikkud": "נָמֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5689-namer",
+ "gender": "masculine"
+ }
+ ],
+ "נמר־": [
+ {
+ "word_nikkud": "נָמֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5689-namer",
+ "gender": "masculine"
+ }
+ ],
+ "נמרי־": [
+ {
+ "word_nikkud": "נָמֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5689-namer",
+ "gender": "masculine"
+ }
+ ],
+ "נמש": [
+ {
+ "word_nikkud": "נֶמֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7469-nemesh",
+ "gender": "masculine"
+ }
+ ],
+ "נמשים": [
+ {
+ "word_nikkud": "נֶמֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7469-nemesh",
+ "gender": "masculine"
+ }
+ ],
+ "נמש־": [
+ {
+ "word_nikkud": "נֶמֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7469-nemesh",
+ "gender": "masculine"
+ }
+ ],
+ "נמשי־": [
+ {
+ "word_nikkud": "נֶמֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7469-nemesh",
+ "gender": "masculine"
+ }
+ ],
+ "ננס": [
+ {
+ "word_nikkud": "נַנָּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8954-nanas",
+ "gender": ""
+ }
+ ],
+ "ננסים": [
+ {
+ "word_nikkud": "נַנָּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8954-nanas",
+ "gender": ""
+ }
+ ],
+ "ננס־": [
+ {
+ "word_nikkud": "נַנָּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8954-nanas",
+ "gender": ""
+ }
+ ],
+ "ננסי־": [
+ {
+ "word_nikkud": "נַנָּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8954-nanas",
+ "gender": ""
+ }
+ ],
+ "נסיגה": [
+ {
+ "word_nikkud": "נְסִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5393-nesiga",
+ "gender": "feminine"
+ }
+ ],
+ "נסיגות": [
+ {
+ "word_nikkud": "נְסִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5393-nesiga",
+ "gender": "feminine"
+ }
+ ],
+ "נסיגת־": [
+ {
+ "word_nikkud": "נְסִיגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5393-nesiga",
+ "gender": "feminine"
+ }
+ ],
+ "נסיגות־": [
+ {
+ "word_nikkud": "נְסִיגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5393-nesiga",
+ "gender": "feminine"
+ }
+ ],
+ "התנסחות": [
+ {
+ "word_nikkud": "הִתְנַסְּחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8283-hitnaschut",
+ "gender": "feminine"
+ }
+ ],
+ "התנסחויות": [
+ {
+ "word_nikkud": "הִתְנַסְּחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8283-hitnaschut",
+ "gender": "feminine"
+ }
+ ],
+ "התנסחות־": [
+ {
+ "word_nikkud": "הִתְנַסְּחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8283-hitnaschut",
+ "gender": "feminine"
+ }
+ ],
+ "התנסחויות־": [
+ {
+ "word_nikkud": "הִתְנַסְּחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8283-hitnaschut",
+ "gender": "feminine"
+ }
+ ],
+ "נוסחה": [
+ {
+ "word_nikkud": "נֻסְחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3240-nuscha",
+ "gender": "feminine"
+ }
+ ],
+ "נוסחאות": [
+ {
+ "word_nikkud": "נֻסְחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3240-nuscha",
+ "gender": "feminine"
+ }
+ ],
+ "נוסחת־": [
+ {
+ "word_nikkud": "נֻסְחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3240-nuscha",
+ "gender": "feminine"
+ }
+ ],
+ "נוסחות־": [
+ {
+ "word_nikkud": "נֻסְחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3240-nuscha",
+ "gender": "feminine"
+ }
+ ],
+ "הסחה": [
+ {
+ "word_nikkud": "הַסָּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8183-hasacha",
+ "gender": "feminine"
+ }
+ ],
+ "הסחות": [
+ {
+ "word_nikkud": "הַסָּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8183-hasacha",
+ "gender": "feminine"
+ }
+ ],
+ "הסחת־": [
+ {
+ "word_nikkud": "הַסָּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8183-hasacha",
+ "gender": "feminine"
+ }
+ ],
+ "הסחות־": [
+ {
+ "word_nikkud": "הַסָּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8183-hasacha",
+ "gender": "feminine"
+ }
+ ],
+ "התנסות": [
+ {
+ "word_nikkud": "הִתְנַסּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7923-hitnasut",
+ "gender": "feminine"
+ }
+ ],
+ "התנסויות": [
+ {
+ "word_nikkud": "הִתְנַסּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7923-hitnasut",
+ "gender": "feminine"
+ }
+ ],
+ "התנסות־": [
+ {
+ "word_nikkud": "הִתְנַסּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7923-hitnasut",
+ "gender": "feminine"
+ }
+ ],
+ "התנסויות־": [
+ {
+ "word_nikkud": "הִתְנַסּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7923-hitnasut",
+ "gender": "feminine"
+ }
+ ],
+ "ניסוי": [
+ {
+ "word_nikkud": "נִסּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4484-nisuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניסויים": [
+ {
+ "word_nikkud": "נִסּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4484-nisuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניסוי־": [
+ {
+ "word_nikkud": "נִסּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4484-nisuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניסויי־": [
+ {
+ "word_nikkud": "נִסּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4484-nisuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניסיון": [
+ {
+ "word_nikkud": "נִסָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3580-nisayon",
+ "gender": "masculine"
+ }
+ ],
+ "ניסיונות": [
+ {
+ "word_nikkud": "נִסָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3580-nisayon",
+ "gender": "masculine"
+ }
+ ],
+ "ניסיון־": [
+ {
+ "word_nikkud": "נִסָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3580-nisayon",
+ "gender": "masculine"
+ }
+ ],
+ "ניסיונות־": [
+ {
+ "word_nikkud": "נִסָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3580-nisayon",
+ "gender": "masculine"
+ }
+ ],
+ "מסיכה": [
+ {
+ "word_nikkud": "מַסֵּכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4891-masecha",
+ "gender": "feminine"
+ }
+ ],
+ "מסיכות": [
+ {
+ "word_nikkud": "מַסֵּכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4891-masecha",
+ "gender": "feminine"
+ }
+ ],
+ "מסיכת־": [
+ {
+ "word_nikkud": "מַסֵּכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4891-masecha",
+ "gender": "feminine"
+ }
+ ],
+ "מסיכות־": [
+ {
+ "word_nikkud": "מַסֵּכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4891-masecha",
+ "gender": "feminine"
+ }
+ ],
+ "נסיכה": [
+ {
+ "word_nikkud": "נְסִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5742-nesicha",
+ "gender": "feminine"
+ }
+ ],
+ "נסיכות": [
+ {
+ "word_nikkud": "נְסִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5742-nesicha",
+ "gender": "feminine"
+ }
+ ],
+ "נסיכת־": [
+ {
+ "word_nikkud": "נְסִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5742-nesicha",
+ "gender": "feminine"
+ }
+ ],
+ "נסיכות־": [
+ {
+ "word_nikkud": "נְסִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5742-nesicha",
+ "gender": "feminine"
+ }
+ ],
+ "נסיך": [
+ {
+ "word_nikkud": "נָסִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5741-nasich",
+ "gender": "masculine"
+ }
+ ],
+ "נסיכים": [
+ {
+ "word_nikkud": "נָסִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5741-nasich",
+ "gender": "masculine"
+ }
+ ],
+ "נסיך־": [
+ {
+ "word_nikkud": "נָסִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5741-nasich",
+ "gender": "masculine"
+ }
+ ],
+ "נסיכי־": [
+ {
+ "word_nikkud": "נָסִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5741-nasich",
+ "gender": "masculine"
+ }
+ ],
+ "נס": [
+ {
+ "word_nikkud": "נֵס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4157-nes",
+ "gender": "masculine"
+ }
+ ],
+ "ניסים": [
+ {
+ "word_nikkud": "נֵס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4157-nes",
+ "gender": "masculine"
+ }
+ ],
+ "נס־": [
+ {
+ "word_nikkud": "נֵס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4157-nes",
+ "gender": "masculine"
+ }
+ ],
+ "ניסי־": [
+ {
+ "word_nikkud": "נֵס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4157-nes",
+ "gender": "masculine"
+ }
+ ],
+ "נסיעה": [
+ {
+ "word_nikkud": "נְסִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2828-nesia",
+ "gender": "feminine"
+ }
+ ],
+ "נסיעות": [
+ {
+ "word_nikkud": "נְסִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2828-nesia",
+ "gender": "feminine"
+ }
+ ],
+ "נסיעת־": [
+ {
+ "word_nikkud": "נְסִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2828-nesia",
+ "gender": "feminine"
+ }
+ ],
+ "נסיעות־": [
+ {
+ "word_nikkud": "נְסִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2828-nesia",
+ "gender": "feminine"
+ }
+ ],
+ "מסע": [
+ {
+ "word_nikkud": "מַסָּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3130-masa",
+ "gender": "masculine"
+ }
+ ],
+ "מסעים": [
+ {
+ "word_nikkud": "מַסָּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3130-masa",
+ "gender": "masculine"
+ }
+ ],
+ "מסע־": [
+ {
+ "word_nikkud": "מַסָּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3130-masa",
+ "gender": "masculine"
+ }
+ ],
+ "מסעי־": [
+ {
+ "word_nikkud": "מַסָּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3130-masa",
+ "gender": "masculine"
+ }
+ ],
+ "מסוע": [
+ {
+ "word_nikkud": "מַסּוֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5686-masoa",
+ "gender": "masculine"
+ }
+ ],
+ "מסועים": [
+ {
+ "word_nikkud": "מַסּוֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5686-masoa",
+ "gender": "masculine"
+ }
+ ],
+ "מסוע־": [
+ {
+ "word_nikkud": "מַסּוֹעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5686-masoa",
+ "gender": "masculine"
+ }
+ ],
+ "מסועי־": [
+ {
+ "word_nikkud": "מַסּוֹעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5686-masoa",
+ "gender": "masculine"
+ }
+ ],
+ "הסעה": [
+ {
+ "word_nikkud": "הַסָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6782-hasaa",
+ "gender": "feminine"
+ }
+ ],
+ "הסעות": [
+ {
+ "word_nikkud": "הַסָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6782-hasaa",
+ "gender": "feminine"
+ }
+ ],
+ "הסעת־": [
+ {
+ "word_nikkud": "הַסָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6782-hasaa",
+ "gender": "feminine"
+ }
+ ],
+ "הסעות־": [
+ {
+ "word_nikkud": "הַסָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6782-hasaa",
+ "gender": "feminine"
+ }
+ ],
+ "נוסע": [
+ {
+ "word_nikkud": "נוֹסֵעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6945-nosea",
+ "gender": "masculine"
+ }
+ ],
+ "נוסעים": [
+ {
+ "word_nikkud": "נוֹסֵעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6945-nosea",
+ "gender": "masculine"
+ }
+ ],
+ "נוסע־": [
+ {
+ "word_nikkud": "נוֹסֵעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6945-nosea",
+ "gender": "masculine"
+ }
+ ],
+ "נוסעי־": [
+ {
+ "word_nikkud": "נוֹסֵעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6945-nosea",
+ "gender": "masculine"
+ }
+ ],
+ "מסוק": [
+ {
+ "word_nikkud": "מַסּוֹק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4956-masok",
+ "gender": "masculine"
+ }
+ ],
+ "מסוקים": [
+ {
+ "word_nikkud": "מַסּוֹק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4956-masok",
+ "gender": "masculine"
+ }
+ ],
+ "מסוק־": [
+ {
+ "word_nikkud": "מַסּוֹק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4956-masok",
+ "gender": "masculine"
+ }
+ ],
+ "מסוקי־": [
+ {
+ "word_nikkud": "מַסּוֹק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4956-masok",
+ "gender": "masculine"
+ }
+ ],
+ "מסקנה": [
+ {
+ "word_nikkud": "מַסְּקָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4982-maskana",
+ "gender": "feminine"
+ }
+ ],
+ "מסקנות": [
+ {
+ "word_nikkud": "מַסְּקָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4982-maskana",
+ "gender": "feminine"
+ }
+ ],
+ "מסקנת־": [
+ {
+ "word_nikkud": "מַסְּקָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4982-maskana",
+ "gender": "feminine"
+ }
+ ],
+ "מסקנות־": [
+ {
+ "word_nikkud": "מַסְּקָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4982-maskana",
+ "gender": "feminine"
+ }
+ ],
+ "הסקה": [
+ {
+ "word_nikkud": "הַסָּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8749-hasaka",
+ "gender": "feminine"
+ }
+ ],
+ "הסקות": [
+ {
+ "word_nikkud": "הַסָּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8749-hasaka",
+ "gender": "feminine"
+ }
+ ],
+ "הסקת־": [
+ {
+ "word_nikkud": "הַסָּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8749-hasaka",
+ "gender": "feminine"
+ }
+ ],
+ "הסקות־": [
+ {
+ "word_nikkud": "הַסָּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8749-hasaka",
+ "gender": "feminine"
+ }
+ ],
+ "נסורת": [
+ {
+ "word_nikkud": "נְסֹרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3262-nesoret",
+ "gender": "feminine"
+ }
+ ],
+ "נסורת־": [
+ {
+ "word_nikkud": "נְסֹרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3262-nesoret",
+ "gender": "feminine"
+ }
+ ],
+ "מסור": [
+ {
+ "word_nikkud": "מַסּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4764-masor",
+ "gender": "masculine"
+ }
+ ],
+ "מסורים": [
+ {
+ "word_nikkud": "מַסּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4764-masor",
+ "gender": "masculine"
+ }
+ ],
+ "מסור־": [
+ {
+ "word_nikkud": "מַסּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4764-masor",
+ "gender": "masculine"
+ }
+ ],
+ "מסורי־": [
+ {
+ "word_nikkud": "מַסּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4764-masor",
+ "gender": "masculine"
+ }
+ ],
+ "מנסרה": [
+ {
+ "word_nikkud": "מִנְסָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8975-minsara",
+ "gender": "feminine"
+ }
+ ],
+ "מנסרות": [
+ {
+ "word_nikkud": "מִנְסָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8975-minsara",
+ "gender": "feminine"
+ }
+ ],
+ "מנסרת־": [
+ {
+ "word_nikkud": "מִנְסָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8975-minsara",
+ "gender": "feminine"
+ }
+ ],
+ "מנסרות־": [
+ {
+ "word_nikkud": "מִנְסָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8975-minsara",
+ "gender": "feminine"
+ }
+ ],
+ "מנעד": [
+ {
+ "word_nikkud": "מִנְעָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8071-minad",
+ "gender": "masculine"
+ }
+ ],
+ "מנעדים": [
+ {
+ "word_nikkud": "מִנְעָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8071-minad",
+ "gender": "masculine"
+ }
+ ],
+ "מנעד־": [
+ {
+ "word_nikkud": "מִנְעָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8071-minad",
+ "gender": "masculine"
+ }
+ ],
+ "מנעדי־": [
+ {
+ "word_nikkud": "מִנְעָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8071-minad",
+ "gender": "masculine"
+ }
+ ],
+ "תנעולת": [
+ {
+ "word_nikkud": "תִּנְעֹלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3252-tinolet",
+ "gender": "feminine"
+ }
+ ],
+ "תנעולת־": [
+ {
+ "word_nikkud": "תִּנְעֹלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3252-tinolet",
+ "gender": "feminine"
+ }
+ ],
+ "נעל": [
+ {
+ "word_nikkud": "נַעַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4287-naal",
+ "gender": "feminine"
+ }
+ ],
+ "נעליים": [
+ {
+ "word_nikkud": "נַעַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4287-naal",
+ "gender": "feminine"
+ }
+ ],
+ "נעל־": [
+ {
+ "word_nikkud": "נַעַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4287-naal",
+ "gender": "feminine"
+ }
+ ],
+ "נעלי־": [
+ {
+ "word_nikkud": "נַעַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4287-naal",
+ "gender": "feminine"
+ }
+ ],
+ "נעילה": [
+ {
+ "word_nikkud": "נְעִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4513-neila",
+ "gender": "feminine"
+ }
+ ],
+ "נעילות": [
+ {
+ "word_nikkud": "נְעִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4513-neila",
+ "gender": "feminine"
+ }
+ ],
+ "נעילת־": [
+ {
+ "word_nikkud": "נְעִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4513-neila",
+ "gender": "feminine"
+ }
+ ],
+ "נעילות־": [
+ {
+ "word_nikkud": "נְעִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4513-neila",
+ "gender": "feminine"
+ }
+ ],
+ "מנעול": [
+ {
+ "word_nikkud": "מַנְעוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5040-manul",
+ "gender": "masculine"
+ }
+ ],
+ "מנעולים": [
+ {
+ "word_nikkud": "מַנְעוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5040-manul",
+ "gender": "masculine"
+ }
+ ],
+ "מנעול־": [
+ {
+ "word_nikkud": "מַנְעוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5040-manul",
+ "gender": "masculine"
+ }
+ ],
+ "מנעולי־": [
+ {
+ "word_nikkud": "מַנְעוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5040-manul",
+ "gender": "masculine"
+ }
+ ],
+ "נעימה": [
+ {
+ "word_nikkud": "נְעִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5033-neima",
+ "gender": "feminine"
+ }
+ ],
+ "נעימות": [
+ {
+ "word_nikkud": "נְעִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5033-neima",
+ "gender": "feminine"
+ }
+ ],
+ "נעימת־": [
+ {
+ "word_nikkud": "נְעִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5033-neima",
+ "gender": "feminine"
+ }
+ ],
+ "נעימות־": [
+ {
+ "word_nikkud": "נְעִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5033-neima",
+ "gender": "feminine"
+ }
+ ],
+ "נענע": [
+ {
+ "word_nikkud": "נַעְנַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9121-nana",
+ "gender": "feminine"
+ }
+ ],
+ "נעורים": [
+ {
+ "word_nikkud": "נְעוּרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5337-neurim",
+ "gender": "masculine"
+ }
+ ],
+ "נעורי־": [
+ {
+ "word_nikkud": "נְעוּרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5337-neurim",
+ "gender": "masculine"
+ }
+ ],
+ "נוער": [
+ {
+ "word_nikkud": "נֹעַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7673-noar",
+ "gender": "masculine"
+ }
+ ],
+ "נוער־": [
+ {
+ "word_nikkud": "נֹעַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7673-noar",
+ "gender": "masculine"
+ }
+ ],
+ "נערה": [
+ {
+ "word_nikkud": "נַעֲרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3811-naara",
+ "gender": "feminine"
+ }
+ ],
+ "נערות": [
+ {
+ "word_nikkud": "נַעֲרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3811-naara",
+ "gender": "feminine"
+ }
+ ],
+ "נערת־": [
+ {
+ "word_nikkud": "נַעֲרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3811-naara",
+ "gender": "feminine"
+ }
+ ],
+ "נערות־": [
+ {
+ "word_nikkud": "נַעֲרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3811-naara",
+ "gender": "feminine"
+ }
+ ],
+ "נפח": [
+ {
+ "word_nikkud": "נֶפַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8951-nefach",
+ "gender": "masculine"
+ }
+ ],
+ "נפחים": [
+ {
+ "word_nikkud": "נֶפַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8951-nefach",
+ "gender": "masculine"
+ }
+ ],
+ "נפח־": [
+ {
+ "word_nikkud": "נֶפַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8951-nefach",
+ "gender": "masculine"
+ }
+ ],
+ "נפחי־": [
+ {
+ "word_nikkud": "נֶפַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8951-nefach",
+ "gender": "masculine"
+ }
+ ],
+ "תפוח": [
+ {
+ "word_nikkud": "תַּפּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4811-tapuach",
+ "gender": "masculine"
+ }
+ ],
+ "תפוחים": [
+ {
+ "word_nikkud": "תַּפּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4811-tapuach",
+ "gender": "masculine"
+ }
+ ],
+ "תפוח־": [
+ {
+ "word_nikkud": "תַּפּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4811-tapuach",
+ "gender": "masculine"
+ }
+ ],
+ "תפוחי־": [
+ {
+ "word_nikkud": "תַּפּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4811-tapuach",
+ "gender": "masculine"
+ }
+ ],
+ "מפוח": [
+ {
+ "word_nikkud": "מַפּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8291-mapuach",
+ "gender": "masculine"
+ }
+ ],
+ "מפוחים": [
+ {
+ "word_nikkud": "מַפּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8291-mapuach",
+ "gender": "masculine"
+ }
+ ],
+ "מפוח־": [
+ {
+ "word_nikkud": "מַפּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8291-mapuach",
+ "gender": "masculine"
+ }
+ ],
+ "מפוחי־": [
+ {
+ "word_nikkud": "מַפּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8291-mapuach",
+ "gender": "masculine"
+ }
+ ],
+ "נפט": [
+ {
+ "word_nikkud": "נֵפְט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8326-neft",
+ "gender": "masculine"
+ }
+ ],
+ "נפט־": [
+ {
+ "word_nikkud": "נֵפְט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8326-neft",
+ "gender": "masculine"
+ }
+ ],
+ "נפיצות": [
+ {
+ "word_nikkud": "נְפִיצוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8525-nefitzut",
+ "gender": "feminine"
+ }
+ ],
+ "נפיצויות": [
+ {
+ "word_nikkud": "נְפִיצוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8525-nefitzut",
+ "gender": "feminine"
+ }
+ ],
+ "נפיצות־": [
+ {
+ "word_nikkud": "נְפִיצוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8525-nefitzut",
+ "gender": "feminine"
+ }
+ ],
+ "נפיצויות־": [
+ {
+ "word_nikkud": "נְפִיצוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8525-nefitzut",
+ "gender": "feminine"
+ }
+ ],
+ "הפלה": [
+ {
+ "word_nikkud": "הַפָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3823-hapala",
+ "gender": "feminine"
+ }
+ ],
+ "הפלות": [
+ {
+ "word_nikkud": "הַפָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3823-hapala",
+ "gender": "feminine"
+ }
+ ],
+ "הפלת־": [
+ {
+ "word_nikkud": "הַפָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3823-hapala",
+ "gender": "feminine"
+ }
+ ],
+ "הפלות־": [
+ {
+ "word_nikkud": "הַפָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3823-hapala",
+ "gender": "feminine"
+ }
+ ],
+ "נפילה": [
+ {
+ "word_nikkud": "נְפִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8873-nefila",
+ "gender": "feminine"
+ }
+ ],
+ "נפילות": [
+ {
+ "word_nikkud": "נְפִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8873-nefila",
+ "gender": "feminine"
+ }
+ ],
+ "נפילת־": [
+ {
+ "word_nikkud": "נְפִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8873-nefila",
+ "gender": "feminine"
+ }
+ ],
+ "נפילות־": [
+ {
+ "word_nikkud": "נְפִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8873-nefila",
+ "gender": "feminine"
+ }
+ ],
+ "מפל": [
+ {
+ "word_nikkud": "מַפָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7732-mapal",
+ "gender": "masculine"
+ }
+ ],
+ "מפלים": [
+ {
+ "word_nikkud": "מַפָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7732-mapal",
+ "gender": "masculine"
+ }
+ ],
+ "מפל־": [
+ {
+ "word_nikkud": "מַפָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7732-mapal",
+ "gender": "masculine"
+ }
+ ],
+ "מפלי־": [
+ {
+ "word_nikkud": "מַפָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7732-mapal",
+ "gender": "masculine"
+ }
+ ],
+ "נפנוף": [
+ {
+ "word_nikkud": "נִפְנוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8497-nifnuf",
+ "gender": "masculine"
+ }
+ ],
+ "נפנופים": [
+ {
+ "word_nikkud": "נִפְנוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8497-nifnuf",
+ "gender": "masculine"
+ }
+ ],
+ "נפנוף־": [
+ {
+ "word_nikkud": "נִפְנוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8497-nifnuf",
+ "gender": "masculine"
+ }
+ ],
+ "נפנופי־": [
+ {
+ "word_nikkud": "נִפְנוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8497-nifnuf",
+ "gender": "masculine"
+ }
+ ],
+ "ניפוץ": [
+ {
+ "word_nikkud": "נִפּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5465-niputz",
+ "gender": "masculine"
+ }
+ ],
+ "ניפוצים": [
+ {
+ "word_nikkud": "נִפּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5465-niputz",
+ "gender": "masculine"
+ }
+ ],
+ "ניפוץ־": [
+ {
+ "word_nikkud": "נִפּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5465-niputz",
+ "gender": "masculine"
+ }
+ ],
+ "ניפוצי־": [
+ {
+ "word_nikkud": "נִפּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5465-niputz",
+ "gender": "masculine"
+ }
+ ],
+ "נפץ": [
+ {
+ "word_nikkud": "נַפָּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3865-napatz",
+ "gender": "masculine"
+ }
+ ],
+ "נפצים": [
+ {
+ "word_nikkud": "נַפָּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3865-napatz",
+ "gender": "masculine"
+ }
+ ],
+ "נפץ־": [
+ {
+ "word_nikkud": "נַפָּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3865-napatz",
+ "gender": "masculine"
+ }
+ ],
+ "נפצי־": [
+ {
+ "word_nikkud": "נַפָּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3865-napatz",
+ "gender": "masculine"
+ }
+ ],
+ "מפץ": [
+ {
+ "word_nikkud": "מַפָּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8171-mapatz",
+ "gender": "masculine"
+ }
+ ],
+ "מפצים": [
+ {
+ "word_nikkud": "מַפָּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8171-mapatz",
+ "gender": "masculine"
+ }
+ ],
+ "מפץ־": [
+ {
+ "word_nikkud": "מַפָּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8171-mapatz",
+ "gender": "masculine"
+ }
+ ],
+ "מפצי־": [
+ {
+ "word_nikkud": "מַפָּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8171-mapatz",
+ "gender": "masculine"
+ }
+ ],
+ "נפש": [
+ {
+ "word_nikkud": "נֶפֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3120-nefesh",
+ "gender": "feminine"
+ }
+ ],
+ "נפשות": [
+ {
+ "word_nikkud": "נֶפֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3120-nefesh",
+ "gender": "feminine"
+ }
+ ],
+ "נפש־": [
+ {
+ "word_nikkud": "נֶפֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3120-nefesh",
+ "gender": "feminine"
+ }
+ ],
+ "נפשות־": [
+ {
+ "word_nikkud": "נֶפֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3120-nefesh",
+ "gender": "feminine"
+ }
+ ],
+ "נציב": [
+ {
+ "word_nikkud": "נְצִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3707-netziv",
+ "gender": "masculine"
+ }
+ ],
+ "נציבים": [
+ {
+ "word_nikkud": "נְצִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3707-netziv",
+ "gender": "masculine"
+ }
+ ],
+ "נציב־": [
+ {
+ "word_nikkud": "נְצִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3707-netziv",
+ "gender": "masculine"
+ }
+ ],
+ "נציבי־": [
+ {
+ "word_nikkud": "נְצִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3707-netziv",
+ "gender": "masculine"
+ }
+ ],
+ "נציגות": [
+ {
+ "word_nikkud": "נְצִיגוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4905-netzigut",
+ "gender": "feminine"
+ }
+ ],
+ "נציגויות": [
+ {
+ "word_nikkud": "נְצִיגוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4905-netzigut",
+ "gender": "feminine"
+ }
+ ],
+ "נציגות־": [
+ {
+ "word_nikkud": "נְצִיגוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4905-netzigut",
+ "gender": "feminine"
+ }
+ ],
+ "נציגויות־": [
+ {
+ "word_nikkud": "נְצִיגוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4905-netzigut",
+ "gender": "feminine"
+ }
+ ],
+ "נציג": [
+ {
+ "word_nikkud": "נָצִיג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4904-natzig",
+ "gender": "masculine"
+ }
+ ],
+ "נציגים": [
+ {
+ "word_nikkud": "נָצִיג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4904-natzig",
+ "gender": "masculine"
+ }
+ ],
+ "נציג־": [
+ {
+ "word_nikkud": "נָצִיג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4904-natzig",
+ "gender": "masculine"
+ }
+ ],
+ "נציגי־": [
+ {
+ "word_nikkud": "נָצִיג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4904-natzig",
+ "gender": "masculine"
+ }
+ ],
+ "ניצחון": [
+ {
+ "word_nikkud": "נִצָּחוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3581-nitzachon",
+ "gender": "masculine"
+ }
+ ],
+ "ניצחונות": [
+ {
+ "word_nikkud": "נִצָּחוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3581-nitzachon",
+ "gender": "masculine"
+ }
+ ],
+ "ניצחון־": [
+ {
+ "word_nikkud": "נִצָּחוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3581-nitzachon",
+ "gender": "masculine"
+ }
+ ],
+ "ניצחונות־": [
+ {
+ "word_nikkud": "נִצָּחוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3581-nitzachon",
+ "gender": "masculine"
+ }
+ ],
+ "הנצחה": [
+ {
+ "word_nikkud": "הַנְצָחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2890-hantzacha",
+ "gender": "feminine"
+ }
+ ],
+ "הנצחת־": [
+ {
+ "word_nikkud": "הַנְצָחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2890-hantzacha",
+ "gender": "feminine"
+ }
+ ],
+ "ניצוח": [
+ {
+ "word_nikkud": "נִצּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3402-nitzuach",
+ "gender": "masculine"
+ }
+ ],
+ "ניצוח־": [
+ {
+ "word_nikkud": "נִצּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3402-nitzuach",
+ "gender": "masculine"
+ }
+ ],
+ "מנצח": [
+ {
+ "word_nikkud": "מְנַצֵּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4877-menatzeach",
+ "gender": "masculine"
+ }
+ ],
+ "מנצחים": [
+ {
+ "word_nikkud": "מְנַצֵּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4877-menatzeach",
+ "gender": "masculine"
+ }
+ ],
+ "מנצח־": [
+ {
+ "word_nikkud": "מְנַצֵּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4877-menatzeach",
+ "gender": "masculine"
+ }
+ ],
+ "מנצחי־": [
+ {
+ "word_nikkud": "מְנַצֵּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4877-menatzeach",
+ "gender": "masculine"
+ }
+ ],
+ "נצח": [
+ {
+ "word_nikkud": "נֶצַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6374-netzach",
+ "gender": "masculine"
+ }
+ ],
+ "נצח־": [
+ {
+ "word_nikkud": "נֶצַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6374-netzach",
+ "gender": "masculine"
+ }
+ ],
+ "הצלה": [
+ {
+ "word_nikkud": "הֲצָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6541-hatzala",
+ "gender": "feminine"
+ }
+ ],
+ "הצלות": [
+ {
+ "word_nikkud": "הֲצָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6541-hatzala",
+ "gender": "feminine"
+ }
+ ],
+ "הצלת־": [
+ {
+ "word_nikkud": "הֲצָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6541-hatzala",
+ "gender": "feminine"
+ }
+ ],
+ "הצלות־": [
+ {
+ "word_nikkud": "הֲצָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6541-hatzala",
+ "gender": "feminine"
+ }
+ ],
+ "ניצול": [
+ {
+ "word_nikkud": "נִצּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2976-nitzul",
+ "gender": "masculine"
+ }
+ ],
+ "ניצול־": [
+ {
+ "word_nikkud": "נִצּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2976-nitzul",
+ "gender": "masculine"
+ }
+ ],
+ "נצלן": [
+ {
+ "word_nikkud": "נַצְלָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3439-natzlan",
+ "gender": "masculine"
+ }
+ ],
+ "נצלנים": [
+ {
+ "word_nikkud": "נַצְלָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3439-natzlan",
+ "gender": "masculine"
+ }
+ ],
+ "נצלן־": [
+ {
+ "word_nikkud": "נַצְלָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3439-natzlan",
+ "gender": "masculine"
+ }
+ ],
+ "נצלני־": [
+ {
+ "word_nikkud": "נַצְלָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3439-natzlan",
+ "gender": "masculine"
+ }
+ ],
+ "התנצלות": [
+ {
+ "word_nikkud": "הִתְנַצְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6327-hitnatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "התנצלויות": [
+ {
+ "word_nikkud": "הִתְנַצְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6327-hitnatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "התנצלות־": [
+ {
+ "word_nikkud": "הִתְנַצְּלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6327-hitnatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "התנצלויות־": [
+ {
+ "word_nikkud": "הִתְנַצְּלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6327-hitnatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "ניצולת": [
+ {
+ "word_nikkud": "נִצֹּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3266-nitzolet",
+ "gender": "feminine"
+ }
+ ],
+ "ניצולות": [
+ {
+ "word_nikkud": "נִצֹּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3266-nitzolet",
+ "gender": "feminine"
+ }
+ ],
+ "ניצולת־": [
+ {
+ "word_nikkud": "נִצֹּלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3266-nitzolet",
+ "gender": "feminine"
+ }
+ ],
+ "ניצולות־": [
+ {
+ "word_nikkud": "נִצֹּלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3266-nitzolet",
+ "gender": "feminine"
+ }
+ ],
+ "הינצלות": [
+ {
+ "word_nikkud": "הִנָּצְלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6647-hinatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "הינצלויות": [
+ {
+ "word_nikkud": "הִנָּצְלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6647-hinatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "הינצלות־": [
+ {
+ "word_nikkud": "הִנָּצְלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6647-hinatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "הינצלויות־": [
+ {
+ "word_nikkud": "הִנָּצְלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6647-hinatzlut",
+ "gender": "feminine"
+ }
+ ],
+ "נצנוץ": [
+ {
+ "word_nikkud": "נִצְנוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9115-nitznutz",
+ "gender": "masculine"
+ }
+ ],
+ "נצנוצים": [
+ {
+ "word_nikkud": "נִצְנוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9115-nitznutz",
+ "gender": "masculine"
+ }
+ ],
+ "נצנוץ־": [
+ {
+ "word_nikkud": "נִצְנוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9115-nitznutz",
+ "gender": "masculine"
+ }
+ ],
+ "נצנוצי־": [
+ {
+ "word_nikkud": "נִצְנוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9115-nitznutz",
+ "gender": "masculine"
+ }
+ ],
+ "ניצן": [
+ {
+ "word_nikkud": "נִצָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4226-nitzan",
+ "gender": "masculine"
+ }
+ ],
+ "ניצנים": [
+ {
+ "word_nikkud": "נִצָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4226-nitzan",
+ "gender": "masculine"
+ }
+ ],
+ "ניצן־": [
+ {
+ "word_nikkud": "נִצָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4226-nitzan",
+ "gender": "masculine"
+ }
+ ],
+ "ניצני־": [
+ {
+ "word_nikkud": "נִצָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4226-nitzan",
+ "gender": "masculine"
+ }
+ ],
+ "הנץ": [
+ {
+ "word_nikkud": "הָנֵץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4225-hanetz",
+ "gender": "masculine"
+ }
+ ],
+ "הנץ־": [
+ {
+ "word_nikkud": "הָנֵץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4225-hanetz",
+ "gender": "masculine"
+ }
+ ],
+ "ניצוץ": [
+ {
+ "word_nikkud": "נִיצוֹץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5114-nitzotz",
+ "gender": "masculine"
+ }
+ ],
+ "ניצוצות": [
+ {
+ "word_nikkud": "נִיצוֹץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5114-nitzotz",
+ "gender": "masculine"
+ }
+ ],
+ "ניצוץ־": [
+ {
+ "word_nikkud": "נִיצוֹץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5114-nitzotz",
+ "gender": "masculine"
+ }
+ ],
+ "ניצוצות־": [
+ {
+ "word_nikkud": "נִיצוֹץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5114-nitzotz",
+ "gender": "masculine"
+ }
+ ],
+ "התנצרות": [
+ {
+ "word_nikkud": "הִתְנַצְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3023-hitnatzrut",
+ "gender": "feminine"
+ }
+ ],
+ "התנצרות־": [
+ {
+ "word_nikkud": "הִתְנַצְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3023-hitnatzrut",
+ "gender": "feminine"
+ }
+ ],
+ "נצרות": [
+ {
+ "word_nikkud": "נַצְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3646-natzrut",
+ "gender": "feminine"
+ }
+ ],
+ "נצרות־": [
+ {
+ "word_nikkud": "נַצְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3646-natzrut",
+ "gender": "feminine"
+ }
+ ],
+ "נצר": [
+ {
+ "word_nikkud": "נֵצֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8637-netzer",
+ "gender": "masculine"
+ }
+ ],
+ "נצרים": [
+ {
+ "word_nikkud": "נֵצֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8637-netzer",
+ "gender": "masculine"
+ }
+ ],
+ "נצר־": [
+ {
+ "word_nikkud": "נֵצֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8637-netzer",
+ "gender": "masculine"
+ }
+ ],
+ "נצרי־": [
+ {
+ "word_nikkud": "נֵצֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8637-netzer",
+ "gender": "masculine"
+ }
+ ],
+ "נקבה": [
+ {
+ "word_nikkud": "נְקֵבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2841-nekeva",
+ "gender": "feminine"
+ }
+ ],
+ "נקבות": [
+ {
+ "word_nikkud": "נְקֵבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2841-nekeva",
+ "gender": "feminine"
+ }
+ ],
+ "נקבת־": [
+ {
+ "word_nikkud": "נְקֵבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2841-nekeva",
+ "gender": "feminine"
+ }
+ ],
+ "נקבות־": [
+ {
+ "word_nikkud": "נְקֵבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2841-nekeva",
+ "gender": "feminine"
+ }
+ ],
+ "מנקב": [
+ {
+ "word_nikkud": "מַנְקֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6667-mankev",
+ "gender": "masculine"
+ }
+ ],
+ "מנקבים": [
+ {
+ "word_nikkud": "מַנְקֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6667-mankev",
+ "gender": "masculine"
+ }
+ ],
+ "מנקב־": [
+ {
+ "word_nikkud": "מַנְקֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6667-mankev",
+ "gender": "masculine"
+ }
+ ],
+ "מנקבי־": [
+ {
+ "word_nikkud": "מַנְקֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6667-mankev",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוד": [
+ {
+ "word_nikkud": "נִקּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5367-nikud",
+ "gender": "masculine"
+ }
+ ],
+ "ניקודים": [
+ {
+ "word_nikkud": "נִקּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5367-nikud",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוד־": [
+ {
+ "word_nikkud": "נִקּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5367-nikud",
+ "gender": "masculine"
+ }
+ ],
+ "ניקודי־": [
+ {
+ "word_nikkud": "נִקּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5367-nikud",
+ "gender": "masculine"
+ }
+ ],
+ "נקודה": [
+ {
+ "word_nikkud": "נְקֻדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2866-nekuda",
+ "gender": "feminine"
+ }
+ ],
+ "נקודות": [
+ {
+ "word_nikkud": "נְקֻדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2866-nekuda",
+ "gender": "feminine"
+ }
+ ],
+ "נקודת־": [
+ {
+ "word_nikkud": "נְקֻדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2866-nekuda",
+ "gender": "feminine"
+ }
+ ],
+ "נקודות־": [
+ {
+ "word_nikkud": "נְקֻדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2866-nekuda",
+ "gender": "feminine"
+ }
+ ],
+ "ניקוז": [
+ {
+ "word_nikkud": "נִקּוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6538-nikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוזים": [
+ {
+ "word_nikkud": "נִקּוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6538-nikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוז־": [
+ {
+ "word_nikkud": "נִקּוּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6538-nikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוזי־": [
+ {
+ "word_nikkud": "נִקּוּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6538-nikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוי": [
+ {
+ "word_nikkud": "נִקּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2977-nikuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניקוי־": [
+ {
+ "word_nikkud": "נִקּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2977-nikuy",
+ "gender": "masculine"
+ }
+ ],
+ "ניקיון": [
+ {
+ "word_nikkud": "נִקָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3582-nikayon",
+ "gender": "masculine"
+ }
+ ],
+ "ניקיונות": [
+ {
+ "word_nikkud": "נִקָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3582-nikayon",
+ "gender": "masculine"
+ }
+ ],
+ "ניקיון־": [
+ {
+ "word_nikkud": "נִקָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3582-nikayon",
+ "gender": "masculine"
+ }
+ ],
+ "ניקיונות־": [
+ {
+ "word_nikkud": "נִקָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3582-nikayon",
+ "gender": "masculine"
+ }
+ ],
+ "מנקה": [
+ {
+ "word_nikkud": "מְנַקֶּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8692-menake",
+ "gender": "masculine"
+ }
+ ],
+ "מנקים": [
+ {
+ "word_nikkud": "מְנַקֶּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8692-menake",
+ "gender": "masculine"
+ }
+ ],
+ "מנקה־": [
+ {
+ "word_nikkud": "מְנַקֶּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8692-menake",
+ "gender": "masculine"
+ }
+ ],
+ "מנקי־": [
+ {
+ "word_nikkud": "מְנַקֶּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8692-menake",
+ "gender": "masculine"
+ }
+ ],
+ "מקל": [
+ {
+ "word_nikkud": "מַקֵּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5774-makel",
+ "gender": "masculine"
+ }
+ ],
+ "מקלות": [
+ {
+ "word_nikkud": "מַקֵּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5774-makel",
+ "gender": "masculine"
+ }
+ ],
+ "מקל־": [
+ {
+ "word_nikkud": "מַקֵּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5774-makel",
+ "gender": "masculine"
+ }
+ ],
+ "מקלות־": [
+ {
+ "word_nikkud": "מַקֵּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5774-makel",
+ "gender": "masculine"
+ }
+ ],
+ "נקמה": [
+ {
+ "word_nikkud": "נְקָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4670-nekama",
+ "gender": "feminine"
+ }
+ ],
+ "נקמות": [
+ {
+ "word_nikkud": "נְקָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4670-nekama",
+ "gender": "feminine"
+ }
+ ],
+ "נקמת־": [
+ {
+ "word_nikkud": "נְקָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4670-nekama",
+ "gender": "feminine"
+ }
+ ],
+ "נקמות־": [
+ {
+ "word_nikkud": "נְקָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4670-nekama",
+ "gender": "feminine"
+ }
+ ],
+ "נקניק": [
+ {
+ "word_nikkud": "נַקְנִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6360-naknik",
+ "gender": "masculine"
+ }
+ ],
+ "נקניקים": [
+ {
+ "word_nikkud": "נַקְנִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6360-naknik",
+ "gender": "masculine"
+ }
+ ],
+ "נקניק־": [
+ {
+ "word_nikkud": "נַקְנִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6360-naknik",
+ "gender": "masculine"
+ }
+ ],
+ "נקניקי־": [
+ {
+ "word_nikkud": "נַקְנִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6360-naknik",
+ "gender": "masculine"
+ }
+ ],
+ "נקניקייה": [
+ {
+ "word_nikkud": "נַקְנִיקִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8747-naknikiya",
+ "gender": "masculine"
+ }
+ ],
+ "נקניקיות": [
+ {
+ "word_nikkud": "נַקְנִיקִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8747-naknikiya",
+ "gender": "masculine"
+ }
+ ],
+ "נקניקיית־": [
+ {
+ "word_nikkud": "נַקְנִיקִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8747-naknikiya",
+ "gender": "masculine"
+ }
+ ],
+ "נקניקיות־": [
+ {
+ "word_nikkud": "נַקְנִיקִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8747-naknikiya",
+ "gender": "masculine"
+ }
+ ],
+ "מקף": [
+ {
+ "word_nikkud": "מַקָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3716-makaf",
+ "gender": "masculine"
+ }
+ ],
+ "מקפים": [
+ {
+ "word_nikkud": "מַקָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3716-makaf",
+ "gender": "masculine"
+ }
+ ],
+ "מקף־": [
+ {
+ "word_nikkud": "מַקָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3716-makaf",
+ "gender": "masculine"
+ }
+ ],
+ "מקפי־": [
+ {
+ "word_nikkud": "מַקָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3716-makaf",
+ "gender": "masculine"
+ }
+ ],
+ "היקף": [
+ {
+ "word_nikkud": "הֶקֵּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8178-hekef",
+ "gender": "masculine"
+ }
+ ],
+ "היקפים": [
+ {
+ "word_nikkud": "הֶקֵּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8178-hekef",
+ "gender": "masculine"
+ }
+ ],
+ "היקף־": [
+ {
+ "word_nikkud": "הֶקֵּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8178-hekef",
+ "gender": "masculine"
+ }
+ ],
+ "היקפי־": [
+ {
+ "word_nikkud": "הֶקֵּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8178-hekef",
+ "gender": "masculine"
+ }
+ ],
+ "נקיק": [
+ {
+ "word_nikkud": "נָקִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8479-nakik",
+ "gender": "masculine"
+ }
+ ],
+ "נקיקים": [
+ {
+ "word_nikkud": "נָקִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8479-nakik",
+ "gender": "masculine"
+ }
+ ],
+ "נקיק־": [
+ {
+ "word_nikkud": "נָקִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8479-nakik",
+ "gender": "masculine"
+ }
+ ],
+ "נקיקי־": [
+ {
+ "word_nikkud": "נָקִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8479-nakik",
+ "gender": "masculine"
+ }
+ ],
+ "נקר": [
+ {
+ "word_nikkud": "נַקָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3352-nakar",
+ "gender": "masculine"
+ }
+ ],
+ "נקרים": [
+ {
+ "word_nikkud": "נַקָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3352-nakar",
+ "gender": "masculine"
+ }
+ ],
+ "נקר־": [
+ {
+ "word_nikkud": "נַקָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3352-nakar",
+ "gender": "masculine"
+ }
+ ],
+ "נקרי־": [
+ {
+ "word_nikkud": "נַקָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3352-nakar",
+ "gender": "masculine"
+ }
+ ],
+ "התנקשות": [
+ {
+ "word_nikkud": "הִתְנַקְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8029-hitnakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התנקשויות": [
+ {
+ "word_nikkud": "הִתְנַקְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8029-hitnakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התנקשות־": [
+ {
+ "word_nikkud": "הִתְנַקְּשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8029-hitnakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התנקשויות־": [
+ {
+ "word_nikkud": "הִתְנַקְּשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8029-hitnakshut",
+ "gender": "feminine"
+ }
+ ],
+ "מקש": [
+ {
+ "word_nikkud": "מַקָּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3991-makash",
+ "gender": "masculine"
+ }
+ ],
+ "מקשים": [
+ {
+ "word_nikkud": "מַקָּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3991-makash",
+ "gender": "masculine"
+ }
+ ],
+ "מקש־": [
+ {
+ "word_nikkud": "מַקָּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3991-makash",
+ "gender": "masculine"
+ }
+ ],
+ "מקשי־": [
+ {
+ "word_nikkud": "מַקָּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3991-makash",
+ "gender": "masculine"
+ }
+ ],
+ "נרתיק": [
+ {
+ "word_nikkud": "נַרְתִּיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8049-nartik",
+ "gender": "masculine"
+ }
+ ],
+ "נרתיקים": [
+ {
+ "word_nikkud": "נַרְתִּיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8049-nartik",
+ "gender": "masculine"
+ }
+ ],
+ "נרתיק־": [
+ {
+ "word_nikkud": "נַרְתִּיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8049-nartik",
+ "gender": "masculine"
+ }
+ ],
+ "נרתיקי־": [
+ {
+ "word_nikkud": "נַרְתִּיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8049-nartik",
+ "gender": "masculine"
+ }
+ ],
+ "נישואין": [
+ {
+ "word_nikkud": "נִשּׂוּאִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7647-nisuin",
+ "gender": "masculine"
+ }
+ ],
+ "נישואים": [
+ {
+ "word_nikkud": "נִשּׂוּאִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7647-nisuin",
+ "gender": "masculine"
+ }
+ ],
+ "נישואי־": [
+ {
+ "word_nikkud": "נִשּׂוּאִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7647-nisuin",
+ "gender": "masculine"
+ }
+ ],
+ "נשיא": [
+ {
+ "word_nikkud": "נָשִׂיא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5547-nasi",
+ "gender": "masculine"
+ }
+ ],
+ "נשיאים": [
+ {
+ "word_nikkud": "נָשִׂיא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5547-nasi",
+ "gender": "masculine"
+ }
+ ],
+ "נשיא־": [
+ {
+ "word_nikkud": "נָשִׂיא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5547-nasi",
+ "gender": "masculine"
+ }
+ ],
+ "נשיאי־": [
+ {
+ "word_nikkud": "נָשִׂיא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5547-nasi",
+ "gender": "masculine"
+ }
+ ],
+ "שיא": [
+ {
+ "word_nikkud": "שִׂיא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4415-si",
+ "gender": "masculine"
+ }
+ ],
+ "שיאים": [
+ {
+ "word_nikkud": "שִׂיא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4415-si",
+ "gender": "masculine"
+ }
+ ],
+ "שיא־": [
+ {
+ "word_nikkud": "שִׂיא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4415-si",
+ "gender": "masculine"
+ }
+ ],
+ "שיאי־": [
+ {
+ "word_nikkud": "שִׂיא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4415-si",
+ "gender": "masculine"
+ }
+ ],
+ "תשואה": [
+ {
+ "word_nikkud": "תְּשׂוּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4494-tsua",
+ "gender": ""
+ }
+ ],
+ "תשואות": [
+ {
+ "word_nikkud": "תְּשׂוּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4494-tsua",
+ "gender": ""
+ }
+ ],
+ "תשואת־": [
+ {
+ "word_nikkud": "תְּשׂוּאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4494-tsua",
+ "gender": ""
+ }
+ ],
+ "תשואות־": [
+ {
+ "word_nikkud": "תְּשׂוּאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4494-tsua",
+ "gender": ""
+ }
+ ],
+ "נושא": [
+ {
+ "word_nikkud": "נוֹשֵׂא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5163-nose",
+ "gender": "masculine"
+ }
+ ],
+ "נושאים": [
+ {
+ "word_nikkud": "נוֹשֵׂא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5163-nose",
+ "gender": "masculine"
+ }
+ ],
+ "נושא־": [
+ {
+ "word_nikkud": "נוֹשֵׂא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5163-nose",
+ "gender": "masculine"
+ }
+ ],
+ "נושאי־": [
+ {
+ "word_nikkud": "נוֹשֵׂא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5163-nose",
+ "gender": "masculine"
+ }
+ ],
+ "משוואה": [
+ {
+ "word_nikkud": "מִשְׁוָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3949-mishvaa",
+ "gender": "feminine"
+ }
+ ],
+ "משוואות": [
+ {
+ "word_nikkud": "מִשְׁוָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3949-mishvaa",
+ "gender": "feminine"
+ }
+ ],
+ "משוואת־": [
+ {
+ "word_nikkud": "מִשְׁוָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3949-mishvaa",
+ "gender": "feminine"
+ }
+ ],
+ "משוואות־": [
+ {
+ "word_nikkud": "מִשְׁוָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3949-mishvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הישג": [
+ {
+ "word_nikkud": "הֶשֵּׂג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4374-heseg",
+ "gender": "masculine"
+ }
+ ],
+ "הישגים": [
+ {
+ "word_nikkud": "הֶשֵּׂג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4374-heseg",
+ "gender": "masculine"
+ }
+ ],
+ "הישג־": [
+ {
+ "word_nikkud": "הֶשֵּׂג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4374-heseg",
+ "gender": "masculine"
+ }
+ ],
+ "הישגי־": [
+ {
+ "word_nikkud": "הֶשֵּׂג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4374-heseg",
+ "gender": "masculine"
+ }
+ ],
+ "מושג": [
+ {
+ "word_nikkud": "מֻשָּׂג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4125-musag",
+ "gender": "masculine"
+ }
+ ],
+ "מושגים": [
+ {
+ "word_nikkud": "מֻשָּׂג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4125-musag",
+ "gender": "masculine"
+ }
+ ],
+ "מושג־": [
+ {
+ "word_nikkud": "מֻשָּׂג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4125-musag",
+ "gender": "masculine"
+ }
+ ],
+ "מושגי־": [
+ {
+ "word_nikkud": "מֻשָּׂג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4125-musag",
+ "gender": "masculine"
+ }
+ ],
+ "נשיכה": [
+ {
+ "word_nikkud": "נְשִׁיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9055-neshicha",
+ "gender": "feminine"
+ }
+ ],
+ "נשיכות": [
+ {
+ "word_nikkud": "נְשִׁיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9055-neshicha",
+ "gender": "feminine"
+ }
+ ],
+ "נשיכת־": [
+ {
+ "word_nikkud": "נְשִׁיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9055-neshicha",
+ "gender": "feminine"
+ }
+ ],
+ "נשיכות־": [
+ {
+ "word_nikkud": "נְשִׁיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9055-neshicha",
+ "gender": "feminine"
+ }
+ ],
+ "נשמה": [
+ {
+ "word_nikkud": "נְשָׁמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2854-neshama",
+ "gender": "feminine"
+ }
+ ],
+ "נשמות": [
+ {
+ "word_nikkud": "נְשָׁמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2854-neshama",
+ "gender": "feminine"
+ }
+ ],
+ "נשמת־": [
+ {
+ "word_nikkud": "נְשָׁמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2854-neshama",
+ "gender": "feminine"
+ }
+ ],
+ "נשמות־": [
+ {
+ "word_nikkud": "נְשָׁמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2854-neshama",
+ "gender": "feminine"
+ }
+ ],
+ "הנשמה": [
+ {
+ "word_nikkud": "הַנְשָׁמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2892-hanshama",
+ "gender": "feminine"
+ }
+ ],
+ "הנשמת־": [
+ {
+ "word_nikkud": "הַנְשָׁמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2892-hanshama",
+ "gender": "feminine"
+ }
+ ],
+ "נשימה": [
+ {
+ "word_nikkud": "נְשִׁימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7283-neshima",
+ "gender": "feminine"
+ }
+ ],
+ "נשימות": [
+ {
+ "word_nikkud": "נְשִׁימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7283-neshima",
+ "gender": "feminine"
+ }
+ ],
+ "נשימת־": [
+ {
+ "word_nikkud": "נְשִׁימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7283-neshima",
+ "gender": "feminine"
+ }
+ ],
+ "נשימות־": [
+ {
+ "word_nikkud": "נְשִׁימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7283-neshima",
+ "gender": "feminine"
+ }
+ ],
+ "נשף": [
+ {
+ "word_nikkud": "נֶשֶׁף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5427-neshef",
+ "gender": "masculine"
+ }
+ ],
+ "נשפים": [
+ {
+ "word_nikkud": "נֶשֶׁף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5427-neshef",
+ "gender": "masculine"
+ }
+ ],
+ "נשף־": [
+ {
+ "word_nikkud": "נֶשֶׁף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5427-neshef",
+ "gender": "masculine"
+ }
+ ],
+ "נשפי־": [
+ {
+ "word_nikkud": "נֶשֶׁף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5427-neshef",
+ "gender": "masculine"
+ }
+ ],
+ "ינשוף": [
+ {
+ "word_nikkud": "יַנְשׁוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5172-yanshuf",
+ "gender": "masculine"
+ }
+ ],
+ "ינשופים": [
+ {
+ "word_nikkud": "יַנְשׁוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5172-yanshuf",
+ "gender": "masculine"
+ }
+ ],
+ "ינשוף־": [
+ {
+ "word_nikkud": "יַנְשׁוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5172-yanshuf",
+ "gender": "masculine"
+ }
+ ],
+ "ינשופי־": [
+ {
+ "word_nikkud": "יַנְשׁוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5172-yanshuf",
+ "gender": "masculine"
+ }
+ ],
+ "משיק": [
+ {
+ "word_nikkud": "מַשִּׁיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5845-mashik",
+ "gender": "masculine"
+ }
+ ],
+ "משיקים": [
+ {
+ "word_nikkud": "מַשִּׁיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5845-mashik",
+ "gender": "masculine"
+ }
+ ],
+ "משיק־": [
+ {
+ "word_nikkud": "מַשִּׁיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5845-mashik",
+ "gender": "masculine"
+ }
+ ],
+ "משיקי־": [
+ {
+ "word_nikkud": "מַשִּׁיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5845-mashik",
+ "gender": "masculine"
+ }
+ ],
+ "נשיקה": [
+ {
+ "word_nikkud": "נְשִׁיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2829-neshika",
+ "gender": "feminine"
+ }
+ ],
+ "נשיקות": [
+ {
+ "word_nikkud": "נְשִׁיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2829-neshika",
+ "gender": "feminine"
+ }
+ ],
+ "נשיקת־": [
+ {
+ "word_nikkud": "נְשִׁיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2829-neshika",
+ "gender": "feminine"
+ }
+ ],
+ "נשיקות־": [
+ {
+ "word_nikkud": "נְשִׁיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2829-neshika",
+ "gender": "feminine"
+ }
+ ],
+ "נשק": [
+ {
+ "word_nikkud": "נֵשֶׁק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2830-neshek",
+ "gender": "masculine"
+ }
+ ],
+ "נשקים": [
+ {
+ "word_nikkud": "נֵשֶׁק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2830-neshek",
+ "gender": "masculine"
+ }
+ ],
+ "נשק־": [
+ {
+ "word_nikkud": "נֵשֶׁק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2830-neshek",
+ "gender": "masculine"
+ }
+ ],
+ "נשקי־": [
+ {
+ "word_nikkud": "נֵשֶׁק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2830-neshek",
+ "gender": "masculine"
+ }
+ ],
+ "השקה": [
+ {
+ "word_nikkud": "הַשָּׁקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6507-hashaka",
+ "gender": "feminine"
+ }
+ ],
+ "השקות": [
+ {
+ "word_nikkud": "הַשָּׁקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6507-hashaka",
+ "gender": "feminine"
+ }
+ ],
+ "השקת־": [
+ {
+ "word_nikkud": "הַשָּׁקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6507-hashaka",
+ "gender": "feminine"
+ }
+ ],
+ "השקות־": [
+ {
+ "word_nikkud": "הַשָּׁקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6507-hashaka",
+ "gender": "feminine"
+ }
+ ],
+ "נשר": [
+ {
+ "word_nikkud": "נֶשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4850-nesher",
+ "gender": "masculine"
+ }
+ ],
+ "נשרים": [
+ {
+ "word_nikkud": "נֶשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4850-nesher",
+ "gender": "masculine"
+ }
+ ],
+ "נשר־": [
+ {
+ "word_nikkud": "נֶשֶׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4850-nesher",
+ "gender": "masculine"
+ }
+ ],
+ "נשרי־": [
+ {
+ "word_nikkud": "נֶשֶׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4850-nesher",
+ "gender": "masculine"
+ }
+ ],
+ "נשירה": [
+ {
+ "word_nikkud": "נְשִׁירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9285-neshira",
+ "gender": "feminine"
+ }
+ ],
+ "נשירת־": [
+ {
+ "word_nikkud": "נְשִׁירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9285-neshira",
+ "gender": "feminine"
+ }
+ ],
+ "מנשר": [
+ {
+ "word_nikkud": "מִנְשָׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6474-minshar",
+ "gender": "masculine"
+ }
+ ],
+ "מנשרים": [
+ {
+ "word_nikkud": "מִנְשָׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6474-minshar",
+ "gender": "masculine"
+ }
+ ],
+ "מנשר־": [
+ {
+ "word_nikkud": "מִנְשָׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6474-minshar",
+ "gender": "masculine"
+ }
+ ],
+ "מנשרי־": [
+ {
+ "word_nikkud": "מִנְשָׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6474-minshar",
+ "gender": "masculine"
+ }
+ ],
+ "נתיב": [
+ {
+ "word_nikkud": "נָתִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3983-nativ",
+ "gender": "masculine"
+ }
+ ],
+ "נתיבים": [
+ {
+ "word_nikkud": "נָתִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3983-nativ",
+ "gender": "masculine"
+ }
+ ],
+ "נתיב־": [
+ {
+ "word_nikkud": "נָתִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3983-nativ",
+ "gender": "masculine"
+ }
+ ],
+ "נתיבי־": [
+ {
+ "word_nikkud": "נָתִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3983-nativ",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוח": [
+ {
+ "word_nikkud": "נִתּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3597-nituach",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוחים": [
+ {
+ "word_nikkud": "נִתּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3597-nituach",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוח־": [
+ {
+ "word_nikkud": "נִתּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3597-nituach",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוחי־": [
+ {
+ "word_nikkud": "נִתּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3597-nituach",
+ "gender": "masculine"
+ }
+ ],
+ "נתח": [
+ {
+ "word_nikkud": "נֶתַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8155-netach",
+ "gender": "masculine"
+ }
+ ],
+ "נתחים": [
+ {
+ "word_nikkud": "נֶתַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8155-netach",
+ "gender": "masculine"
+ }
+ ],
+ "נתח־": [
+ {
+ "word_nikkud": "נֶתַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8155-netach",
+ "gender": "masculine"
+ }
+ ],
+ "נתחי־": [
+ {
+ "word_nikkud": "נֶתַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8155-netach",
+ "gender": "masculine"
+ }
+ ],
+ "מתכת": [
+ {
+ "word_nikkud": "מַתֶּכֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5755-matechet",
+ "gender": "feminine"
+ }
+ ],
+ "מתכות": [
+ {
+ "word_nikkud": "מַתֶּכֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5755-matechet",
+ "gender": "feminine"
+ }
+ ],
+ "מתכת־": [
+ {
+ "word_nikkud": "מַתֶּכֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5755-matechet",
+ "gender": "feminine"
+ }
+ ],
+ "מתכות־": [
+ {
+ "word_nikkud": "מַתֶּכֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5755-matechet",
+ "gender": "feminine"
+ }
+ ],
+ "נתונים": [
+ {
+ "word_nikkud": "נְתוּנִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4037-netunim",
+ "gender": "masculine"
+ }
+ ],
+ "נתוני־": [
+ {
+ "word_nikkud": "נְתוּנִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4037-netunim",
+ "gender": "masculine"
+ }
+ ],
+ "מתנה": [
+ {
+ "word_nikkud": "מַתָּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4301-matana",
+ "gender": "feminine"
+ }
+ ],
+ "מתנות": [
+ {
+ "word_nikkud": "מַתָּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4301-matana",
+ "gender": "feminine"
+ }
+ ],
+ "מתנת־": [
+ {
+ "word_nikkud": "מַתָּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4301-matana",
+ "gender": "feminine"
+ }
+ ],
+ "מתנות־": [
+ {
+ "word_nikkud": "מַתָּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4301-matana",
+ "gender": "feminine"
+ }
+ ],
+ "התנתקות": [
+ {
+ "word_nikkud": "הִתְנַתְּקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7723-hitnatkut",
+ "gender": "feminine"
+ }
+ ],
+ "התנתקויות": [
+ {
+ "word_nikkud": "הִתְנַתְּקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7723-hitnatkut",
+ "gender": "feminine"
+ }
+ ],
+ "התנתקות־": [
+ {
+ "word_nikkud": "הִתְנַתְּקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7723-hitnatkut",
+ "gender": "feminine"
+ }
+ ],
+ "התנתקויות־": [
+ {
+ "word_nikkud": "הִתְנַתְּקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7723-hitnatkut",
+ "gender": "feminine"
+ }
+ ],
+ "הינתקות": [
+ {
+ "word_nikkud": "הִנָּתְקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2869-hinatkut",
+ "gender": "feminine"
+ }
+ ],
+ "הינתקות־": [
+ {
+ "word_nikkud": "הִנָּתְקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2869-hinatkut",
+ "gender": "feminine"
+ }
+ ],
+ "ניתוק": [
+ {
+ "word_nikkud": "נִתּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6452-nituk",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוקים": [
+ {
+ "word_nikkud": "נִתּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6452-nituk",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוק־": [
+ {
+ "word_nikkud": "נִתּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6452-nituk",
+ "gender": "masculine"
+ }
+ ],
+ "ניתוקי־": [
+ {
+ "word_nikkud": "נִתּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6452-nituk",
+ "gender": "masculine"
+ }
+ ],
+ "נתק": [
+ {
+ "word_nikkud": "נֶתֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6477-netek",
+ "gender": "masculine"
+ }
+ ],
+ "נתקים": [
+ {
+ "word_nikkud": "נֶתֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6477-netek",
+ "gender": "masculine"
+ }
+ ],
+ "נתק־": [
+ {
+ "word_nikkud": "נֶתֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6477-netek",
+ "gender": "masculine"
+ }
+ ],
+ "נתקי־": [
+ {
+ "word_nikkud": "נֶתֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6477-netek",
+ "gender": "masculine"
+ }
+ ],
+ "נתר": [
+ {
+ "word_nikkud": "נֶתֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8983-neter",
+ "gender": "masculine"
+ }
+ ],
+ "נתר־": [
+ {
+ "word_nikkud": "נֶתֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8983-neter",
+ "gender": "masculine"
+ }
+ ],
+ "נתרן": [
+ {
+ "word_nikkud": "נַתְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8984-natran",
+ "gender": "masculine"
+ }
+ ],
+ "נתרן־": [
+ {
+ "word_nikkud": "נַתְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8984-natran",
+ "gender": "masculine"
+ }
+ ],
+ "התשה": [
+ {
+ "word_nikkud": "הַתָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2409-hatasha",
+ "gender": "feminine"
+ }
+ ],
+ "התשות": [
+ {
+ "word_nikkud": "הַתָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2409-hatasha",
+ "gender": "feminine"
+ }
+ ],
+ "התשת־": [
+ {
+ "word_nikkud": "הַתָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2409-hatasha",
+ "gender": "feminine"
+ }
+ ],
+ "התשות־": [
+ {
+ "word_nikkud": "הַתָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2409-hatasha",
+ "gender": "feminine"
+ }
+ ],
+ "סאה": [
+ {
+ "word_nikkud": "סְאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8925-sea",
+ "gender": "feminine"
+ }
+ ],
+ "סאות": [
+ {
+ "word_nikkud": "סְאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8925-sea",
+ "gender": "feminine"
+ }
+ ],
+ "סאת־": [
+ {
+ "word_nikkud": "סְאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8925-sea",
+ "gender": "feminine"
+ }
+ ],
+ "סאות־": [
+ {
+ "word_nikkud": "סְאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8925-sea",
+ "gender": "feminine"
+ }
+ ],
+ "סבא": [
+ {
+ "word_nikkud": "סַבָּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5720-saba",
+ "gender": ""
+ }
+ ],
+ "סבאים": [
+ {
+ "word_nikkud": "סַבָּא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5720-saba",
+ "gender": ""
+ }
+ ],
+ "סיבה": [
+ {
+ "word_nikkud": "סִבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4268-siba",
+ "gender": "feminine"
+ }
+ ],
+ "סיבות": [
+ {
+ "word_nikkud": "סִבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4268-siba",
+ "gender": "feminine"
+ }
+ ],
+ "סיבת־": [
+ {
+ "word_nikkud": "סִבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4268-siba",
+ "gender": "feminine"
+ }
+ ],
+ "סיבות־": [
+ {
+ "word_nikkud": "סִבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4268-siba",
+ "gender": "feminine"
+ }
+ ],
+ "מסיבה": [
+ {
+ "word_nikkud": "מְסִבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3792-mesiba",
+ "gender": "feminine"
+ }
+ ],
+ "מסיבות": [
+ {
+ "word_nikkud": "מְסִבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3792-mesiba",
+ "gender": "feminine"
+ }
+ ],
+ "מסיבת־": [
+ {
+ "word_nikkud": "מְסִבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3792-mesiba",
+ "gender": "feminine"
+ }
+ ],
+ "מסיבות־": [
+ {
+ "word_nikkud": "מְסִבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3792-mesiba",
+ "gender": "feminine"
+ }
+ ],
+ "סבב": [
+ {
+ "word_nikkud": "סֵבֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2831-sevev",
+ "gender": "masculine"
+ }
+ ],
+ "סבבים": [
+ {
+ "word_nikkud": "סֵבֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2831-sevev",
+ "gender": "masculine"
+ }
+ ],
+ "סבב־": [
+ {
+ "word_nikkud": "סֵבֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2831-sevev",
+ "gender": "masculine"
+ }
+ ],
+ "סבבי־": [
+ {
+ "word_nikkud": "סֵבֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2831-sevev",
+ "gender": "masculine"
+ }
+ ],
+ "סביבה": [
+ {
+ "word_nikkud": "סְבִיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2832-sviva",
+ "gender": "feminine"
+ }
+ ],
+ "סביבות": [
+ {
+ "word_nikkud": "סְבִיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2832-sviva",
+ "gender": "feminine"
+ }
+ ],
+ "סביבת־": [
+ {
+ "word_nikkud": "סְבִיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2832-sviva",
+ "gender": "feminine"
+ }
+ ],
+ "סביבות־": [
+ {
+ "word_nikkud": "סְבִיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2832-sviva",
+ "gender": "feminine"
+ }
+ ],
+ "סביבון": [
+ {
+ "word_nikkud": "סְבִיבוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6911-svivon",
+ "gender": "masculine"
+ }
+ ],
+ "סביבונים": [
+ {
+ "word_nikkud": "סְבִיבוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6911-svivon",
+ "gender": "masculine"
+ }
+ ],
+ "סביבון־": [
+ {
+ "word_nikkud": "סְבִיבוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6911-svivon",
+ "gender": "masculine"
+ }
+ ],
+ "סביבוני־": [
+ {
+ "word_nikkud": "סְבִיבוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6911-svivon",
+ "gender": "masculine"
+ }
+ ],
+ "נסיבה": [
+ {
+ "word_nikkud": "נְסִבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7033-nesiba",
+ "gender": "feminine"
+ }
+ ],
+ "נסיבות": [
+ {
+ "word_nikkud": "נְסִבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7033-nesiba",
+ "gender": "feminine"
+ }
+ ],
+ "נסיבת־": [
+ {
+ "word_nikkud": "נְסִבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7033-nesiba",
+ "gender": "feminine"
+ }
+ ],
+ "נסיבות־": [
+ {
+ "word_nikkud": "נְסִבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7033-nesiba",
+ "gender": "feminine"
+ }
+ ],
+ "הסתובבות": [
+ {
+ "word_nikkud": "הִסְתּוֹבְבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9006-histovevut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתובבות־": [
+ {
+ "word_nikkud": "הִסְתּוֹבְבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9006-histovevut",
+ "gender": "feminine"
+ }
+ ],
+ "סבון": [
+ {
+ "word_nikkud": "סַבּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4508-sabon",
+ "gender": ""
+ }
+ ],
+ "תסבוכת": [
+ {
+ "word_nikkud": "תִּסְבֹּכֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3253-tisbochet",
+ "gender": "feminine"
+ }
+ ],
+ "תסבוכות": [
+ {
+ "word_nikkud": "תִּסְבֹּכֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3253-tisbochet",
+ "gender": "feminine"
+ }
+ ],
+ "תסבוכת־": [
+ {
+ "word_nikkud": "תִּסְבֹּכֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3253-tisbochet",
+ "gender": "feminine"
+ }
+ ],
+ "תסבוכות־": [
+ {
+ "word_nikkud": "תִּסְבֹּכֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3253-tisbochet",
+ "gender": "feminine"
+ }
+ ],
+ "תסביך": [
+ {
+ "word_nikkud": "תַּסְבִּיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8868-tasbich",
+ "gender": "masculine"
+ }
+ ],
+ "תסביכים": [
+ {
+ "word_nikkud": "תַּסְבִּיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8868-tasbich",
+ "gender": "masculine"
+ }
+ ],
+ "תסביך־": [
+ {
+ "word_nikkud": "תַּסְבִּיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8868-tasbich",
+ "gender": "masculine"
+ }
+ ],
+ "תסביכי־": [
+ {
+ "word_nikkud": "תַּסְבִּיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8868-tasbich",
+ "gender": "masculine"
+ }
+ ],
+ "סבלנות": [
+ {
+ "word_nikkud": "סַבְלָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4457-savlanut",
+ "gender": "feminine"
+ }
+ ],
+ "סבלנויות": [
+ {
+ "word_nikkud": "סַבְלָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4457-savlanut",
+ "gender": "feminine"
+ }
+ ],
+ "סבלנות־": [
+ {
+ "word_nikkud": "סַבְלָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4457-savlanut",
+ "gender": "feminine"
+ }
+ ],
+ "סבלנויות־": [
+ {
+ "word_nikkud": "סַבְלָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4457-savlanut",
+ "gender": "feminine"
+ }
+ ],
+ "סבל": [
+ {
+ "word_nikkud": "סַבָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3353-sabal",
+ "gender": "masculine"
+ }
+ ],
+ "סבלים": [
+ {
+ "word_nikkud": "סַבָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3353-sabal",
+ "gender": "masculine"
+ }
+ ],
+ "סבל־": [
+ {
+ "word_nikkud": "סַבָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3353-sabal",
+ "gender": "masculine"
+ }
+ ],
+ "סבלי־": [
+ {
+ "word_nikkud": "סַבָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3353-sabal",
+ "gender": "masculine"
+ }
+ ],
+ "סבירות": [
+ {
+ "word_nikkud": "סְבִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8080-svirut",
+ "gender": "feminine"
+ }
+ ],
+ "סבירויות": [
+ {
+ "word_nikkud": "סְבִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8080-svirut",
+ "gender": "feminine"
+ }
+ ],
+ "סבירות־": [
+ {
+ "word_nikkud": "סְבִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8080-svirut",
+ "gender": "feminine"
+ }
+ ],
+ "סבירויות־": [
+ {
+ "word_nikkud": "סְבִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8080-svirut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתברות": [
+ {
+ "word_nikkud": "הִסְתַּבְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4626-histabrut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתברויות": [
+ {
+ "word_nikkud": "הִסְתַּבְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4626-histabrut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתברות־": [
+ {
+ "word_nikkud": "הִסְתַּבְּרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4626-histabrut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתברויות־": [
+ {
+ "word_nikkud": "הִסְתַּבְּרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4626-histabrut",
+ "gender": "feminine"
+ }
+ ],
+ "סברה": [
+ {
+ "word_nikkud": "סְבָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2855-svara",
+ "gender": "feminine"
+ }
+ ],
+ "סברא": [
+ {
+ "word_nikkud": "סְבָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2855-svara",
+ "gender": "feminine"
+ }
+ ],
+ "סברות": [
+ {
+ "word_nikkud": "סְבָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2855-svara",
+ "gender": "feminine"
+ }
+ ],
+ "סברת־": [
+ {
+ "word_nikkud": "סְבָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2855-svara",
+ "gender": "feminine"
+ }
+ ],
+ "סברות־": [
+ {
+ "word_nikkud": "סְבָרָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "2855-svara",
+ "gender": "feminine"
+ }
+ ],
+ "הסבר": [
+ {
+ "word_nikkud": "הֶסְבֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2934-hesber",
+ "gender": "masculine"
+ }
+ ],
+ "הסברים": [
+ {
+ "word_nikkud": "הֶסְבֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2934-hesber",
+ "gender": "masculine"
+ }
+ ],
+ "הסבר־": [
+ {
+ "word_nikkud": "הֶסְבֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2934-hesber",
+ "gender": "masculine"
+ }
+ ],
+ "הסברי־": [
+ {
+ "word_nikkud": "הֶסְבֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2934-hesber",
+ "gender": "masculine"
+ }
+ ],
+ "הסברה": [
+ {
+ "word_nikkud": "הַסְבָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2935-hasbara",
+ "gender": "feminine"
+ }
+ ],
+ "הסברת־": [
+ {
+ "word_nikkud": "הַסְבָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2935-hasbara",
+ "gender": "feminine"
+ }
+ ],
+ "סבתא": [
+ {
+ "word_nikkud": "סָבְתָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5721-savta",
+ "gender": "feminine"
+ }
+ ],
+ "סבתות": [
+ {
+ "word_nikkud": "סָבְתָא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5721-savta",
+ "gender": "feminine"
+ }
+ ],
+ "מסגד": [
+ {
+ "word_nikkud": "מִסְגָּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3543-misgad",
+ "gender": "masculine"
+ }
+ ],
+ "מסגדים": [
+ {
+ "word_nikkud": "מִסְגָּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3543-misgad",
+ "gender": "masculine"
+ }
+ ],
+ "מסגד־": [
+ {
+ "word_nikkud": "מִסְגָּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3543-misgad",
+ "gender": "masculine"
+ }
+ ],
+ "מסגדי־": [
+ {
+ "word_nikkud": "מִסְגָּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3543-misgad",
+ "gender": "masculine"
+ }
+ ],
+ "הסתגלות": [
+ {
+ "word_nikkud": "הִסְתַּגְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5265-histaglut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתגלויות": [
+ {
+ "word_nikkud": "הִסְתַּגְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5265-histaglut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתגלות־": [
+ {
+ "word_nikkud": "הִסְתַּגְּלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5265-histaglut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתגלויות־": [
+ {
+ "word_nikkud": "הִסְתַּגְּלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5265-histaglut",
+ "gender": "feminine"
+ }
+ ],
+ "סגולה": [
+ {
+ "word_nikkud": "סְגֻלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3713-sgula",
+ "gender": "feminine"
+ }
+ ],
+ "סגולות": [
+ {
+ "word_nikkud": "סְגֻלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3713-sgula",
+ "gender": "feminine"
+ }
+ ],
+ "סגולת־": [
+ {
+ "word_nikkud": "סְגֻלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3713-sgula",
+ "gender": "feminine"
+ }
+ ],
+ "סגולות־": [
+ {
+ "word_nikkud": "סְגֻלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3713-sgula",
+ "gender": "feminine"
+ }
+ ],
+ "סגן": [
+ {
+ "word_nikkud": "סְגָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6368-sgan",
+ "gender": "masculine"
+ }
+ ],
+ "סגנים": [
+ {
+ "word_nikkud": "סְגָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6368-sgan",
+ "gender": "masculine"
+ }
+ ],
+ "סגן־": [
+ {
+ "word_nikkud": "סְגָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6368-sgan",
+ "gender": "masculine"
+ }
+ ],
+ "סגני־": [
+ {
+ "word_nikkud": "סְגָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6368-sgan",
+ "gender": "masculine"
+ }
+ ],
+ "סגנון": [
+ {
+ "word_nikkud": "סִגְנוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4550-signun",
+ "gender": "masculine"
+ }
+ ],
+ "סגנונים": [
+ {
+ "word_nikkud": "סִגְנוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4550-signun",
+ "gender": "masculine"
+ }
+ ],
+ "סגנון־": [
+ {
+ "word_nikkud": "סִגְנוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4550-signun",
+ "gender": "masculine"
+ }
+ ],
+ "סגנוני־": [
+ {
+ "word_nikkud": "סִגְנוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4550-signun",
+ "gender": "masculine"
+ }
+ ],
+ "סגסוגת": [
+ {
+ "word_nikkud": "סַגְסֹגֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6587-sagsoget",
+ "gender": "feminine"
+ }
+ ],
+ "סגסוגות": [
+ {
+ "word_nikkud": "סַגְסֹגֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6587-sagsoget",
+ "gender": "feminine"
+ }
+ ],
+ "סגסוגת־": [
+ {
+ "word_nikkud": "סַגְסֹגֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6587-sagsoget",
+ "gender": "feminine"
+ }
+ ],
+ "סגסוגות־": [
+ {
+ "word_nikkud": "סַגְסֹגֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6587-sagsoget",
+ "gender": "feminine"
+ }
+ ],
+ "הסגרה": [
+ {
+ "word_nikkud": "הַסְגָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5747-hasgara",
+ "gender": "feminine"
+ }
+ ],
+ "הסגרות": [
+ {
+ "word_nikkud": "הַסְגָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5747-hasgara",
+ "gender": "feminine"
+ }
+ ],
+ "הסגרת־": [
+ {
+ "word_nikkud": "הַסְגָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5747-hasgara",
+ "gender": "feminine"
+ }
+ ],
+ "הסגרות־": [
+ {
+ "word_nikkud": "הַסְגָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5747-hasgara",
+ "gender": "feminine"
+ }
+ ],
+ "סגירה": [
+ {
+ "word_nikkud": "סְגִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2833-sgira",
+ "gender": "feminine"
+ }
+ ],
+ "סגירות": [
+ {
+ "word_nikkud": "סְגִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2833-sgira",
+ "gender": "feminine"
+ }
+ ],
+ "סגירת־": [
+ {
+ "word_nikkud": "סְגִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2833-sgira",
+ "gender": "feminine"
+ }
+ ],
+ "סגירות־": [
+ {
+ "word_nikkud": "סְגִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2833-sgira",
+ "gender": "feminine"
+ }
+ ],
+ "מסגרת": [
+ {
+ "word_nikkud": "מִסְגֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3272-misgeret",
+ "gender": "feminine"
+ }
+ ],
+ "מסגרות": [
+ {
+ "word_nikkud": "מִסְגֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3272-misgeret",
+ "gender": "feminine"
+ }
+ ],
+ "מסגרת־": [
+ {
+ "word_nikkud": "מִסְגֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3272-misgeret",
+ "gender": "feminine"
+ }
+ ],
+ "מסגרות־": [
+ {
+ "word_nikkud": "מִסְגֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3272-misgeret",
+ "gender": "feminine"
+ }
+ ],
+ "מסגר": [
+ {
+ "word_nikkud": "מַסְגֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3508-masger",
+ "gender": "masculine"
+ }
+ ],
+ "מסגרים": [
+ {
+ "word_nikkud": "מַסְגֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3508-masger",
+ "gender": "masculine"
+ }
+ ],
+ "מסגר־": [
+ {
+ "word_nikkud": "מַסְגֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3508-masger",
+ "gender": "masculine"
+ }
+ ],
+ "מסגרי־": [
+ {
+ "word_nikkud": "מַסְגֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3508-masger",
+ "gender": "masculine"
+ }
+ ],
+ "הסגר": [
+ {
+ "word_nikkud": "הֶסְגֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6483-hesger",
+ "gender": "masculine"
+ }
+ ],
+ "הסגרים": [
+ {
+ "word_nikkud": "הֶסְגֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6483-hesger",
+ "gender": "masculine"
+ }
+ ],
+ "הסגר־": [
+ {
+ "word_nikkud": "הֶסְגֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6483-hesger",
+ "gender": "masculine"
+ }
+ ],
+ "הסגרי־": [
+ {
+ "word_nikkud": "הֶסְגֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6483-hesger",
+ "gender": "masculine"
+ }
+ ],
+ "סגר": [
+ {
+ "word_nikkud": "סֶגֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7303-seger",
+ "gender": "masculine"
+ }
+ ],
+ "סגרים": [
+ {
+ "word_nikkud": "סֶגֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7303-seger",
+ "gender": "masculine"
+ }
+ ],
+ "סגר־": [
+ {
+ "word_nikkud": "סֶגֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7303-seger",
+ "gender": "masculine"
+ }
+ ],
+ "סגרי־": [
+ {
+ "word_nikkud": "סֶגֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7303-seger",
+ "gender": "masculine"
+ }
+ ],
+ "סדין": [
+ {
+ "word_nikkud": "סָדִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7504-sadin",
+ "gender": "masculine"
+ }
+ ],
+ "סדינים": [
+ {
+ "word_nikkud": "סָדִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7504-sadin",
+ "gender": "masculine"
+ }
+ ],
+ "סדין־": [
+ {
+ "word_nikkud": "סָדִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7504-sadin",
+ "gender": "masculine"
+ }
+ ],
+ "סדיני־": [
+ {
+ "word_nikkud": "סָדִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7504-sadin",
+ "gender": "masculine"
+ }
+ ],
+ "סדנה": [
+ {
+ "word_nikkud": "סַדְנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5085-sadna",
+ "gender": "feminine"
+ }
+ ],
+ "סדנאות": [
+ {
+ "word_nikkud": "סַדְנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5085-sadna",
+ "gender": "feminine"
+ }
+ ],
+ "סדנת־": [
+ {
+ "word_nikkud": "סַדְנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5085-sadna",
+ "gender": "feminine"
+ }
+ ],
+ "סדנות־": [
+ {
+ "word_nikkud": "סַדְנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5085-sadna",
+ "gender": "feminine"
+ }
+ ],
+ "סדן": [
+ {
+ "word_nikkud": "סַדָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5086-sadan",
+ "gender": "masculine"
+ }
+ ],
+ "סדנים": [
+ {
+ "word_nikkud": "סַדָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5086-sadan",
+ "gender": "masculine"
+ }
+ ],
+ "סדן־": [
+ {
+ "word_nikkud": "סַדָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5086-sadan",
+ "gender": "masculine"
+ }
+ ],
+ "סדני־": [
+ {
+ "word_nikkud": "סַדָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5086-sadan",
+ "gender": "masculine"
+ }
+ ],
+ "סדק": [
+ {
+ "word_nikkud": "סֶדֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3121-sedek",
+ "gender": "masculine"
+ }
+ ],
+ "סדקים": [
+ {
+ "word_nikkud": "סֶדֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3121-sedek",
+ "gender": "masculine"
+ }
+ ],
+ "סדק־": [
+ {
+ "word_nikkud": "סֶדֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3121-sedek",
+ "gender": "masculine"
+ }
+ ],
+ "סדקי־": [
+ {
+ "word_nikkud": "סֶדֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3121-sedek",
+ "gender": "masculine"
+ }
+ ],
+ "מסדרון": [
+ {
+ "word_nikkud": "מִסְדְּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5633-misderon",
+ "gender": "masculine"
+ }
+ ],
+ "מסדרונות": [
+ {
+ "word_nikkud": "מִסְדְּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5633-misderon",
+ "gender": "masculine"
+ }
+ ],
+ "מסדרון־": [
+ {
+ "word_nikkud": "מִסְדְּרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5633-misderon",
+ "gender": "masculine"
+ }
+ ],
+ "מסדרונות־": [
+ {
+ "word_nikkud": "מִסְדְּרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5633-misderon",
+ "gender": "masculine"
+ }
+ ],
+ "סדר": [
+ {
+ "word_nikkud": "סְדָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3496-sdar",
+ "gender": "masculine"
+ }
+ ],
+ "סדרים": [
+ {
+ "word_nikkud": "סְדָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3496-sdar",
+ "gender": "masculine"
+ }
+ ],
+ "סדר־": [
+ {
+ "word_nikkud": "סְדָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3496-sdar",
+ "gender": "masculine"
+ }
+ ],
+ "סדרי־": [
+ {
+ "word_nikkud": "סְדָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3496-sdar",
+ "gender": "masculine"
+ }
+ ],
+ "סדרה": [
+ {
+ "word_nikkud": "סִדְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3218-sidra",
+ "gender": "feminine"
+ }
+ ],
+ "סדרות": [
+ {
+ "word_nikkud": "סִדְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3218-sidra",
+ "gender": "feminine"
+ }
+ ],
+ "סדרת־": [
+ {
+ "word_nikkud": "סִדְרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3218-sidra",
+ "gender": "feminine"
+ }
+ ],
+ "סדרות־": [
+ {
+ "word_nikkud": "סִדְרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3218-sidra",
+ "gender": "feminine"
+ }
+ ],
+ "סדרן": [
+ {
+ "word_nikkud": "סַדְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3440-sadran",
+ "gender": "masculine"
+ }
+ ],
+ "סדרנים": [
+ {
+ "word_nikkud": "סַדְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3440-sadran",
+ "gender": "masculine"
+ }
+ ],
+ "סדרן־": [
+ {
+ "word_nikkud": "סַדְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3440-sadran",
+ "gender": "masculine"
+ }
+ ],
+ "סדרני־": [
+ {
+ "word_nikkud": "סַדְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3440-sadran",
+ "gender": "masculine"
+ }
+ ],
+ "הסדר": [
+ {
+ "word_nikkud": "הֶסְדֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8883-hesder",
+ "gender": "masculine"
+ }
+ ],
+ "הסדרים": [
+ {
+ "word_nikkud": "הֶסְדֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8883-hesder",
+ "gender": "masculine"
+ }
+ ],
+ "הסדר־": [
+ {
+ "word_nikkud": "הֶסְדֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8883-hesder",
+ "gender": "masculine"
+ }
+ ],
+ "הסדרי־": [
+ {
+ "word_nikkud": "הֶסְדֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8883-hesder",
+ "gender": "masculine"
+ }
+ ],
+ "הסתדרות": [
+ {
+ "word_nikkud": "הִסְתַּדְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7815-histadrut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתדרויות": [
+ {
+ "word_nikkud": "הִסְתַּדְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7815-histadrut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתדרות־": [
+ {
+ "word_nikkud": "הִסְתַּדְּרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7815-histadrut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתדרויות־": [
+ {
+ "word_nikkud": "הִסְתַּדְּרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7815-histadrut",
+ "gender": "feminine"
+ }
+ ],
+ "סידור": [
+ {
+ "word_nikkud": "סִדּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4429-sidur",
+ "gender": "masculine"
+ }
+ ],
+ "סידורים": [
+ {
+ "word_nikkud": "סִדּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4429-sidur",
+ "gender": "masculine"
+ }
+ ],
+ "סידור־": [
+ {
+ "word_nikkud": "סִדּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4429-sidur",
+ "gender": "masculine"
+ }
+ ],
+ "סידורי־": [
+ {
+ "word_nikkud": "סִדּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4429-sidur",
+ "gender": "masculine"
+ }
+ ],
+ "סוהר": [
+ {
+ "word_nikkud": "סֹהַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3938-sohar",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סוֹהֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3937-soher",
+ "gender": "masculine"
+ }
+ ],
+ "סוהרים": [
+ {
+ "word_nikkud": "סוֹהֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3937-soher",
+ "gender": "masculine"
+ }
+ ],
+ "סוהר־": [
+ {
+ "word_nikkud": "סוֹהֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3937-soher",
+ "gender": "masculine"
+ }
+ ],
+ "סוהרי־": [
+ {
+ "word_nikkud": "סוֹהֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3937-soher",
+ "gender": "masculine"
+ }
+ ],
+ "סהרון": [
+ {
+ "word_nikkud": "סַהֲרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5151-saharon",
+ "gender": "masculine"
+ }
+ ],
+ "סהרונים": [
+ {
+ "word_nikkud": "סַהֲרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5151-saharon",
+ "gender": "masculine"
+ }
+ ],
+ "סהרון־": [
+ {
+ "word_nikkud": "סַהֲרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5151-saharon",
+ "gender": "masculine"
+ }
+ ],
+ "סהרוני־": [
+ {
+ "word_nikkud": "סַהֲרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5151-saharon",
+ "gender": "masculine"
+ }
+ ],
+ "הסוואה": [
+ {
+ "word_nikkud": "הַסְוָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7230-hasvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הסוואות": [
+ {
+ "word_nikkud": "הַסְוָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7230-hasvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הסוואת־": [
+ {
+ "word_nikkud": "הַסְוָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7230-hasvaa",
+ "gender": "feminine"
+ }
+ ],
+ "הסוואות־": [
+ {
+ "word_nikkud": "הַסְוָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7230-hasvaa",
+ "gender": "feminine"
+ }
+ ],
+ "סובלנות": [
+ {
+ "word_nikkud": "סוֹבְלָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7430-sovlanut",
+ "gender": "feminine"
+ }
+ ],
+ "סובלנות־": [
+ {
+ "word_nikkud": "סוֹבְלָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7430-sovlanut",
+ "gender": "feminine"
+ }
+ ],
+ "סוג": [
+ {
+ "word_nikkud": "סוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3676-sug",
+ "gender": "masculine"
+ }
+ ],
+ "סוגים": [
+ {
+ "word_nikkud": "סוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3676-sug",
+ "gender": "masculine"
+ }
+ ],
+ "סוג־": [
+ {
+ "word_nikkud": "סוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3676-sug",
+ "gender": "masculine"
+ }
+ ],
+ "סוגי־": [
+ {
+ "word_nikkud": "סוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3676-sug",
+ "gender": "masculine"
+ }
+ ],
+ "סוגיה": [
+ {
+ "word_nikkud": "סוּגְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8069-sugya",
+ "gender": "feminine"
+ }
+ ],
+ "סוגיות": [
+ {
+ "word_nikkud": "סוּגְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8069-sugya",
+ "gender": "feminine"
+ }
+ ],
+ "סוגיית־": [
+ {
+ "word_nikkud": "סוּגְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8069-sugya",
+ "gender": "feminine"
+ }
+ ],
+ "סוגיות־": [
+ {
+ "word_nikkud": "סוּגְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8069-sugya",
+ "gender": "feminine"
+ }
+ ],
+ "סוד": [
+ {
+ "word_nikkud": "סוֹד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5339-sod",
+ "gender": "masculine"
+ }
+ ],
+ "סודות": [
+ {
+ "word_nikkud": "סוֹד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5339-sod",
+ "gender": "masculine"
+ }
+ ],
+ "סוד־": [
+ {
+ "word_nikkud": "סוֹד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5339-sod",
+ "gender": "masculine"
+ }
+ ],
+ "סודות־": [
+ {
+ "word_nikkud": "סוֹד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5339-sod",
+ "gender": "masculine"
+ }
+ ],
+ "סוודר": [
+ {
+ "word_nikkud": "סְוֶדֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6880-sveder",
+ "gender": "masculine"
+ }
+ ],
+ "סוודרים": [
+ {
+ "word_nikkud": "סְוֶדֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6880-sveder",
+ "gender": "masculine"
+ }
+ ],
+ "סולן": [
+ {
+ "word_nikkud": "סוֹלָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9144-solan",
+ "gender": ""
+ }
+ ],
+ "סולנים": [
+ {
+ "word_nikkud": "סוֹלָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9144-solan",
+ "gender": ""
+ }
+ ],
+ "סולן־": [
+ {
+ "word_nikkud": "סוֹלָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9144-solan",
+ "gender": ""
+ }
+ ],
+ "סולני־": [
+ {
+ "word_nikkud": "סוֹלָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9144-solan",
+ "gender": ""
+ }
+ ],
+ "סוס": [
+ {
+ "word_nikkud": "סוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5041-sus",
+ "gender": "masculine"
+ }
+ ],
+ "סוסים": [
+ {
+ "word_nikkud": "סוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5041-sus",
+ "gender": "masculine"
+ }
+ ],
+ "סוס־": [
+ {
+ "word_nikkud": "סוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5041-sus",
+ "gender": "masculine"
+ }
+ ],
+ "סוסי־": [
+ {
+ "word_nikkud": "סוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5041-sus",
+ "gender": "masculine"
+ }
+ ],
+ "סוסה": [
+ {
+ "word_nikkud": "סוּסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5539-susa",
+ "gender": "feminine"
+ }
+ ],
+ "סוסות": [
+ {
+ "word_nikkud": "סוּסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5539-susa",
+ "gender": "feminine"
+ }
+ ],
+ "סוסת־": [
+ {
+ "word_nikkud": "סוּסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5539-susa",
+ "gender": "feminine"
+ }
+ ],
+ "סוסות־": [
+ {
+ "word_nikkud": "סוּסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5539-susa",
+ "gender": "feminine"
+ }
+ ],
+ "סוף": [
+ {
+ "word_nikkud": "סוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5543-sof",
+ "gender": "masculine"
+ }
+ ],
+ "סוף־": [
+ {
+ "word_nikkud": "סוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5543-sof",
+ "gender": "masculine"
+ }
+ ],
+ "סופה": [
+ {
+ "word_nikkud": "סוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4756-sufa",
+ "gender": "feminine"
+ }
+ ],
+ "סופות": [
+ {
+ "word_nikkud": "סוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4756-sufa",
+ "gender": "feminine"
+ }
+ ],
+ "סופת־": [
+ {
+ "word_nikkud": "סוּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4756-sufa",
+ "gender": "feminine"
+ }
+ ],
+ "סופות־": [
+ {
+ "word_nikkud": "סוּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4756-sufa",
+ "gender": "feminine"
+ }
+ ],
+ "הסתה": [
+ {
+ "word_nikkud": "הֲסָתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9290-hasata",
+ "gender": "feminine"
+ }
+ ],
+ "הסתות": [
+ {
+ "word_nikkud": "הֲסָתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9290-hasata",
+ "gender": "feminine"
+ }
+ ],
+ "הסתת־": [
+ {
+ "word_nikkud": "הֲסָתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9290-hasata",
+ "gender": "feminine"
+ }
+ ],
+ "הסתות־": [
+ {
+ "word_nikkud": "הֲסָתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9290-hasata",
+ "gender": "feminine"
+ }
+ ],
+ "סחיטה": [
+ {
+ "word_nikkud": "סְחִיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7797-schita",
+ "gender": "feminine"
+ }
+ ],
+ "סחיטות": [
+ {
+ "word_nikkud": "סְחִיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7797-schita",
+ "gender": "feminine"
+ }
+ ],
+ "סחיטת־": [
+ {
+ "word_nikkud": "סְחִיטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7797-schita",
+ "gender": "feminine"
+ }
+ ],
+ "סחיטות־": [
+ {
+ "word_nikkud": "סְחִיטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7797-schita",
+ "gender": "feminine"
+ }
+ ],
+ "סחטנות": [
+ {
+ "word_nikkud": "סַחְטָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9225-sachtanut",
+ "gender": "feminine"
+ }
+ ],
+ "סחטנויות": [
+ {
+ "word_nikkud": "סַחְטָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9225-sachtanut",
+ "gender": "feminine"
+ }
+ ],
+ "סחטנות־": [
+ {
+ "word_nikkud": "סַחְטָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9225-sachtanut",
+ "gender": "feminine"
+ }
+ ],
+ "סחטנויות־": [
+ {
+ "word_nikkud": "סַחְטָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9225-sachtanut",
+ "gender": "feminine"
+ }
+ ],
+ "מסחטה": [
+ {
+ "word_nikkud": "מַסְחֵטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6232-mascheta",
+ "gender": "feminine"
+ }
+ ],
+ "מסחטות": [
+ {
+ "word_nikkud": "מַסְחֵטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6232-mascheta",
+ "gender": "feminine"
+ }
+ ],
+ "מסחטת־": [
+ {
+ "word_nikkud": "מַסְחֵטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6232-mascheta",
+ "gender": "feminine"
+ }
+ ],
+ "מסחטות־": [
+ {
+ "word_nikkud": "מַסְחֵטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6232-mascheta",
+ "gender": "feminine"
+ }
+ ],
+ "סחטן": [
+ {
+ "word_nikkud": "סַחְטָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9224-sachtan",
+ "gender": "masculine"
+ }
+ ],
+ "סחטנים": [
+ {
+ "word_nikkud": "סַחְטָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9224-sachtan",
+ "gender": "masculine"
+ }
+ ],
+ "סחטן־": [
+ {
+ "word_nikkud": "סַחְטָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9224-sachtan",
+ "gender": "masculine"
+ }
+ ],
+ "סחטני־": [
+ {
+ "word_nikkud": "סַחְטָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9224-sachtan",
+ "gender": "masculine"
+ }
+ ],
+ "סחופת": [
+ {
+ "word_nikkud": "סְחֹפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3263-schofet",
+ "gender": "feminine"
+ }
+ ],
+ "סחופות": [
+ {
+ "word_nikkud": "סְחֹפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3263-schofet",
+ "gender": "feminine"
+ }
+ ],
+ "סחופת־": [
+ {
+ "word_nikkud": "סְחֹפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3263-schofet",
+ "gender": "feminine"
+ }
+ ],
+ "סחופות־": [
+ {
+ "word_nikkud": "סְחֹפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3263-schofet",
+ "gender": "feminine"
+ }
+ ],
+ "סחיפה": [
+ {
+ "word_nikkud": "סְחִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8586-schifa",
+ "gender": "feminine"
+ }
+ ],
+ "סחיפות": [
+ {
+ "word_nikkud": "סְחִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8586-schifa",
+ "gender": "feminine"
+ }
+ ],
+ "סחיפת־": [
+ {
+ "word_nikkud": "סְחִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8586-schifa",
+ "gender": "feminine"
+ }
+ ],
+ "סחיפות־": [
+ {
+ "word_nikkud": "סְחִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8586-schifa",
+ "gender": "feminine"
+ }
+ ],
+ "סחרחורת": [
+ {
+ "word_nikkud": "סְחַרְחֹרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6956-scharchoret",
+ "gender": "feminine"
+ }
+ ],
+ "סחרחורות": [
+ {
+ "word_nikkud": "סְחַרְחֹרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6956-scharchoret",
+ "gender": "feminine"
+ }
+ ],
+ "סחרחורת־": [
+ {
+ "word_nikkud": "סְחַרְחֹרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6956-scharchoret",
+ "gender": "feminine"
+ }
+ ],
+ "סחרחורות־": [
+ {
+ "word_nikkud": "סְחַרְחֹרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6956-scharchoret",
+ "gender": "feminine"
+ }
+ ],
+ "מסחר": [
+ {
+ "word_nikkud": "מִסְחָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3544-mischar",
+ "gender": "masculine"
+ }
+ ],
+ "מסחרים": [
+ {
+ "word_nikkud": "מִסְחָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3544-mischar",
+ "gender": "masculine"
+ }
+ ],
+ "מסחר־": [
+ {
+ "word_nikkud": "מִסְחָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3544-mischar",
+ "gender": "masculine"
+ }
+ ],
+ "מסחרי־": [
+ {
+ "word_nikkud": "מִסְחָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3544-mischar",
+ "gender": "masculine"
+ }
+ ],
+ "סחורה": [
+ {
+ "word_nikkud": "סְחוֹרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4535-schora",
+ "gender": "feminine"
+ }
+ ],
+ "סחורות": [
+ {
+ "word_nikkud": "סְחוֹרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4535-schora",
+ "gender": "feminine"
+ }
+ ],
+ "סחורת־": [
+ {
+ "word_nikkud": "סְחוֹרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4535-schora",
+ "gender": "feminine"
+ }
+ ],
+ "סחורות־": [
+ {
+ "word_nikkud": "סְחוֹרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4535-schora",
+ "gender": "feminine"
+ }
+ ],
+ "סחר": [
+ {
+ "word_nikkud": "סַחַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6561-sachar",
+ "gender": "masculine"
+ }
+ ],
+ "סחר־": [
+ {
+ "word_nikkud": "סַחַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6561-sachar",
+ "gender": "masculine"
+ }
+ ],
+ "סוחר": [
+ {
+ "word_nikkud": "סוֹחֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6562-socher",
+ "gender": "masculine"
+ }
+ ],
+ "סוחרים": [
+ {
+ "word_nikkud": "סוֹחֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6562-socher",
+ "gender": "masculine"
+ }
+ ],
+ "סוחר־": [
+ {
+ "word_nikkud": "סוֹחֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6562-socher",
+ "gender": "masculine"
+ }
+ ],
+ "סוחרי־": [
+ {
+ "word_nikkud": "סוֹחֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6562-socher",
+ "gender": "masculine"
+ }
+ ],
+ "סחרור": [
+ {
+ "word_nikkud": "סִחְרוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4669-sichrur",
+ "gender": "masculine"
+ }
+ ],
+ "סחרורים": [
+ {
+ "word_nikkud": "סִחְרוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4669-sichrur",
+ "gender": "masculine"
+ }
+ ],
+ "סחרור־": [
+ {
+ "word_nikkud": "סִחְרוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4669-sichrur",
+ "gender": "masculine"
+ }
+ ],
+ "סחרורי־": [
+ {
+ "word_nikkud": "סִחְרוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4669-sichrur",
+ "gender": "masculine"
+ }
+ ],
+ "סט": [
+ {
+ "word_nikkud": "סֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7544-set",
+ "gender": "masculine"
+ }
+ ],
+ "סטים": [
+ {
+ "word_nikkud": "סֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7544-set",
+ "gender": "masculine"
+ }
+ ],
+ "סט־": [
+ {
+ "word_nikkud": "סֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7544-set",
+ "gender": "masculine"
+ }
+ ],
+ "סטי־": [
+ {
+ "word_nikkud": "סֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7544-set",
+ "gender": "masculine"
+ }
+ ],
+ "סטודנט": [
+ {
+ "word_nikkud": "סְטוּדֶנְט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6532-student",
+ "gender": "masculine"
+ }
+ ],
+ "סטודנטים": [
+ {
+ "word_nikkud": "סְטוּדֶנְט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6532-student",
+ "gender": "masculine"
+ }
+ ],
+ "סטטיסטיקה": [
+ {
+ "word_nikkud": "סְטָטִיסְטִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9076-statistika",
+ "gender": "feminine"
+ }
+ ],
+ "סטטיסטיקת־": [
+ {
+ "word_nikkud": "סְטָטִיסְטִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9076-statistika",
+ "gender": "feminine"
+ }
+ ],
+ "סטייה": [
+ {
+ "word_nikkud": "סְטִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9151-stiya",
+ "gender": "feminine"
+ }
+ ],
+ "סטיות": [
+ {
+ "word_nikkud": "סְטִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9151-stiya",
+ "gender": "feminine"
+ }
+ ],
+ "סטיית־": [
+ {
+ "word_nikkud": "סְטִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9151-stiya",
+ "gender": "feminine"
+ }
+ ],
+ "סטיות־": [
+ {
+ "word_nikkud": "סְטִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9151-stiya",
+ "gender": "feminine"
+ }
+ ],
+ "סטירה": [
+ {
+ "word_nikkud": "סְטִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3980-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סטירות": [
+ {
+ "word_nikkud": "סְטִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3980-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סטירת־": [
+ {
+ "word_nikkud": "סְטִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3980-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סטירות־": [
+ {
+ "word_nikkud": "סְטִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3980-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סיב": [
+ {
+ "word_nikkud": "סִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6606-siv",
+ "gender": "masculine"
+ }
+ ],
+ "סיבים": [
+ {
+ "word_nikkud": "סִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6606-siv",
+ "gender": "masculine"
+ }
+ ],
+ "סיב־": [
+ {
+ "word_nikkud": "סִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6606-siv",
+ "gender": "masculine"
+ }
+ ],
+ "סיבי־": [
+ {
+ "word_nikkud": "סִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6606-siv",
+ "gender": "masculine"
+ }
+ ],
+ "הסתייגות": [
+ {
+ "word_nikkud": "הִסְתַּיְּגוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5881-histaygut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתייגויות": [
+ {
+ "word_nikkud": "הִסְתַּיְּגוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5881-histaygut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתייגות־": [
+ {
+ "word_nikkud": "הִסְתַּיְּגוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5881-histaygut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתייגויות־": [
+ {
+ "word_nikkud": "הִסְתַּיְּגוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5881-histaygut",
+ "gender": "feminine"
+ }
+ ],
+ "סיגריה": [
+ {
+ "word_nikkud": "סִיגַרְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7400-sigarya",
+ "gender": "feminine"
+ }
+ ],
+ "סיגריות": [
+ {
+ "word_nikkud": "סִיגַרְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7400-sigarya",
+ "gender": "feminine"
+ }
+ ],
+ "סיגריית־": [
+ {
+ "word_nikkud": "סִיגַרְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7400-sigarya",
+ "gender": "feminine"
+ }
+ ],
+ "סיגריות־": [
+ {
+ "word_nikkud": "סִיגַרְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7400-sigarya",
+ "gender": "feminine"
+ }
+ ],
+ "סיוט": [
+ {
+ "word_nikkud": "סִיּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7332-siyut",
+ "gender": "masculine"
+ }
+ ],
+ "סיוטים": [
+ {
+ "word_nikkud": "סִיּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7332-siyut",
+ "gender": "masculine"
+ }
+ ],
+ "סיוט־": [
+ {
+ "word_nikkud": "סִיּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7332-siyut",
+ "gender": "masculine"
+ }
+ ],
+ "סיוטי־": [
+ {
+ "word_nikkud": "סִיּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7332-siyut",
+ "gender": "masculine"
+ }
+ ],
+ "סיומת": [
+ {
+ "word_nikkud": "סִיֹּמֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3267-siyomet",
+ "gender": "feminine"
+ }
+ ],
+ "סיומות": [
+ {
+ "word_nikkud": "סִיֹּמֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3267-siyomet",
+ "gender": "feminine"
+ }
+ ],
+ "סיומת־": [
+ {
+ "word_nikkud": "סִיֹּמֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3267-siyomet",
+ "gender": "feminine"
+ }
+ ],
+ "סיומות־": [
+ {
+ "word_nikkud": "סִיֹּמֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3267-siyomet",
+ "gender": "feminine"
+ }
+ ],
+ "סיום": [
+ {
+ "word_nikkud": "סִיּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2978-siyum",
+ "gender": "masculine"
+ }
+ ],
+ "סיומים": [
+ {
+ "word_nikkud": "סִיּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2978-siyum",
+ "gender": "masculine"
+ }
+ ],
+ "סיום־": [
+ {
+ "word_nikkud": "סִיּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2978-siyum",
+ "gender": "masculine"
+ }
+ ],
+ "סיומי־": [
+ {
+ "word_nikkud": "סִיּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2978-siyum",
+ "gender": "masculine"
+ }
+ ],
+ "סימן": [
+ {
+ "word_nikkud": "סִימָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7176-siman",
+ "gender": ""
+ }
+ ],
+ "סימנים": [
+ {
+ "word_nikkud": "סִימָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7176-siman",
+ "gender": ""
+ }
+ ],
+ "סימן־": [
+ {
+ "word_nikkud": "סִימָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7176-siman",
+ "gender": ""
+ }
+ ],
+ "סימני־": [
+ {
+ "word_nikkud": "סִימָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7176-siman",
+ "gender": ""
+ }
+ ],
+ "סימנייה": [
+ {
+ "word_nikkud": "סִימָנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8796-simaniya",
+ "gender": "masculine"
+ }
+ ],
+ "סימניות": [
+ {
+ "word_nikkud": "סִימָנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8796-simaniya",
+ "gender": "masculine"
+ }
+ ],
+ "סימניית־": [
+ {
+ "word_nikkud": "סִימָנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8796-simaniya",
+ "gender": "masculine"
+ }
+ ],
+ "סימניות־": [
+ {
+ "word_nikkud": "סִימָנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8796-simaniya",
+ "gender": "masculine"
+ }
+ ],
+ "סיס": [
+ {
+ "word_nikkud": "סִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4334-sis",
+ "gender": "masculine"
+ }
+ ],
+ "סיסים": [
+ {
+ "word_nikkud": "סִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4334-sis",
+ "gender": "masculine"
+ }
+ ],
+ "סיס־": [
+ {
+ "word_nikkud": "סִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4334-sis",
+ "gender": "masculine"
+ }
+ ],
+ "סיסי־": [
+ {
+ "word_nikkud": "סִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4334-sis",
+ "gender": "masculine"
+ }
+ ],
+ "סיסמה": [
+ {
+ "word_nikkud": "סִיסְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7838-sisma",
+ "gender": "feminine"
+ }
+ ],
+ "סיסמא": [
+ {
+ "word_nikkud": "סִיסְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7838-sisma",
+ "gender": "feminine"
+ }
+ ],
+ "סיסמאות": [
+ {
+ "word_nikkud": "סִיסְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7838-sisma",
+ "gender": "feminine"
+ }
+ ],
+ "סיסמת־": [
+ {
+ "word_nikkud": "סִיסְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7838-sisma",
+ "gender": "feminine"
+ }
+ ],
+ "סיסמות־": [
+ {
+ "word_nikkud": "סִיסְמָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7838-sisma",
+ "gender": "feminine"
+ }
+ ],
+ "סייען": [
+ {
+ "word_nikkud": "סַיְעָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4007-sayan",
+ "gender": "masculine"
+ }
+ ],
+ "סייענים": [
+ {
+ "word_nikkud": "סַיְעָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4007-sayan",
+ "gender": "masculine"
+ }
+ ],
+ "סייען־": [
+ {
+ "word_nikkud": "סַיְעָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4007-sayan",
+ "gender": "masculine"
+ }
+ ],
+ "סייעני־": [
+ {
+ "word_nikkud": "סַיְעָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4007-sayan",
+ "gender": "masculine"
+ }
+ ],
+ "סיוע": [
+ {
+ "word_nikkud": "סִיּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4692-siyua",
+ "gender": "masculine"
+ }
+ ],
+ "סיועים": [
+ {
+ "word_nikkud": "סִיּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4692-siyua",
+ "gender": "masculine"
+ }
+ ],
+ "סיוע־": [
+ {
+ "word_nikkud": "סִיּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4692-siyua",
+ "gender": "masculine"
+ }
+ ],
+ "סיועי־": [
+ {
+ "word_nikkud": "סִיּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4692-siyua",
+ "gender": "masculine"
+ }
+ ],
+ "סייף": [
+ {
+ "word_nikkud": "סַיָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9158-sayaf",
+ "gender": "masculine"
+ }
+ ],
+ "סייפים": [
+ {
+ "word_nikkud": "סַיָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9158-sayaf",
+ "gender": "masculine"
+ }
+ ],
+ "סייף־": [
+ {
+ "word_nikkud": "סַיָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9158-sayaf",
+ "gender": "masculine"
+ }
+ ],
+ "סייפי־": [
+ {
+ "word_nikkud": "סַיָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9158-sayaf",
+ "gender": "masculine"
+ }
+ ],
+ "סיפון": [
+ {
+ "word_nikkud": "סִיפוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6688-sifon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִפּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6689-sipun",
+ "gender": "masculine"
+ }
+ ],
+ "סיפונים": [
+ {
+ "word_nikkud": "סִיפוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6688-sifon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִפּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6689-sipun",
+ "gender": "masculine"
+ }
+ ],
+ "סיפון־": [
+ {
+ "word_nikkud": "סִיפוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6688-sifon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִפּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6689-sipun",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוני־": [
+ {
+ "word_nikkud": "סִיפוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6688-sifon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִפּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6689-sipun",
+ "gender": "masculine"
+ }
+ ],
+ "סיירת": [
+ {
+ "word_nikkud": "סַיֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3294-sayeret",
+ "gender": "feminine"
+ }
+ ],
+ "סיירות": [
+ {
+ "word_nikkud": "סַיֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3294-sayeret",
+ "gender": "feminine"
+ }
+ ],
+ "סיירת־": [
+ {
+ "word_nikkud": "סַיֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3294-sayeret",
+ "gender": "feminine"
+ }
+ ],
+ "סיירות־": [
+ {
+ "word_nikkud": "סַיֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3294-sayeret",
+ "gender": "feminine"
+ }
+ ],
+ "סיור": [
+ {
+ "word_nikkud": "סִיּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3701-siyur",
+ "gender": "masculine"
+ }
+ ],
+ "סיורים": [
+ {
+ "word_nikkud": "סִיּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3701-siyur",
+ "gender": "masculine"
+ }
+ ],
+ "סיור־": [
+ {
+ "word_nikkud": "סִיּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3701-siyur",
+ "gender": "masculine"
+ }
+ ],
+ "סיורי־": [
+ {
+ "word_nikkud": "סִיּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3701-siyur",
+ "gender": "masculine"
+ }
+ ],
+ "הסרה": [
+ {
+ "word_nikkud": "הֲסָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8425-hasara",
+ "gender": "feminine"
+ }
+ ],
+ "הסרות": [
+ {
+ "word_nikkud": "הֲסָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8425-hasara",
+ "gender": "feminine"
+ }
+ ],
+ "הסרת־": [
+ {
+ "word_nikkud": "הֲסָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8425-hasara",
+ "gender": "feminine"
+ }
+ ],
+ "הסרות־": [
+ {
+ "word_nikkud": "הֲסָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8425-hasara",
+ "gender": "feminine"
+ }
+ ],
+ "סיר": [
+ {
+ "word_nikkud": "סִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6624-sir",
+ "gender": "masculine"
+ }
+ ],
+ "סירים": [
+ {
+ "word_nikkud": "סִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6624-sir",
+ "gender": "masculine"
+ }
+ ],
+ "סירות": [
+ {
+ "word_nikkud": "סִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6624-sir",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7044-sira",
+ "gender": ""
+ }
+ ],
+ "סיר־": [
+ {
+ "word_nikkud": "סִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6624-sir",
+ "gender": "masculine"
+ }
+ ],
+ "סירי־": [
+ {
+ "word_nikkud": "סִיר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6624-sir",
+ "gender": "masculine"
+ }
+ ],
+ "סירות־": [
+ {
+ "word_nikkud": "סִיר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6624-sir",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7044-sira",
+ "gender": ""
+ }
+ ],
+ "סירה": [
+ {
+ "word_nikkud": "סִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7044-sira",
+ "gender": ""
+ }
+ ],
+ "סירת־": [
+ {
+ "word_nikkud": "סִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7044-sira",
+ "gender": ""
+ }
+ ],
+ "סך": [
+ {
+ "word_nikkud": "סָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6160-sach",
+ "gender": "masculine"
+ }
+ ],
+ "סכים": [
+ {
+ "word_nikkud": "סָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6160-sach",
+ "gender": "masculine"
+ }
+ ],
+ "סך־": [
+ {
+ "word_nikkud": "סָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6160-sach",
+ "gender": "masculine"
+ }
+ ],
+ "סכי־": [
+ {
+ "word_nikkud": "סָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6160-sach",
+ "gender": "masculine"
+ }
+ ],
+ "סיכוי": [
+ {
+ "word_nikkud": "סִכּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7566-sikuy",
+ "gender": "masculine"
+ }
+ ],
+ "סיכויים": [
+ {
+ "word_nikkud": "סִכּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7566-sikuy",
+ "gender": "masculine"
+ }
+ ],
+ "סיכוי־": [
+ {
+ "word_nikkud": "סִכּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7566-sikuy",
+ "gender": "masculine"
+ }
+ ],
+ "סיכויי־": [
+ {
+ "word_nikkud": "סִכּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7566-sikuy",
+ "gender": "masculine"
+ }
+ ],
+ "מסך": [
+ {
+ "word_nikkud": "מָסַךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4682-masach",
+ "gender": "masculine"
+ }
+ ],
+ "מסכים": [
+ {
+ "word_nikkud": "מָסַךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4682-masach",
+ "gender": "masculine"
+ }
+ ],
+ "מסך־": [
+ {
+ "word_nikkud": "מָסַךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4682-masach",
+ "gender": "masculine"
+ }
+ ],
+ "מסכי־": [
+ {
+ "word_nikkud": "מָסַךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4682-masach",
+ "gender": "masculine"
+ }
+ ],
+ "סוכה": [
+ {
+ "word_nikkud": "סֻכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8849-suka",
+ "gender": "feminine"
+ }
+ ],
+ "סוכות": [
+ {
+ "word_nikkud": "סֻכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8849-suka",
+ "gender": "feminine"
+ }
+ ],
+ "סוכת־": [
+ {
+ "word_nikkud": "סֻכָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8849-suka",
+ "gender": "feminine"
+ }
+ ],
+ "סוכות־": [
+ {
+ "word_nikkud": "סֻכָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8849-suka",
+ "gender": "feminine"
+ }
+ ],
+ "מוסך": [
+ {
+ "word_nikkud": "מוּסָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6152-musach",
+ "gender": "masculine"
+ }
+ ],
+ "מוסכים": [
+ {
+ "word_nikkud": "מוּסָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6152-musach",
+ "gender": "masculine"
+ }
+ ],
+ "מוסך־": [
+ {
+ "word_nikkud": "מוּסָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6152-musach",
+ "gender": "masculine"
+ }
+ ],
+ "מוסכי־": [
+ {
+ "word_nikkud": "מוּסָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6152-musach",
+ "gender": "masculine"
+ }
+ ],
+ "הסתכלות": [
+ {
+ "word_nikkud": "הִסְתַּכְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7178-histaklut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתכלויות": [
+ {
+ "word_nikkud": "הִסְתַּכְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7178-histaklut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתכלות־": [
+ {
+ "word_nikkud": "הִסְתַּכְּלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7178-histaklut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתכלויות־": [
+ {
+ "word_nikkud": "הִסְתַּכְּלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7178-histaklut",
+ "gender": "feminine"
+ }
+ ],
+ "סיכול": [
+ {
+ "word_nikkud": "סִכּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5112-sikul",
+ "gender": "masculine"
+ }
+ ],
+ "סיכולים": [
+ {
+ "word_nikkud": "סִכּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5112-sikul",
+ "gender": "masculine"
+ }
+ ],
+ "סיכול־": [
+ {
+ "word_nikkud": "סִכּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5112-sikul",
+ "gender": "masculine"
+ }
+ ],
+ "סיכולי־": [
+ {
+ "word_nikkud": "סִכּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5112-sikul",
+ "gender": "masculine"
+ }
+ ],
+ "מוסכמה": [
+ {
+ "word_nikkud": "מֻסְכָּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8206-muskama",
+ "gender": "feminine"
+ }
+ ],
+ "מוסכמות": [
+ {
+ "word_nikkud": "מֻסְכָּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8206-muskama",
+ "gender": "feminine"
+ }
+ ],
+ "מוסכמת־": [
+ {
+ "word_nikkud": "מֻסְכָּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8206-muskama",
+ "gender": "feminine"
+ }
+ ],
+ "מוסכמות־": [
+ {
+ "word_nikkud": "מֻסְכָּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8206-muskama",
+ "gender": "feminine"
+ }
+ ],
+ "הסכם": [
+ {
+ "word_nikkud": "הֶסְכֵּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5637-heskem",
+ "gender": "masculine"
+ }
+ ],
+ "הסכמים": [
+ {
+ "word_nikkud": "הֶסְכֵּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5637-heskem",
+ "gender": "masculine"
+ }
+ ],
+ "הסכם־": [
+ {
+ "word_nikkud": "הֶסְכֵּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5637-heskem",
+ "gender": "masculine"
+ }
+ ],
+ "הסכמי־": [
+ {
+ "word_nikkud": "הֶסְכֵּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5637-heskem",
+ "gender": "masculine"
+ }
+ ],
+ "סכום": [
+ {
+ "word_nikkud": "סְכוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3533-schum",
+ "gender": "masculine"
+ }
+ ],
+ "סכומים": [
+ {
+ "word_nikkud": "סְכוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3533-schum",
+ "gender": "masculine"
+ }
+ ],
+ "סכום־": [
+ {
+ "word_nikkud": "סְכוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3533-schum",
+ "gender": "masculine"
+ }
+ ],
+ "סכומי־": [
+ {
+ "word_nikkud": "סְכוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3533-schum",
+ "gender": "masculine"
+ }
+ ],
+ "הסכמה": [
+ {
+ "word_nikkud": "הַסְכָּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6534-haskama",
+ "gender": "feminine"
+ }
+ ],
+ "הסכמות": [
+ {
+ "word_nikkud": "הַסְכָּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6534-haskama",
+ "gender": "feminine"
+ }
+ ],
+ "הסכמת־": [
+ {
+ "word_nikkud": "הַסְכָּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6534-haskama",
+ "gender": "feminine"
+ }
+ ],
+ "הסכמות־": [
+ {
+ "word_nikkud": "הַסְכָּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6534-haskama",
+ "gender": "feminine"
+ }
+ ],
+ "סוכנות": [
+ {
+ "word_nikkud": "סוֹכְנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4773-sochnut",
+ "gender": "feminine"
+ }
+ ],
+ "סוכנויות": [
+ {
+ "word_nikkud": "סוֹכְנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4773-sochnut",
+ "gender": "feminine"
+ }
+ ],
+ "סוכנות־": [
+ {
+ "word_nikkud": "סוֹכְנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4773-sochnut",
+ "gender": "feminine"
+ }
+ ],
+ "סוכנויות־": [
+ {
+ "word_nikkud": "סוֹכְנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4773-sochnut",
+ "gender": "feminine"
+ }
+ ],
+ "סיכון": [
+ {
+ "word_nikkud": "סִכּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2980-sikun",
+ "gender": "masculine"
+ }
+ ],
+ "סיכונים": [
+ {
+ "word_nikkud": "סִכּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2980-sikun",
+ "gender": "masculine"
+ }
+ ],
+ "סיכון־": [
+ {
+ "word_nikkud": "סִכּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2980-sikun",
+ "gender": "masculine"
+ }
+ ],
+ "סיכוני־": [
+ {
+ "word_nikkud": "סִכּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2980-sikun",
+ "gender": "masculine"
+ }
+ ],
+ "סכנה": [
+ {
+ "word_nikkud": "סַכָּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3004-sakana",
+ "gender": "feminine"
+ }
+ ],
+ "סכנות": [
+ {
+ "word_nikkud": "סַכָּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3004-sakana",
+ "gender": "feminine"
+ }
+ ],
+ "סכנת־": [
+ {
+ "word_nikkud": "סַכָּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3004-sakana",
+ "gender": "feminine"
+ }
+ ],
+ "סכנות־": [
+ {
+ "word_nikkud": "סַכָּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3004-sakana",
+ "gender": "feminine"
+ }
+ ],
+ "סוכן": [
+ {
+ "word_nikkud": "סוֹכֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4772-sochen",
+ "gender": "masculine"
+ }
+ ],
+ "סוכנים": [
+ {
+ "word_nikkud": "סוֹכֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4772-sochen",
+ "gender": "masculine"
+ }
+ ],
+ "סוכן־": [
+ {
+ "word_nikkud": "סוֹכֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4772-sochen",
+ "gender": "masculine"
+ }
+ ],
+ "סוכני־": [
+ {
+ "word_nikkud": "סוֹכֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4772-sochen",
+ "gender": "masculine"
+ }
+ ],
+ "סכין": [
+ {
+ "word_nikkud": "סַכִּין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5939-sakin",
+ "gender": "masculine"
+ }
+ ],
+ "סכינים": [
+ {
+ "word_nikkud": "סַכִּין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5939-sakin",
+ "gender": "masculine"
+ }
+ ],
+ "סכין־": [
+ {
+ "word_nikkud": "סַכִּין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5939-sakin",
+ "gender": "masculine"
+ }
+ ],
+ "סכיני־": [
+ {
+ "word_nikkud": "סַכִּין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5939-sakin",
+ "gender": "masculine"
+ }
+ ],
+ "סכסוך": [
+ {
+ "word_nikkud": "סִכְסוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4662-sichsuch",
+ "gender": "masculine"
+ }
+ ],
+ "סכסוכים": [
+ {
+ "word_nikkud": "סִכְסוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4662-sichsuch",
+ "gender": "masculine"
+ }
+ ],
+ "סכסוך־": [
+ {
+ "word_nikkud": "סִכְסוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4662-sichsuch",
+ "gender": "masculine"
+ }
+ ],
+ "סכסוכי־": [
+ {
+ "word_nikkud": "סִכְסוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4662-sichsuch",
+ "gender": "masculine"
+ }
+ ],
+ "סוכרייה": [
+ {
+ "word_nikkud": "סֻכָּרִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8723-sukariya",
+ "gender": "masculine"
+ }
+ ],
+ "סוכריות": [
+ {
+ "word_nikkud": "סֻכָּרִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8723-sukariya",
+ "gender": "masculine"
+ }
+ ],
+ "סוכריית־": [
+ {
+ "word_nikkud": "סֻכָּרִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8723-sukariya",
+ "gender": "masculine"
+ }
+ ],
+ "סוכריות־": [
+ {
+ "word_nikkud": "סֻכָּרִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8723-sukariya",
+ "gender": "masculine"
+ }
+ ],
+ "סכר": [
+ {
+ "word_nikkud": "סֶכֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3692-secher",
+ "gender": "masculine"
+ }
+ ],
+ "סכרים": [
+ {
+ "word_nikkud": "סֶכֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3692-secher",
+ "gender": "masculine"
+ }
+ ],
+ "סכר־": [
+ {
+ "word_nikkud": "סֶכֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3692-secher",
+ "gender": "masculine"
+ }
+ ],
+ "סכרי־": [
+ {
+ "word_nikkud": "סֶכֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3692-secher",
+ "gender": "masculine"
+ }
+ ],
+ "הסכת": [
+ {
+ "word_nikkud": "הֶסְכֵּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6826-hesket",
+ "gender": "masculine"
+ }
+ ],
+ "הסכתים": [
+ {
+ "word_nikkud": "הֶסְכֵּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6826-hesket",
+ "gender": "masculine"
+ }
+ ],
+ "הסכת־": [
+ {
+ "word_nikkud": "הֶסְכֵּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6826-hesket",
+ "gender": "masculine"
+ }
+ ],
+ "הסכתי־": [
+ {
+ "word_nikkud": "הֶסְכֵּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6826-hesket",
+ "gender": "masculine"
+ }
+ ],
+ "תסכית": [
+ {
+ "word_nikkud": "תַּסְכִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6834-taskit",
+ "gender": "masculine"
+ }
+ ],
+ "תסכיתים": [
+ {
+ "word_nikkud": "תַּסְכִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6834-taskit",
+ "gender": "masculine"
+ }
+ ],
+ "תסכית־": [
+ {
+ "word_nikkud": "תַּסְכִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6834-taskit",
+ "gender": "masculine"
+ }
+ ],
+ "תסכיתי־": [
+ {
+ "word_nikkud": "תַּסְכִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6834-taskit",
+ "gender": "masculine"
+ }
+ ],
+ "סל": [
+ {
+ "word_nikkud": "סַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6767-sal",
+ "gender": "masculine"
+ }
+ ],
+ "סלים": [
+ {
+ "word_nikkud": "סַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6767-sal",
+ "gender": "masculine"
+ }
+ ],
+ "סל־": [
+ {
+ "word_nikkud": "סַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6767-sal",
+ "gender": "masculine"
+ }
+ ],
+ "סלי־": [
+ {
+ "word_nikkud": "סַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6767-sal",
+ "gender": "masculine"
+ }
+ ],
+ "סלב": [
+ {
+ "word_nikkud": "סֶלֶבּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8481-seleb",
+ "gender": "masculine"
+ }
+ ],
+ "סלבז": [
+ {
+ "word_nikkud": "סֶלֶבּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8481-seleb",
+ "gender": "masculine"
+ }
+ ],
+ "סלידה": [
+ {
+ "word_nikkud": "סְלִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9063-slida",
+ "gender": "feminine"
+ }
+ ],
+ "סלידת־": [
+ {
+ "word_nikkud": "סְלִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9063-slida",
+ "gender": "feminine"
+ }
+ ],
+ "סלולר": [
+ {
+ "word_nikkud": "סֶלוּלָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9291-selular",
+ "gender": "masculine"
+ }
+ ],
+ "סלולרים": [
+ {
+ "word_nikkud": "סֶלוּלָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9291-selular",
+ "gender": "masculine"
+ }
+ ],
+ "סלון": [
+ {
+ "word_nikkud": "סָלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5902-salon",
+ "gender": ""
+ }
+ ],
+ "סלונים": [
+ {
+ "word_nikkud": "סָלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5902-salon",
+ "gender": ""
+ }
+ ],
+ "סלון־": [
+ {
+ "word_nikkud": "סָלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5902-salon",
+ "gender": ""
+ }
+ ],
+ "סלוני־": [
+ {
+ "word_nikkud": "סָלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5902-salon",
+ "gender": ""
+ }
+ ],
+ "סליחה": [
+ {
+ "word_nikkud": "סְלִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3996-slicha",
+ "gender": "feminine"
+ }
+ ],
+ "סליחות": [
+ {
+ "word_nikkud": "סְלִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3996-slicha",
+ "gender": "feminine"
+ }
+ ],
+ "סליחת־": [
+ {
+ "word_nikkud": "סְלִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3996-slicha",
+ "gender": "feminine"
+ }
+ ],
+ "סליחות־": [
+ {
+ "word_nikkud": "סְלִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3996-slicha",
+ "gender": "feminine"
+ }
+ ],
+ "סלט": [
+ {
+ "word_nikkud": "סָלָט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6842-salat",
+ "gender": "masculine"
+ }
+ ],
+ "סלטים": [
+ {
+ "word_nikkud": "סָלָט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6842-salat",
+ "gender": "masculine"
+ }
+ ],
+ "סלט־": [
+ {
+ "word_nikkud": "סָלָט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6842-salat",
+ "gender": "masculine"
+ }
+ ],
+ "סלטי־": [
+ {
+ "word_nikkud": "סָלָט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6842-salat",
+ "gender": "masculine"
+ }
+ ],
+ "סוללה": [
+ {
+ "word_nikkud": "סוֹלְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5600-solela",
+ "gender": "feminine"
+ }
+ ],
+ "סוללות": [
+ {
+ "word_nikkud": "סוֹלְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5600-solela",
+ "gender": "feminine"
+ }
+ ],
+ "סוללת־": [
+ {
+ "word_nikkud": "סוֹלְלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5600-solela",
+ "gender": "feminine"
+ }
+ ],
+ "סוללות־": [
+ {
+ "word_nikkud": "סוֹלְלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5600-solela",
+ "gender": "feminine"
+ }
+ ],
+ "מסילה": [
+ {
+ "word_nikkud": "מְסִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3793-mesila",
+ "gender": "feminine"
+ }
+ ],
+ "מסילות": [
+ {
+ "word_nikkud": "מְסִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3793-mesila",
+ "gender": "feminine"
+ }
+ ],
+ "מסילת־": [
+ {
+ "word_nikkud": "מְסִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3793-mesila",
+ "gender": "feminine"
+ }
+ ],
+ "מסילות־": [
+ {
+ "word_nikkud": "מְסִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3793-mesila",
+ "gender": "feminine"
+ }
+ ],
+ "מסלול": [
+ {
+ "word_nikkud": "מַסְלוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6786-maslul",
+ "gender": "masculine"
+ }
+ ],
+ "מסלולים": [
+ {
+ "word_nikkud": "מַסְלוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6786-maslul",
+ "gender": "masculine"
+ }
+ ],
+ "מסלול־": [
+ {
+ "word_nikkud": "מַסְלוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6786-maslul",
+ "gender": "masculine"
+ }
+ ],
+ "מסלולי־": [
+ {
+ "word_nikkud": "מַסְלוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6786-maslul",
+ "gender": "masculine"
+ }
+ ],
+ "הסלמה": [
+ {
+ "word_nikkud": "הַסְלָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2894-haslama",
+ "gender": "feminine"
+ }
+ ],
+ "הסלמת־": [
+ {
+ "word_nikkud": "הַסְלָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2894-haslama",
+ "gender": "feminine"
+ }
+ ],
+ "סולם": [
+ {
+ "word_nikkud": "סֻלָּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4619-sulam",
+ "gender": "masculine"
+ }
+ ],
+ "סולמות": [
+ {
+ "word_nikkud": "סֻלָּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4619-sulam",
+ "gender": "masculine"
+ }
+ ],
+ "סולם־": [
+ {
+ "word_nikkud": "סֻלָּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4619-sulam",
+ "gender": "masculine"
+ }
+ ],
+ "סולמות־": [
+ {
+ "word_nikkud": "סֻלָּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4619-sulam",
+ "gender": "masculine"
+ }
+ ],
+ "סלסילה": [
+ {
+ "word_nikkud": "סַלְסִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7543-salsila",
+ "gender": ""
+ }
+ ],
+ "סלסילות": [
+ {
+ "word_nikkud": "סַלְסִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7543-salsila",
+ "gender": ""
+ }
+ ],
+ "סלסילת־": [
+ {
+ "word_nikkud": "סַלְסִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7543-salsila",
+ "gender": ""
+ }
+ ],
+ "סלסילות־": [
+ {
+ "word_nikkud": "סַלְסִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7543-salsila",
+ "gender": ""
+ }
+ ],
+ "סלע": [
+ {
+ "word_nikkud": "סֶלַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3666-sela",
+ "gender": "masculine"
+ }
+ ],
+ "סלעים": [
+ {
+ "word_nikkud": "סֶלַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3666-sela",
+ "gender": "masculine"
+ }
+ ],
+ "סלע־": [
+ {
+ "word_nikkud": "סֶלַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3666-sela",
+ "gender": "masculine"
+ }
+ ],
+ "סלעי־": [
+ {
+ "word_nikkud": "סֶלַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3666-sela",
+ "gender": "masculine"
+ }
+ ],
+ "סילוף": [
+ {
+ "word_nikkud": "סִלּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6628-siluf",
+ "gender": "masculine"
+ }
+ ],
+ "סילופים": [
+ {
+ "word_nikkud": "סִלּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6628-siluf",
+ "gender": "masculine"
+ }
+ ],
+ "סילוף־": [
+ {
+ "word_nikkud": "סִלּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6628-siluf",
+ "gender": "masculine"
+ }
+ ],
+ "סילופי־": [
+ {
+ "word_nikkud": "סִלּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6628-siluf",
+ "gender": "masculine"
+ }
+ ],
+ "סילוק": [
+ {
+ "word_nikkud": "סִלּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4308-siluk",
+ "gender": "masculine"
+ }
+ ],
+ "סילוקים": [
+ {
+ "word_nikkud": "סִלּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4308-siluk",
+ "gender": "masculine"
+ }
+ ],
+ "סילוק־": [
+ {
+ "word_nikkud": "סִלּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4308-siluk",
+ "gender": "masculine"
+ }
+ ],
+ "סילוקי־": [
+ {
+ "word_nikkud": "סִלּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4308-siluk",
+ "gender": "masculine"
+ }
+ ],
+ "סלק": [
+ {
+ "word_nikkud": "סֶלֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8941-selek",
+ "gender": "masculine"
+ }
+ ],
+ "סלקים": [
+ {
+ "word_nikkud": "סֶלֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8941-selek",
+ "gender": "masculine"
+ }
+ ],
+ "סלק־": [
+ {
+ "word_nikkud": "סֶלֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8941-selek",
+ "gender": "masculine"
+ }
+ ],
+ "סלקי־": [
+ {
+ "word_nikkud": "סֶלֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8941-selek",
+ "gender": "masculine"
+ }
+ ],
+ "סליק": [
+ {
+ "word_nikkud": "סְלִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7047-slik",
+ "gender": "masculine"
+ }
+ ],
+ "סליקים": [
+ {
+ "word_nikkud": "סְלִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7047-slik",
+ "gender": "masculine"
+ }
+ ],
+ "סליק־": [
+ {
+ "word_nikkud": "סְלִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7047-slik",
+ "gender": "masculine"
+ }
+ ],
+ "סליקי־": [
+ {
+ "word_nikkud": "סְלִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7047-slik",
+ "gender": "masculine"
+ }
+ ],
+ "סלרי": [
+ {
+ "word_nikkud": "סֶלֶרִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9099-seleri",
+ "gender": "masculine"
+ }
+ ],
+ "סלרי־": [
+ {
+ "word_nikkud": "סֶלֶרִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9099-seleri",
+ "gender": "masculine"
+ }
+ ],
+ "סמטה": [
+ {
+ "word_nikkud": "סִמְטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7611-simta",
+ "gender": "feminine"
+ }
+ ],
+ "סמטאות": [
+ {
+ "word_nikkud": "סִמְטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7611-simta",
+ "gender": "feminine"
+ }
+ ],
+ "סמטת־": [
+ {
+ "word_nikkud": "סִמְטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7611-simta",
+ "gender": "feminine"
+ }
+ ],
+ "סמטות־": [
+ {
+ "word_nikkud": "סִמְטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7611-simta",
+ "gender": "feminine"
+ }
+ ],
+ "סמיכות": [
+ {
+ "word_nikkud": "סְמִיכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7268-smichut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "סְמִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3390-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "סמיכות־": [
+ {
+ "word_nikkud": "סְמִיכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7268-smichut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "סְמִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3390-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "סמכות": [
+ {
+ "word_nikkud": "סַמְכוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3647-samchut",
+ "gender": "feminine"
+ }
+ ],
+ "סמכויות": [
+ {
+ "word_nikkud": "סַמְכוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3647-samchut",
+ "gender": "feminine"
+ }
+ ],
+ "סמכות־": [
+ {
+ "word_nikkud": "סַמְכוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3647-samchut",
+ "gender": "feminine"
+ }
+ ],
+ "סמכויות־": [
+ {
+ "word_nikkud": "סַמְכוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3647-samchut",
+ "gender": "feminine"
+ }
+ ],
+ "הסמכה": [
+ {
+ "word_nikkud": "הַסְמָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3388-hasmacha",
+ "gender": "feminine"
+ }
+ ],
+ "הסמכות": [
+ {
+ "word_nikkud": "הַסְמָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3388-hasmacha",
+ "gender": "feminine"
+ }
+ ],
+ "הסמכת־": [
+ {
+ "word_nikkud": "הַסְמָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3388-hasmacha",
+ "gender": "feminine"
+ }
+ ],
+ "הסמכות־": [
+ {
+ "word_nikkud": "הַסְמָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3388-hasmacha",
+ "gender": "feminine"
+ }
+ ],
+ "מסמך": [
+ {
+ "word_nikkud": "מִסְמָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3389-mismach",
+ "gender": "masculine"
+ }
+ ],
+ "מסמכים": [
+ {
+ "word_nikkud": "מִסְמָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3389-mismach",
+ "gender": "masculine"
+ }
+ ],
+ "מסמך־": [
+ {
+ "word_nikkud": "מִסְמָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3389-mismach",
+ "gender": "masculine"
+ }
+ ],
+ "מסמכי־": [
+ {
+ "word_nikkud": "מִסְמָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3389-mismach",
+ "gender": "masculine"
+ }
+ ],
+ "סמיכה": [
+ {
+ "word_nikkud": "סְמִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3390-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "סמיכת־": [
+ {
+ "word_nikkud": "סְמִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3390-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "סמך": [
+ {
+ "word_nikkud": "סֶמֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8267-semech",
+ "gender": "masculine"
+ }
+ ],
+ "סמך־": [
+ {
+ "word_nikkud": "סֶמֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8267-semech",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סֶמֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8267-semech",
+ "gender": "masculine"
+ }
+ ],
+ "סמל": [
+ {
+ "word_nikkud": "סַמָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3355-samal",
+ "gender": "masculine"
+ }
+ ],
+ "סמלים": [
+ {
+ "word_nikkud": "סַמָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3355-samal",
+ "gender": "masculine"
+ }
+ ],
+ "סמל־": [
+ {
+ "word_nikkud": "סַמָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3355-samal",
+ "gender": "masculine"
+ }
+ ],
+ "סמלי־": [
+ {
+ "word_nikkud": "סַמָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3355-samal",
+ "gender": "masculine"
+ }
+ ],
+ "סם": [
+ {
+ "word_nikkud": "סַם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7272-sam",
+ "gender": "masculine"
+ }
+ ],
+ "סמים": [
+ {
+ "word_nikkud": "סַם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7272-sam",
+ "gender": "masculine"
+ }
+ ],
+ "סם־": [
+ {
+ "word_nikkud": "סַם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7272-sam",
+ "gender": "masculine"
+ }
+ ],
+ "סמי־": [
+ {
+ "word_nikkud": "סַם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7272-sam",
+ "gender": "masculine"
+ }
+ ],
+ "סממן": [
+ {
+ "word_nikkud": "סַמְמָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8237-sameman",
+ "gender": "masculine"
+ }
+ ],
+ "סממנים": [
+ {
+ "word_nikkud": "סַמְמָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8237-sameman",
+ "gender": "masculine"
+ }
+ ],
+ "סממן־": [
+ {
+ "word_nikkud": "סַמְמָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8237-sameman",
+ "gender": "masculine"
+ }
+ ],
+ "סממני־": [
+ {
+ "word_nikkud": "סַמְמָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8237-sameman",
+ "gender": "masculine"
+ }
+ ],
+ "סימון": [
+ {
+ "word_nikkud": "סִמּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6695-simun",
+ "gender": "masculine"
+ }
+ ],
+ "סימונים": [
+ {
+ "word_nikkud": "סִמּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6695-simun",
+ "gender": "masculine"
+ }
+ ],
+ "סימון־": [
+ {
+ "word_nikkud": "סִמּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6695-simun",
+ "gender": "masculine"
+ }
+ ],
+ "סימוני־": [
+ {
+ "word_nikkud": "סִמּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6695-simun",
+ "gender": "masculine"
+ }
+ ],
+ "תסמונת": [
+ {
+ "word_nikkud": "תִּסְמֹנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3254-tismonet",
+ "gender": "feminine"
+ }
+ ],
+ "תסמונות": [
+ {
+ "word_nikkud": "תִּסְמֹנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3254-tismonet",
+ "gender": "feminine"
+ }
+ ],
+ "תסמונת־": [
+ {
+ "word_nikkud": "תִּסְמֹנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3254-tismonet",
+ "gender": "feminine"
+ }
+ ],
+ "תסמונות־": [
+ {
+ "word_nikkud": "תִּסְמֹנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3254-tismonet",
+ "gender": "feminine"
+ }
+ ],
+ "תסמין": [
+ {
+ "word_nikkud": "תַּסְמִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7357-tasmin",
+ "gender": "masculine"
+ }
+ ],
+ "תסמינים": [
+ {
+ "word_nikkud": "תַּסְמִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7357-tasmin",
+ "gender": "masculine"
+ }
+ ],
+ "תסמין־": [
+ {
+ "word_nikkud": "תַּסְמִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7357-tasmin",
+ "gender": "masculine"
+ }
+ ],
+ "תסמיני־": [
+ {
+ "word_nikkud": "תַּסְמִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7357-tasmin",
+ "gender": "masculine"
+ }
+ ],
+ "מסמר": [
+ {
+ "word_nikkud": "מַסְמֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3102-masmer",
+ "gender": "masculine"
+ }
+ ],
+ "מסמרים": [
+ {
+ "word_nikkud": "מַסְמֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3102-masmer",
+ "gender": "masculine"
+ }
+ ],
+ "מסמר־": [
+ {
+ "word_nikkud": "מַסְמֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3102-masmer",
+ "gender": "masculine"
+ }
+ ],
+ "מסמרי־": [
+ {
+ "word_nikkud": "מַסְמֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3102-masmer",
+ "gender": "masculine"
+ }
+ ],
+ "סמרטוט": [
+ {
+ "word_nikkud": "סְמַרְטוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7448-smartut",
+ "gender": "masculine"
+ }
+ ],
+ "סמרטוטים": [
+ {
+ "word_nikkud": "סְמַרְטוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7448-smartut",
+ "gender": "masculine"
+ }
+ ],
+ "סמרטוט־": [
+ {
+ "word_nikkud": "סְמַרְטוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7448-smartut",
+ "gender": "masculine"
+ }
+ ],
+ "סמרטוטי־": [
+ {
+ "word_nikkud": "סְמַרְטוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7448-smartut",
+ "gender": "masculine"
+ }
+ ],
+ "סנאי": [
+ {
+ "word_nikkud": "סְנָאִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8790-snai",
+ "gender": "masculine"
+ }
+ ],
+ "סנאים": [
+ {
+ "word_nikkud": "סְנָאִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8790-snai",
+ "gender": "masculine"
+ }
+ ],
+ "סנאי־": [
+ {
+ "word_nikkud": "סְנָאִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8790-snai",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סְנָאִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8790-snai",
+ "gender": "masculine"
+ }
+ ],
+ "סנגור": [
+ {
+ "word_nikkud": "סִנְגּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8935-singur",
+ "gender": "masculine"
+ }
+ ],
+ "סנגורים": [
+ {
+ "word_nikkud": "סִנְגּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8935-singur",
+ "gender": "masculine"
+ }
+ ],
+ "סנגור־": [
+ {
+ "word_nikkud": "סִנְגּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8935-singur",
+ "gender": "masculine"
+ }
+ ],
+ "סנגורי־": [
+ {
+ "word_nikkud": "סִנְגּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8935-singur",
+ "gender": "masculine"
+ }
+ ],
+ "סנוורים": [
+ {
+ "word_nikkud": "סַנְוֵרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5384-sanverim",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִנְווּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5382-sinvur",
+ "gender": "masculine"
+ }
+ ],
+ "סנוורי־": [
+ {
+ "word_nikkud": "סַנְוֵרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5384-sanverim",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סִנְווּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5382-sinvur",
+ "gender": "masculine"
+ }
+ ],
+ "סנוור": [
+ {
+ "word_nikkud": "סִנְווּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5382-sinvur",
+ "gender": "masculine"
+ }
+ ],
+ "סנוור־": [
+ {
+ "word_nikkud": "סִנְווּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5382-sinvur",
+ "gender": "masculine"
+ }
+ ],
+ "הסתנוורות": [
+ {
+ "word_nikkud": "הִסְתַּנְוְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5383-histanverut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתנוורויות": [
+ {
+ "word_nikkud": "הִסְתַּנְוְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5383-histanverut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתנוורות־": [
+ {
+ "word_nikkud": "הִסְתַּנְוְרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5383-histanverut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתנוורויות־": [
+ {
+ "word_nikkud": "הִסְתַּנְוְרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5383-histanverut",
+ "gender": "feminine"
+ }
+ ],
+ "סנטר": [
+ {
+ "word_nikkud": "סַנְטֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5786-santer",
+ "gender": "masculine"
+ }
+ ],
+ "סנטרים": [
+ {
+ "word_nikkud": "סַנְטֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5786-santer",
+ "gender": "masculine"
+ }
+ ],
+ "סנטר־": [
+ {
+ "word_nikkud": "סַנְטֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5786-santer",
+ "gender": "masculine"
+ }
+ ],
+ "סנטרי־": [
+ {
+ "word_nikkud": "סַנְטֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5786-santer",
+ "gender": "masculine"
+ }
+ ],
+ "סנכרון": [
+ {
+ "word_nikkud": "סִנְכְּרוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6007-sinkrun",
+ "gender": "masculine"
+ }
+ ],
+ "סנכרונים": [
+ {
+ "word_nikkud": "סִנְכְּרוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6007-sinkrun",
+ "gender": "masculine"
+ }
+ ],
+ "סנכרון־": [
+ {
+ "word_nikkud": "סִנְכְּרוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6007-sinkrun",
+ "gender": "masculine"
+ }
+ ],
+ "סנכרוני־": [
+ {
+ "word_nikkud": "סִנְכְּרוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6007-sinkrun",
+ "gender": "masculine"
+ }
+ ],
+ "סינון": [
+ {
+ "word_nikkud": "סִנּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3928-sinun",
+ "gender": "masculine"
+ }
+ ],
+ "סינונים": [
+ {
+ "word_nikkud": "סִנּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3928-sinun",
+ "gender": "masculine"
+ }
+ ],
+ "סינון־": [
+ {
+ "word_nikkud": "סִנּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3928-sinun",
+ "gender": "masculine"
+ }
+ ],
+ "סינוני־": [
+ {
+ "word_nikkud": "סִנּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3928-sinun",
+ "gender": "masculine"
+ }
+ ],
+ "הסתננות": [
+ {
+ "word_nikkud": "הִסְתַּנְּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3862-histanenut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתננויות": [
+ {
+ "word_nikkud": "הִסְתַּנְּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3862-histanenut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתננות־": [
+ {
+ "word_nikkud": "הִסְתַּנְּנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3862-histanenut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתננויות־": [
+ {
+ "word_nikkud": "הִסְתַּנְּנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3862-histanenut",
+ "gender": "feminine"
+ }
+ ],
+ "מסנן": [
+ {
+ "word_nikkud": "מַסְנֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3510-masnen",
+ "gender": "masculine"
+ }
+ ],
+ "מסננים": [
+ {
+ "word_nikkud": "מַסְנֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3510-masnen",
+ "gender": "masculine"
+ }
+ ],
+ "מסנן־": [
+ {
+ "word_nikkud": "מַסְנֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3510-masnen",
+ "gender": "masculine"
+ }
+ ],
+ "מסנני־": [
+ {
+ "word_nikkud": "מַסְנֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3510-masnen",
+ "gender": "masculine"
+ }
+ ],
+ "תסנין": [
+ {
+ "word_nikkud": "תַּסְנִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5388-tasnin",
+ "gender": "masculine"
+ }
+ ],
+ "תסנינים": [
+ {
+ "word_nikkud": "תַּסְנִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5388-tasnin",
+ "gender": "masculine"
+ }
+ ],
+ "תסנין־": [
+ {
+ "word_nikkud": "תַּסְנִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5388-tasnin",
+ "gender": "masculine"
+ }
+ ],
+ "תסניני־": [
+ {
+ "word_nikkud": "תַּסְנִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5388-tasnin",
+ "gender": "masculine"
+ }
+ ],
+ "מסננת": [
+ {
+ "word_nikkud": "מִסְנֶנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6248-misnenet",
+ "gender": "feminine"
+ }
+ ],
+ "מסננות": [
+ {
+ "word_nikkud": "מִסְנֶנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6248-misnenet",
+ "gender": "feminine"
+ }
+ ],
+ "מסננת־": [
+ {
+ "word_nikkud": "מִסְנֶנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6248-misnenet",
+ "gender": "feminine"
+ }
+ ],
+ "מסננות־": [
+ {
+ "word_nikkud": "מִסְנֶנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6248-misnenet",
+ "gender": "feminine"
+ }
+ ],
+ "סניף": [
+ {
+ "word_nikkud": "סְנִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6706-snif",
+ "gender": "masculine"
+ }
+ ],
+ "סניפים": [
+ {
+ "word_nikkud": "סְנִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6706-snif",
+ "gender": "masculine"
+ }
+ ],
+ "סניף־": [
+ {
+ "word_nikkud": "סְנִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6706-snif",
+ "gender": "masculine"
+ }
+ ],
+ "סניפי־": [
+ {
+ "word_nikkud": "סְנִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6706-snif",
+ "gender": "masculine"
+ }
+ ],
+ "סנפיר": [
+ {
+ "word_nikkud": "סְנַפִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9261-snapir",
+ "gender": "masculine"
+ }
+ ],
+ "סנפירים": [
+ {
+ "word_nikkud": "סְנַפִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9261-snapir",
+ "gender": "masculine"
+ }
+ ],
+ "סנפיר־": [
+ {
+ "word_nikkud": "סְנַפִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9261-snapir",
+ "gender": "masculine"
+ }
+ ],
+ "סנפירי־": [
+ {
+ "word_nikkud": "סְנַפִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9261-snapir",
+ "gender": "masculine"
+ }
+ ],
+ "מסעדה": [
+ {
+ "word_nikkud": "מִסְעָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3570-misada",
+ "gender": "feminine"
+ }
+ ],
+ "מסעדות": [
+ {
+ "word_nikkud": "מִסְעָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3570-misada",
+ "gender": "feminine"
+ }
+ ],
+ "מסעדת־": [
+ {
+ "word_nikkud": "מִסְעָדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3570-misada",
+ "gender": "feminine"
+ }
+ ],
+ "מסעדות־": [
+ {
+ "word_nikkud": "מִסְעָדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3570-misada",
+ "gender": "feminine"
+ }
+ ],
+ "סעודה": [
+ {
+ "word_nikkud": "סְעוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4880-seuda",
+ "gender": "feminine"
+ }
+ ],
+ "סעודות": [
+ {
+ "word_nikkud": "סְעוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4880-seuda",
+ "gender": "feminine"
+ }
+ ],
+ "סעודת־": [
+ {
+ "word_nikkud": "סְעוּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4880-seuda",
+ "gender": "feminine"
+ }
+ ],
+ "סעודות־": [
+ {
+ "word_nikkud": "סְעוּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4880-seuda",
+ "gender": "feminine"
+ }
+ ],
+ "מסעדן": [
+ {
+ "word_nikkud": "מִסְעָדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8656-misadan",
+ "gender": "masculine"
+ }
+ ],
+ "מסעדנים": [
+ {
+ "word_nikkud": "מִסְעָדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8656-misadan",
+ "gender": "masculine"
+ }
+ ],
+ "מסעדן־": [
+ {
+ "word_nikkud": "מִסְעָדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8656-misadan",
+ "gender": "masculine"
+ }
+ ],
+ "מסעדני־": [
+ {
+ "word_nikkud": "מִסְעָדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8656-misadan",
+ "gender": "masculine"
+ }
+ ],
+ "סיעוד": [
+ {
+ "word_nikkud": "סִעוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6203-siud",
+ "gender": "masculine"
+ }
+ ],
+ "סיעודים": [
+ {
+ "word_nikkud": "סִעוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6203-siud",
+ "gender": "masculine"
+ }
+ ],
+ "סיעוד־": [
+ {
+ "word_nikkud": "סִעוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6203-siud",
+ "gender": "masculine"
+ }
+ ],
+ "סיעודי־": [
+ {
+ "word_nikkud": "סִעוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6203-siud",
+ "gender": "masculine"
+ }
+ ],
+ "סעיף": [
+ {
+ "word_nikkud": "סְעִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7499-seif",
+ "gender": "masculine"
+ }
+ ],
+ "סעיפים": [
+ {
+ "word_nikkud": "סְעִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7499-seif",
+ "gender": "masculine"
+ }
+ ],
+ "סעיף־": [
+ {
+ "word_nikkud": "סְעִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7499-seif",
+ "gender": "masculine"
+ }
+ ],
+ "סעיפי־": [
+ {
+ "word_nikkud": "סְעִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7499-seif",
+ "gender": "masculine"
+ }
+ ],
+ "הסתערות": [
+ {
+ "word_nikkud": "הִסְתַּעֲרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7356-histaarut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתערויות": [
+ {
+ "word_nikkud": "הִסְתַּעֲרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7356-histaarut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתערות־": [
+ {
+ "word_nikkud": "הִסְתַּעֲרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7356-histaarut",
+ "gender": "feminine"
+ }
+ ],
+ "הסתערויות־": [
+ {
+ "word_nikkud": "הִסְתַּעֲרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7356-histaarut",
+ "gender": "feminine"
+ }
+ ],
+ "סערה": [
+ {
+ "word_nikkud": "סְעָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3529-seara",
+ "gender": "feminine"
+ }
+ ],
+ "סערות": [
+ {
+ "word_nikkud": "סְעָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3529-seara",
+ "gender": "feminine"
+ }
+ ],
+ "סערת־": [
+ {
+ "word_nikkud": "סְעָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3529-seara",
+ "gender": "feminine"
+ }
+ ],
+ "סערות־": [
+ {
+ "word_nikkud": "סְעָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3529-seara",
+ "gender": "feminine"
+ }
+ ],
+ "יסעור": [
+ {
+ "word_nikkud": "יַסְעוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8335-yasur",
+ "gender": "masculine"
+ }
+ ],
+ "יסעורים": [
+ {
+ "word_nikkud": "יַסְעוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8335-yasur",
+ "gender": "masculine"
+ }
+ ],
+ "יסעור־": [
+ {
+ "word_nikkud": "יַסְעוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8335-yasur",
+ "gender": "masculine"
+ }
+ ],
+ "יסעורי־": [
+ {
+ "word_nikkud": "יַסְעוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8335-yasur",
+ "gender": "masculine"
+ }
+ ],
+ "מספוא": [
+ {
+ "word_nikkud": "מִסְפּוֹא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6815-mispo",
+ "gender": "masculine"
+ }
+ ],
+ "מספואים": [
+ {
+ "word_nikkud": "מִסְפּוֹא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6815-mispo",
+ "gender": "masculine"
+ }
+ ],
+ "מספוא־": [
+ {
+ "word_nikkud": "מִסְפּוֹא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6815-mispo",
+ "gender": "masculine"
+ }
+ ],
+ "מספואי־": [
+ {
+ "word_nikkud": "מִסְפּוֹא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6815-mispo",
+ "gender": "masculine"
+ }
+ ],
+ "ספיגה": [
+ {
+ "word_nikkud": "סְפִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7415-sfiga",
+ "gender": "feminine"
+ }
+ ],
+ "ספיגות": [
+ {
+ "word_nikkud": "סְפִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7415-sfiga",
+ "gender": "feminine"
+ }
+ ],
+ "ספיגת־": [
+ {
+ "word_nikkud": "סְפִיגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7415-sfiga",
+ "gender": "feminine"
+ }
+ ],
+ "ספיגות־": [
+ {
+ "word_nikkud": "סְפִיגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7415-sfiga",
+ "gender": "feminine"
+ }
+ ],
+ "סופגניה": [
+ {
+ "word_nikkud": "סֻפְגָּנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7043-sufganiya",
+ "gender": ""
+ }
+ ],
+ "סופגניות": [
+ {
+ "word_nikkud": "סֻפְגָּנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7043-sufganiya",
+ "gender": ""
+ }
+ ],
+ "סופגניית־": [
+ {
+ "word_nikkud": "סֻפְגָּנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7043-sufganiya",
+ "gender": ""
+ }
+ ],
+ "סופגניות־": [
+ {
+ "word_nikkud": "סֻפְגָּנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7043-sufganiya",
+ "gender": ""
+ }
+ ],
+ "ספוג": [
+ {
+ "word_nikkud": "סְפוֹג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9023-sfog",
+ "gender": "masculine"
+ }
+ ],
+ "ספוגים": [
+ {
+ "word_nikkud": "סְפוֹג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9023-sfog",
+ "gender": "masculine"
+ }
+ ],
+ "ספוג־": [
+ {
+ "word_nikkud": "סְפוֹג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9023-sfog",
+ "gender": "masculine"
+ }
+ ],
+ "ספוגי־": [
+ {
+ "word_nikkud": "סְפוֹג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9023-sfog",
+ "gender": "masculine"
+ }
+ ],
+ "ספה": [
+ {
+ "word_nikkud": "סַפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4866-sapa",
+ "gender": "feminine"
+ }
+ ],
+ "ספות": [
+ {
+ "word_nikkud": "סַפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4866-sapa",
+ "gender": "feminine"
+ }
+ ],
+ "ספת־": [
+ {
+ "word_nikkud": "סַפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4866-sapa",
+ "gender": "feminine"
+ }
+ ],
+ "ספות־": [
+ {
+ "word_nikkud": "סַפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4866-sapa",
+ "gender": "feminine"
+ }
+ ],
+ "ספורט": [
+ {
+ "word_nikkud": "סְפּוֹרְט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7894-sport",
+ "gender": "masculine"
+ }
+ ],
+ "ספורט־": [
+ {
+ "word_nikkud": "סְפּוֹרְט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7894-sport",
+ "gender": "masculine"
+ }
+ ],
+ "ספורטאי": [
+ {
+ "word_nikkud": "סְפּוֹרְטַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7895-sportay",
+ "gender": "masculine"
+ }
+ ],
+ "ספורטאים": [
+ {
+ "word_nikkud": "סְפּוֹרְטַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7895-sportay",
+ "gender": "masculine"
+ }
+ ],
+ "ספורטאי־": [
+ {
+ "word_nikkud": "סְפּוֹרְטַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7895-sportay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "סְפּוֹרְטַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7895-sportay",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוח": [
+ {
+ "word_nikkud": "סִפּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3832-sipuach",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוחים": [
+ {
+ "word_nikkud": "סִפּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3832-sipuach",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוח־": [
+ {
+ "word_nikkud": "סִפּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3832-sipuach",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוחי־": [
+ {
+ "word_nikkud": "סִפּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3832-sipuach",
+ "gender": "masculine"
+ }
+ ],
+ "ספח": [
+ {
+ "word_nikkud": "סֶפַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7550-sefach",
+ "gender": "masculine"
+ }
+ ],
+ "ספחים": [
+ {
+ "word_nikkud": "סֶפַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7550-sefach",
+ "gender": "masculine"
+ }
+ ],
+ "ספח־": [
+ {
+ "word_nikkud": "סֶפַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7550-sefach",
+ "gender": "masculine"
+ }
+ ],
+ "ספחי־": [
+ {
+ "word_nikkud": "סֶפַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7550-sefach",
+ "gender": "masculine"
+ }
+ ],
+ "נספח": [
+ {
+ "word_nikkud": "נִסְפָּח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8764-nispach",
+ "gender": "masculine"
+ }
+ ],
+ "נספחים": [
+ {
+ "word_nikkud": "נִסְפָּח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8764-nispach",
+ "gender": "masculine"
+ }
+ ],
+ "נספח־": [
+ {
+ "word_nikkud": "נִסְפָּח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8764-nispach",
+ "gender": "masculine"
+ }
+ ],
+ "נספחי־": [
+ {
+ "word_nikkud": "נִסְפָּח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8764-nispach",
+ "gender": "masculine"
+ }
+ ],
+ "ספיר": [
+ {
+ "word_nikkud": "סַפִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8041-sapir",
+ "gender": "masculine"
+ }
+ ],
+ "ספירים": [
+ {
+ "word_nikkud": "סַפִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8041-sapir",
+ "gender": "masculine"
+ }
+ ],
+ "ספיר־": [
+ {
+ "word_nikkud": "סַפִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8041-sapir",
+ "gender": "masculine"
+ }
+ ],
+ "ספירי־": [
+ {
+ "word_nikkud": "סַפִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8041-sapir",
+ "gender": "masculine"
+ }
+ ],
+ "ספל": [
+ {
+ "word_nikkud": "סֵפֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6142-sefel",
+ "gender": "masculine"
+ }
+ ],
+ "ספלים": [
+ {
+ "word_nikkud": "סֵפֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6142-sefel",
+ "gender": "masculine"
+ }
+ ],
+ "ספל־": [
+ {
+ "word_nikkud": "סֵפֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6142-sefel",
+ "gender": "masculine"
+ }
+ ],
+ "ספלי־": [
+ {
+ "word_nikkud": "סֵפֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6142-sefel",
+ "gender": "masculine"
+ }
+ ],
+ "ספנה": [
+ {
+ "word_nikkud": "סִפְנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4399-sifna",
+ "gender": "feminine"
+ }
+ ],
+ "ספנות": [
+ {
+ "word_nikkud": "סִפְנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4399-sifna",
+ "gender": "feminine"
+ }
+ ],
+ "ספנת־": [
+ {
+ "word_nikkud": "סִפְנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4399-sifna",
+ "gender": "feminine"
+ }
+ ],
+ "ספנות־": [
+ {
+ "word_nikkud": "סִפְנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4399-sifna",
+ "gender": "feminine"
+ }
+ ],
+ "ספן": [
+ {
+ "word_nikkud": "סַפָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4400-sapan",
+ "gender": "masculine"
+ }
+ ],
+ "ספנים": [
+ {
+ "word_nikkud": "סַפָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4400-sapan",
+ "gender": "masculine"
+ }
+ ],
+ "ספן־": [
+ {
+ "word_nikkud": "סַפָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4400-sapan",
+ "gender": "masculine"
+ }
+ ],
+ "ספני־": [
+ {
+ "word_nikkud": "סַפָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4400-sapan",
+ "gender": "masculine"
+ }
+ ],
+ "ספינה": [
+ {
+ "word_nikkud": "סְפִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6177-sfina",
+ "gender": "feminine"
+ }
+ ],
+ "ספינות": [
+ {
+ "word_nikkud": "סְפִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6177-sfina",
+ "gender": "feminine"
+ }
+ ],
+ "ספינת־": [
+ {
+ "word_nikkud": "סְפִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6177-sfina",
+ "gender": "feminine"
+ }
+ ],
+ "ספינות־": [
+ {
+ "word_nikkud": "סְפִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6177-sfina",
+ "gender": "feminine"
+ }
+ ],
+ "ספסל": [
+ {
+ "word_nikkud": "סַפְסָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6702-safsal",
+ "gender": ""
+ }
+ ],
+ "ספסלים": [
+ {
+ "word_nikkud": "סַפְסָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6702-safsal",
+ "gender": ""
+ }
+ ],
+ "ספסל־": [
+ {
+ "word_nikkud": "סַפְסָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6702-safsal",
+ "gender": ""
+ }
+ ],
+ "ספסלי־": [
+ {
+ "word_nikkud": "סַפְסָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6702-safsal",
+ "gender": ""
+ }
+ ],
+ "ספסר": [
+ {
+ "word_nikkud": "סַפְסָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4919-safsar",
+ "gender": "masculine"
+ }
+ ],
+ "ספסרים": [
+ {
+ "word_nikkud": "סַפְסָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4919-safsar",
+ "gender": "masculine"
+ }
+ ],
+ "ספסר־": [
+ {
+ "word_nikkud": "סַפְסָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4919-safsar",
+ "gender": "masculine"
+ }
+ ],
+ "ספסרי־": [
+ {
+ "word_nikkud": "סַפְסָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4919-safsar",
+ "gender": "masculine"
+ }
+ ],
+ "סף": [
+ {
+ "word_nikkud": "סַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4454-saf",
+ "gender": "masculine"
+ }
+ ],
+ "סיפים": [
+ {
+ "word_nikkud": "סַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4454-saf",
+ "gender": "masculine"
+ }
+ ],
+ "סף־": [
+ {
+ "word_nikkud": "סַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4454-saf",
+ "gender": "masculine"
+ }
+ ],
+ "סיפי־": [
+ {
+ "word_nikkud": "סַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4454-saf",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוק": [
+ {
+ "word_nikkud": "סִפּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7217-sipuk",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוקים": [
+ {
+ "word_nikkud": "סִפּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7217-sipuk",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוק־": [
+ {
+ "word_nikkud": "סִפּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7217-sipuk",
+ "gender": "masculine"
+ }
+ ],
+ "סיפוקי־": [
+ {
+ "word_nikkud": "סִפּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7217-sipuk",
+ "gender": "masculine"
+ }
+ ],
+ "ספיקה": [
+ {
+ "word_nikkud": "סְפִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5861-sfika",
+ "gender": "feminine"
+ }
+ ],
+ "ספיקות": [
+ {
+ "word_nikkud": "סְפִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5861-sfika",
+ "gender": "feminine"
+ }
+ ],
+ "ספיקת־": [
+ {
+ "word_nikkud": "סְפִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5861-sfika",
+ "gender": "feminine"
+ }
+ ],
+ "ספיקות־": [
+ {
+ "word_nikkud": "סְפִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5861-sfika",
+ "gender": "feminine"
+ }
+ ],
+ "ספק": [
+ {
+ "word_nikkud": "סָפֵק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3877-safek",
+ "gender": "masculine"
+ }
+ ],
+ "ספקות": [
+ {
+ "word_nikkud": "סָפֵק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3877-safek",
+ "gender": "masculine"
+ }
+ ],
+ "ספק־": [
+ {
+ "word_nikkud": "סָפֵק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3877-safek",
+ "gender": "masculine"
+ }
+ ],
+ "ספקות־": [
+ {
+ "word_nikkud": "סָפֵק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3877-safek",
+ "gender": "masculine"
+ }
+ ],
+ "הספקה": [
+ {
+ "word_nikkud": "הַסְפָּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4688-haspaka",
+ "gender": "feminine"
+ }
+ ],
+ "הספקות": [
+ {
+ "word_nikkud": "הַסְפָּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4688-haspaka",
+ "gender": "feminine"
+ }
+ ],
+ "הספקת־": [
+ {
+ "word_nikkud": "הַסְפָּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4688-haspaka",
+ "gender": "feminine"
+ }
+ ],
+ "הספקות־": [
+ {
+ "word_nikkud": "הַסְפָּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4688-haspaka",
+ "gender": "feminine"
+ }
+ ],
+ "אספקה": [
+ {
+ "word_nikkud": "אַסְפָּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4689-aspaka",
+ "gender": "feminine"
+ }
+ ],
+ "אספקות": [
+ {
+ "word_nikkud": "אַסְפָּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4689-aspaka",
+ "gender": "feminine"
+ }
+ ],
+ "אספקת־": [
+ {
+ "word_nikkud": "אַסְפָּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4689-aspaka",
+ "gender": "feminine"
+ }
+ ],
+ "אספקות־": [
+ {
+ "word_nikkud": "אַסְפָּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4689-aspaka",
+ "gender": "feminine"
+ }
+ ],
+ "ספרייה": [
+ {
+ "word_nikkud": "סִפְרִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5604-sifriya",
+ "gender": "feminine"
+ }
+ ],
+ "ספריות": [
+ {
+ "word_nikkud": "סִפְרִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5604-sifriya",
+ "gender": "feminine"
+ }
+ ],
+ "ספריית־": [
+ {
+ "word_nikkud": "סִפְרִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5604-sifriya",
+ "gender": "feminine"
+ }
+ ],
+ "ספריות־": [
+ {
+ "word_nikkud": "סִפְרִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5604-sifriya",
+ "gender": "feminine"
+ }
+ ],
+ "תספורת": [
+ {
+ "word_nikkud": "תִּסְפֹּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3255-tisporet",
+ "gender": "feminine"
+ }
+ ],
+ "תספורות": [
+ {
+ "word_nikkud": "תִּסְפֹּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3255-tisporet",
+ "gender": "feminine"
+ }
+ ],
+ "תספורת־": [
+ {
+ "word_nikkud": "תִּסְפֹּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3255-tisporet",
+ "gender": "feminine"
+ }
+ ],
+ "תספורות־": [
+ {
+ "word_nikkud": "תִּסְפֹּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3255-tisporet",
+ "gender": "feminine"
+ }
+ ],
+ "סיפור": [
+ {
+ "word_nikkud": "סִפּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2981-sipur",
+ "gender": "masculine"
+ }
+ ],
+ "סיפורים": [
+ {
+ "word_nikkud": "סִפּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2981-sipur",
+ "gender": "masculine"
+ }
+ ],
+ "סיפור־": [
+ {
+ "word_nikkud": "סִפּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2981-sipur",
+ "gender": "masculine"
+ }
+ ],
+ "סיפורי־": [
+ {
+ "word_nikkud": "סִפּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2981-sipur",
+ "gender": "masculine"
+ }
+ ],
+ "ספר": [
+ {
+ "word_nikkud": "סַפָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6105-sapar",
+ "gender": "masculine"
+ }
+ ],
+ "ספרים": [
+ {
+ "word_nikkud": "סַפָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6105-sapar",
+ "gender": "masculine"
+ }
+ ],
+ "ספר־": [
+ {
+ "word_nikkud": "סַפָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6105-sapar",
+ "gender": "masculine"
+ }
+ ],
+ "ספרי־": [
+ {
+ "word_nikkud": "סַפָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6105-sapar",
+ "gender": "masculine"
+ }
+ ],
+ "ספרה": [
+ {
+ "word_nikkud": "סִפְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3219-sifra",
+ "gender": "feminine"
+ }
+ ],
+ "ספרות": [
+ {
+ "word_nikkud": "סִפְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3219-sifra",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "סִפְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4440-sifrut",
+ "gender": "feminine"
+ }
+ ],
+ "ספרת־": [
+ {
+ "word_nikkud": "סִפְרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3219-sifra",
+ "gender": "feminine"
+ }
+ ],
+ "ספרות־": [
+ {
+ "word_nikkud": "סִפְרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3219-sifra",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "סִפְרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4440-sifrut",
+ "gender": "feminine"
+ }
+ ],
+ "מספרה": [
+ {
+ "word_nikkud": "מִסְפָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3571-mispara",
+ "gender": "feminine"
+ }
+ ],
+ "מספרות": [
+ {
+ "word_nikkud": "מִסְפָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3571-mispara",
+ "gender": "feminine"
+ }
+ ],
+ "מספרת־": [
+ {
+ "word_nikkud": "מִסְפָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3571-mispara",
+ "gender": "feminine"
+ }
+ ],
+ "מספרות־": [
+ {
+ "word_nikkud": "מִסְפָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3571-mispara",
+ "gender": "feminine"
+ }
+ ],
+ "מספר": [
+ {
+ "word_nikkud": "מִסְפָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4017-mispar",
+ "gender": "masculine"
+ }
+ ],
+ "מספרים": [
+ {
+ "word_nikkud": "מִסְפָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4017-mispar",
+ "gender": "masculine"
+ }
+ ],
+ "מספר־": [
+ {
+ "word_nikkud": "מִסְפָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4017-mispar",
+ "gender": "masculine"
+ }
+ ],
+ "מספרי־": [
+ {
+ "word_nikkud": "מִסְפָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4017-mispar",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "מִסְפָּרַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6217-misparayim",
+ "gender": "masculine"
+ }
+ ],
+ "ספרויות": [
+ {
+ "word_nikkud": "סִפְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4440-sifrut",
+ "gender": "feminine"
+ }
+ ],
+ "ספרויות־": [
+ {
+ "word_nikkud": "סִפְרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4440-sifrut",
+ "gender": "feminine"
+ }
+ ],
+ "ספירה": [
+ {
+ "word_nikkud": "סְפִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4794-sfira",
+ "gender": "feminine"
+ }
+ ],
+ "ספירות": [
+ {
+ "word_nikkud": "סְפִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4794-sfira",
+ "gender": "feminine"
+ }
+ ],
+ "ספירת־": [
+ {
+ "word_nikkud": "סְפִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4794-sfira",
+ "gender": "feminine"
+ }
+ ],
+ "ספירות־": [
+ {
+ "word_nikkud": "סְפִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4794-sfira",
+ "gender": "feminine"
+ }
+ ],
+ "ספרן": [
+ {
+ "word_nikkud": "סַפְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7843-safran",
+ "gender": "masculine"
+ }
+ ],
+ "ספרנים": [
+ {
+ "word_nikkud": "סַפְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7843-safran",
+ "gender": "masculine"
+ }
+ ],
+ "ספרן־": [
+ {
+ "word_nikkud": "סַפְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7843-safran",
+ "gender": "masculine"
+ }
+ ],
+ "ספרני־": [
+ {
+ "word_nikkud": "סַפְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7843-safran",
+ "gender": "masculine"
+ }
+ ],
+ "מספריים": [
+ {
+ "word_nikkud": "מִסְפָּרַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6217-misparayim",
+ "gender": "masculine"
+ }
+ ],
+ "סופר": [
+ {
+ "word_nikkud": "סוֹפֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7163-sofer",
+ "gender": "masculine"
+ }
+ ],
+ "סופרים": [
+ {
+ "word_nikkud": "סוֹפֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7163-sofer",
+ "gender": "masculine"
+ }
+ ],
+ "סופר־": [
+ {
+ "word_nikkud": "סוֹפֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7163-sofer",
+ "gender": "masculine"
+ }
+ ],
+ "סופרי־": [
+ {
+ "word_nikkud": "סוֹפֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7163-sofer",
+ "gender": "masculine"
+ }
+ ],
+ "ספרד": [
+ {
+ "word_nikkud": "סְפָרַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5372-sfarad",
+ "gender": "masculine"
+ }
+ ],
+ "ספרון": [
+ {
+ "word_nikkud": "סִפְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7836-sifron",
+ "gender": "masculine"
+ }
+ ],
+ "ספרונים": [
+ {
+ "word_nikkud": "סִפְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7836-sifron",
+ "gender": "masculine"
+ }
+ ],
+ "ספרון־": [
+ {
+ "word_nikkud": "סִפְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7836-sifron",
+ "gender": "masculine"
+ }
+ ],
+ "ספרוני־": [
+ {
+ "word_nikkud": "סִפְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7836-sifron",
+ "gender": "masculine"
+ }
+ ],
+ "סצנה": [
+ {
+ "word_nikkud": "סְצֶנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8444-stzena",
+ "gender": ""
+ }
+ ],
+ "סצנות": [
+ {
+ "word_nikkud": "סְצֶנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8444-stzena",
+ "gender": ""
+ }
+ ],
+ "סצנת־": [
+ {
+ "word_nikkud": "סְצֶנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8444-stzena",
+ "gender": ""
+ }
+ ],
+ "סצנות־": [
+ {
+ "word_nikkud": "סְצֶנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8444-stzena",
+ "gender": ""
+ }
+ ],
+ "סקילה": [
+ {
+ "word_nikkud": "סְקִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5246-skila",
+ "gender": "feminine"
+ }
+ ],
+ "סקילות": [
+ {
+ "word_nikkud": "סְקִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5246-skila",
+ "gender": "feminine"
+ }
+ ],
+ "סקילת־": [
+ {
+ "word_nikkud": "סְקִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5246-skila",
+ "gender": "feminine"
+ }
+ ],
+ "סקילות־": [
+ {
+ "word_nikkud": "סְקִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5246-skila",
+ "gender": "feminine"
+ }
+ ],
+ "סקר": [
+ {
+ "word_nikkud": "סֶקֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5104-seker",
+ "gender": "masculine"
+ }
+ ],
+ "סקרים": [
+ {
+ "word_nikkud": "סֶקֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5104-seker",
+ "gender": "masculine"
+ }
+ ],
+ "סקר־": [
+ {
+ "word_nikkud": "סֶקֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5104-seker",
+ "gender": "masculine"
+ }
+ ],
+ "סקרי־": [
+ {
+ "word_nikkud": "סֶקֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5104-seker",
+ "gender": "masculine"
+ }
+ ],
+ "סקירה": [
+ {
+ "word_nikkud": "סְקִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8341-skira",
+ "gender": "feminine"
+ }
+ ],
+ "סקירות": [
+ {
+ "word_nikkud": "סְקִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8341-skira",
+ "gender": "feminine"
+ }
+ ],
+ "סקירת־": [
+ {
+ "word_nikkud": "סְקִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8341-skira",
+ "gender": "feminine"
+ }
+ ],
+ "סקירות־": [
+ {
+ "word_nikkud": "סְקִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8341-skira",
+ "gender": "feminine"
+ }
+ ],
+ "סירוב": [
+ {
+ "word_nikkud": "סֵרוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8516-seruv",
+ "gender": "masculine"
+ }
+ ],
+ "סירובים": [
+ {
+ "word_nikkud": "סֵרוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8516-seruv",
+ "gender": "masculine"
+ }
+ ],
+ "סירוב־": [
+ {
+ "word_nikkud": "סֵרוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8516-seruv",
+ "gender": "masculine"
+ }
+ ],
+ "סירובי־": [
+ {
+ "word_nikkud": "סֵרוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8516-seruv",
+ "gender": "masculine"
+ }
+ ],
+ "מסרגה": [
+ {
+ "word_nikkud": "מַסְרֵגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7722-masrega",
+ "gender": "feminine"
+ }
+ ],
+ "מסרגות": [
+ {
+ "word_nikkud": "מַסְרֵגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7722-masrega",
+ "gender": "feminine"
+ }
+ ],
+ "מסרגת־": [
+ {
+ "word_nikkud": "מַסְרֵגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7722-masrega",
+ "gender": "feminine"
+ }
+ ],
+ "מסרגות־": [
+ {
+ "word_nikkud": "מַסְרֵגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7722-masrega",
+ "gender": "feminine"
+ }
+ ],
+ "סריגה": [
+ {
+ "word_nikkud": "סְרִיגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7823-sriga",
+ "gender": "feminine"
+ }
+ ],
+ "סריגת־": [
+ {
+ "word_nikkud": "סְרִיגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7823-sriga",
+ "gender": "feminine"
+ }
+ ],
+ "סרגל": [
+ {
+ "word_nikkud": "סַרְגֵּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6543-sargel",
+ "gender": ""
+ }
+ ],
+ "סרגלים": [
+ {
+ "word_nikkud": "סַרְגֵּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6543-sargel",
+ "gender": ""
+ }
+ ],
+ "סרגל־": [
+ {
+ "word_nikkud": "סַרְגֵּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6543-sargel",
+ "gender": ""
+ }
+ ],
+ "סרגלי־": [
+ {
+ "word_nikkud": "סַרְגֵּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6543-sargel",
+ "gender": ""
+ }
+ ],
+ "סירחון": [
+ {
+ "word_nikkud": "סֵרָחוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3876-serachon",
+ "gender": "masculine"
+ }
+ ],
+ "סירחונות": [
+ {
+ "word_nikkud": "סֵרָחוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3876-serachon",
+ "gender": "masculine"
+ }
+ ],
+ "סירחון־": [
+ {
+ "word_nikkud": "סֵרָחוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3876-serachon",
+ "gender": "masculine"
+ }
+ ],
+ "סירחונות־": [
+ {
+ "word_nikkud": "סֵרָחוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3876-serachon",
+ "gender": "masculine"
+ }
+ ],
+ "הסרטה": [
+ {
+ "word_nikkud": "הַסְרָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2895-hasrata",
+ "gender": "feminine"
+ }
+ ],
+ "הסרטת־": [
+ {
+ "word_nikkud": "הַסְרָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2895-hasrata",
+ "gender": "feminine"
+ }
+ ],
+ "סרט": [
+ {
+ "word_nikkud": "סֶרֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3122-seret",
+ "gender": "masculine"
+ }
+ ],
+ "סרטים": [
+ {
+ "word_nikkud": "סֶרֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3122-seret",
+ "gender": "masculine"
+ }
+ ],
+ "סרט־": [
+ {
+ "word_nikkud": "סֶרֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3122-seret",
+ "gender": "masculine"
+ }
+ ],
+ "סרטי־": [
+ {
+ "word_nikkud": "סֶרֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3122-seret",
+ "gender": "masculine"
+ }
+ ],
+ "מסרטה": [
+ {
+ "word_nikkud": "מַסְרֵטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3559-masreta",
+ "gender": "feminine"
+ }
+ ],
+ "מסרטות": [
+ {
+ "word_nikkud": "מַסְרֵטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3559-masreta",
+ "gender": "feminine"
+ }
+ ],
+ "מסרטת־": [
+ {
+ "word_nikkud": "מַסְרֵטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3559-masreta",
+ "gender": "feminine"
+ }
+ ],
+ "מסרטות־": [
+ {
+ "word_nikkud": "מַסְרֵטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3559-masreta",
+ "gender": "feminine"
+ }
+ ],
+ "תסריט": [
+ {
+ "word_nikkud": "תַּסְרִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3613-tasrit",
+ "gender": "masculine"
+ }
+ ],
+ "תסריטים": [
+ {
+ "word_nikkud": "תַּסְרִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3613-tasrit",
+ "gender": "masculine"
+ }
+ ],
+ "תסריט־": [
+ {
+ "word_nikkud": "תַּסְרִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3613-tasrit",
+ "gender": "masculine"
+ }
+ ],
+ "תסריטי־": [
+ {
+ "word_nikkud": "תַּסְרִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3613-tasrit",
+ "gender": "masculine"
+ }
+ ],
+ "סרטן": [
+ {
+ "word_nikkud": "סַרְטָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8538-sartan",
+ "gender": ""
+ }
+ ],
+ "סרטנים": [
+ {
+ "word_nikkud": "סַרְטָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8538-sartan",
+ "gender": ""
+ }
+ ],
+ "סרטן־": [
+ {
+ "word_nikkud": "סַרְטָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8538-sartan",
+ "gender": ""
+ }
+ ],
+ "סרטני־": [
+ {
+ "word_nikkud": "סַרְטָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8538-sartan",
+ "gender": ""
+ }
+ ],
+ "תסריטאי": [
+ {
+ "word_nikkud": "תַּסְרִיטַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9246-tasritay",
+ "gender": "masculine"
+ }
+ ],
+ "תסריטאים": [
+ {
+ "word_nikkud": "תַּסְרִיטַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9246-tasritay",
+ "gender": "masculine"
+ }
+ ],
+ "תסריטאי־": [
+ {
+ "word_nikkud": "תַּסְרִיטַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9246-tasritay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תַּסְרִיטַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9246-tasritay",
+ "gender": "masculine"
+ }
+ ],
+ "סרטון": [
+ {
+ "word_nikkud": "סִרְטוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7227-sirtun",
+ "gender": "masculine"
+ }
+ ],
+ "סרטונים": [
+ {
+ "word_nikkud": "סִרְטוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7227-sirtun",
+ "gender": "masculine"
+ }
+ ],
+ "סרטון־": [
+ {
+ "word_nikkud": "סִרְטוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7227-sirtun",
+ "gender": "masculine"
+ }
+ ],
+ "סרטוני־": [
+ {
+ "word_nikkud": "סִרְטוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7227-sirtun",
+ "gender": "masculine"
+ }
+ ],
+ "סרן": [
+ {
+ "word_nikkud": "סֶרֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6487-seren",
+ "gender": "masculine"
+ }
+ ],
+ "סרנים": [
+ {
+ "word_nikkud": "סֶרֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6487-seren",
+ "gender": "masculine"
+ }
+ ],
+ "סרן־": [
+ {
+ "word_nikkud": "סֶרֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6487-seren",
+ "gender": "masculine"
+ }
+ ],
+ "סרני־": [
+ {
+ "word_nikkud": "סֶרֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6487-seren",
+ "gender": "masculine"
+ }
+ ],
+ "סריס": [
+ {
+ "word_nikkud": "סָרִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5182-saris",
+ "gender": "masculine"
+ }
+ ],
+ "סריסים": [
+ {
+ "word_nikkud": "סָרִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5182-saris",
+ "gender": "masculine"
+ }
+ ],
+ "סריס־": [
+ {
+ "word_nikkud": "סָרִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5182-saris",
+ "gender": "masculine"
+ }
+ ],
+ "סריסי־": [
+ {
+ "word_nikkud": "סָרִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5182-saris",
+ "gender": "masculine"
+ }
+ ],
+ "סירוס": [
+ {
+ "word_nikkud": "סֵרוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9031-serus",
+ "gender": "masculine"
+ }
+ ],
+ "סירוסים": [
+ {
+ "word_nikkud": "סֵרוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9031-serus",
+ "gender": "masculine"
+ }
+ ],
+ "סירוס־": [
+ {
+ "word_nikkud": "סֵרוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9031-serus",
+ "gender": "masculine"
+ }
+ ],
+ "סירוסי־": [
+ {
+ "word_nikkud": "סֵרוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9031-serus",
+ "gender": "masculine"
+ }
+ ],
+ "סרעפת": [
+ {
+ "word_nikkud": "סַרְעֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6704-sarefet",
+ "gender": "feminine"
+ }
+ ],
+ "סרעפות": [
+ {
+ "word_nikkud": "סַרְעֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6704-sarefet",
+ "gender": "feminine"
+ }
+ ],
+ "סרעפת־": [
+ {
+ "word_nikkud": "סַרְעֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6704-sarefet",
+ "gender": "feminine"
+ }
+ ],
+ "סרעפות־": [
+ {
+ "word_nikkud": "סַרְעֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6704-sarefet",
+ "gender": "feminine"
+ }
+ ],
+ "סרפד": [
+ {
+ "word_nikkud": "סִרְפָּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8016-sirpad",
+ "gender": ""
+ }
+ ],
+ "סרפדים": [
+ {
+ "word_nikkud": "סִרְפָּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8016-sirpad",
+ "gender": ""
+ }
+ ],
+ "סרפד־": [
+ {
+ "word_nikkud": "סִרְפָּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8016-sirpad",
+ "gender": ""
+ }
+ ],
+ "סרפדי־": [
+ {
+ "word_nikkud": "סִרְפָּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8016-sirpad",
+ "gender": ""
+ }
+ ],
+ "סריקה": [
+ {
+ "word_nikkud": "סְרִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5699-srika",
+ "gender": "feminine"
+ }
+ ],
+ "סריקות": [
+ {
+ "word_nikkud": "סְרִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5699-srika",
+ "gender": "feminine"
+ }
+ ],
+ "סריקת־": [
+ {
+ "word_nikkud": "סְרִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5699-srika",
+ "gender": "feminine"
+ }
+ ],
+ "סריקות־": [
+ {
+ "word_nikkud": "סְרִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5699-srika",
+ "gender": "feminine"
+ }
+ ],
+ "תסרוקת": [
+ {
+ "word_nikkud": "תִּסְרֹקֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3256-tisroket",
+ "gender": "feminine"
+ }
+ ],
+ "תסרוקות": [
+ {
+ "word_nikkud": "תִּסְרֹקֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3256-tisroket",
+ "gender": "feminine"
+ }
+ ],
+ "תסרוקת־": [
+ {
+ "word_nikkud": "תִּסְרֹקֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3256-tisroket",
+ "gender": "feminine"
+ }
+ ],
+ "תסרוקות־": [
+ {
+ "word_nikkud": "תִּסְרֹקֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3256-tisroket",
+ "gender": "feminine"
+ }
+ ],
+ "מסרק": [
+ {
+ "word_nikkud": "מַסְרֵק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3511-masrek",
+ "gender": "masculine"
+ }
+ ],
+ "מסרקים": [
+ {
+ "word_nikkud": "מַסְרֵק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3511-masrek",
+ "gender": "masculine"
+ }
+ ],
+ "מסרק־": [
+ {
+ "word_nikkud": "מַסְרֵק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3511-masrek",
+ "gender": "masculine"
+ }
+ ],
+ "מסרקי־": [
+ {
+ "word_nikkud": "מַסְרֵק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3511-masrek",
+ "gender": "masculine"
+ }
+ ],
+ "סרק": [
+ {
+ "word_nikkud": "סְרָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5982-srak",
+ "gender": ""
+ }
+ ],
+ "סרק־": [
+ {
+ "word_nikkud": "סְרָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5982-srak",
+ "gender": ""
+ }
+ ],
+ "סתיו": [
+ {
+ "word_nikkud": "סְתָו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5145-stav",
+ "gender": ""
+ }
+ ],
+ "סתיווים": [
+ {
+ "word_nikkud": "סְתָו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5145-stav",
+ "gender": ""
+ }
+ ],
+ "סתו־": [
+ {
+ "word_nikkud": "סְתָו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5145-stav",
+ "gender": ""
+ }
+ ],
+ "סתיווי־": [
+ {
+ "word_nikkud": "סְתָו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5145-stav",
+ "gender": ""
+ }
+ ],
+ "סתימה": [
+ {
+ "word_nikkud": "סְתִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6640-stima",
+ "gender": "feminine"
+ }
+ ],
+ "סתימות": [
+ {
+ "word_nikkud": "סְתִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6640-stima",
+ "gender": "feminine"
+ }
+ ],
+ "סתימת־": [
+ {
+ "word_nikkud": "סְתִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6640-stima",
+ "gender": "feminine"
+ }
+ ],
+ "סתימות־": [
+ {
+ "word_nikkud": "סְתִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6640-stima",
+ "gender": "feminine"
+ }
+ ],
+ "מסתור": [
+ {
+ "word_nikkud": "מִסְתּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3633-mistor",
+ "gender": "masculine"
+ }
+ ],
+ "מסתורים": [
+ {
+ "word_nikkud": "מִסְתּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3633-mistor",
+ "gender": "masculine"
+ }
+ ],
+ "מסתור־": [
+ {
+ "word_nikkud": "מִסְתּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3633-mistor",
+ "gender": "masculine"
+ }
+ ],
+ "מסתורי־": [
+ {
+ "word_nikkud": "מִסְתּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3633-mistor",
+ "gender": "masculine"
+ }
+ ],
+ "סתירה": [
+ {
+ "word_nikkud": "סְתִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4168-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סתירות": [
+ {
+ "word_nikkud": "סְתִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4168-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סתירת־": [
+ {
+ "word_nikkud": "סְתִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4168-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סתירות־": [
+ {
+ "word_nikkud": "סְתִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4168-stira",
+ "gender": "feminine"
+ }
+ ],
+ "סתר": [
+ {
+ "word_nikkud": "סֵתֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8431-seter",
+ "gender": "masculine"
+ }
+ ],
+ "סתרים": [
+ {
+ "word_nikkud": "סֵתֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8431-seter",
+ "gender": "masculine"
+ }
+ ],
+ "סתר־": [
+ {
+ "word_nikkud": "סֵתֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8431-seter",
+ "gender": "masculine"
+ }
+ ],
+ "סתרי־": [
+ {
+ "word_nikkud": "סֵתֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8431-seter",
+ "gender": "masculine"
+ }
+ ],
+ "עובדה": [
+ {
+ "word_nikkud": "עֻבְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3241-uvda",
+ "gender": "feminine"
+ }
+ ],
+ "עובדות": [
+ {
+ "word_nikkud": "עֻבְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3241-uvda",
+ "gender": "feminine"
+ }
+ ],
+ "עובדת־": [
+ {
+ "word_nikkud": "עֻבְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3241-uvda",
+ "gender": "feminine"
+ }
+ ],
+ "עובדות־": [
+ {
+ "word_nikkud": "עֻבְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3241-uvda",
+ "gender": "feminine"
+ }
+ ],
+ "עיבוד": [
+ {
+ "word_nikkud": "עִבּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3142-ibud",
+ "gender": "masculine"
+ }
+ ],
+ "עיבוד־": [
+ {
+ "word_nikkud": "עִבּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3142-ibud",
+ "gender": "masculine"
+ }
+ ],
+ "עבודה": [
+ {
+ "word_nikkud": "עֲבוֹדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3140-avoda",
+ "gender": "feminine"
+ }
+ ],
+ "עבודות": [
+ {
+ "word_nikkud": "עֲבוֹדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3140-avoda",
+ "gender": "feminine"
+ }
+ ],
+ "עבודת־": [
+ {
+ "word_nikkud": "עֲבוֹדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3140-avoda",
+ "gender": "feminine"
+ }
+ ],
+ "עבודות־": [
+ {
+ "word_nikkud": "עֲבוֹדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3140-avoda",
+ "gender": "feminine"
+ }
+ ],
+ "עבד": [
+ {
+ "word_nikkud": "עֶבֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3141-eved",
+ "gender": "masculine"
+ }
+ ],
+ "עבדים": [
+ {
+ "word_nikkud": "עֶבֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3141-eved",
+ "gender": "masculine"
+ }
+ ],
+ "עבד־": [
+ {
+ "word_nikkud": "עֶבֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3141-eved",
+ "gender": "masculine"
+ }
+ ],
+ "עבדי־": [
+ {
+ "word_nikkud": "עֶבֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3141-eved",
+ "gender": "masculine"
+ }
+ ],
+ "עבדות": [
+ {
+ "word_nikkud": "עַבְדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3648-avdut",
+ "gender": "feminine"
+ }
+ ],
+ "עבדות־": [
+ {
+ "word_nikkud": "עַבְדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3648-avdut",
+ "gender": "feminine"
+ }
+ ],
+ "מעבדה": [
+ {
+ "word_nikkud": "מַעְבָּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3146-maabada",
+ "gender": "feminine"
+ }
+ ],
+ "מעבדת־": [
+ {
+ "word_nikkud": "מַעְבָּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3146-maabada",
+ "gender": "feminine"
+ }
+ ],
+ "עובי": [
+ {
+ "word_nikkud": "עֹבִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7434-ovi",
+ "gender": "masculine"
+ }
+ ],
+ "עוביים": [
+ {
+ "word_nikkud": "עֹבִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7434-ovi",
+ "gender": "masculine"
+ }
+ ],
+ "עובי־": [
+ {
+ "word_nikkud": "עֹבִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7434-ovi",
+ "gender": "masculine"
+ }
+ ],
+ "עוביי־": [
+ {
+ "word_nikkud": "עֹבִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7434-ovi",
+ "gender": "masculine"
+ }
+ ],
+ "עבר": [
+ {
+ "word_nikkud": "עָבָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6138-avar",
+ "gender": "masculine"
+ }
+ ],
+ "עבר־": [
+ {
+ "word_nikkud": "עָבָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6138-avar",
+ "gender": "masculine"
+ }
+ ],
+ "מעבורת": [
+ {
+ "word_nikkud": "מַעְבֹּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6447-maaboret",
+ "gender": "feminine"
+ }
+ ],
+ "מעבורות": [
+ {
+ "word_nikkud": "מַעְבֹּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6447-maaboret",
+ "gender": "feminine"
+ }
+ ],
+ "מעבורת־": [
+ {
+ "word_nikkud": "מַעְבֹּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6447-maaboret",
+ "gender": "feminine"
+ }
+ ],
+ "מעבורות־": [
+ {
+ "word_nikkud": "מַעְבֹּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6447-maaboret",
+ "gender": "feminine"
+ }
+ ],
+ "עבריין": [
+ {
+ "word_nikkud": "עֲבַרְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4663-avaryan",
+ "gender": ""
+ }
+ ],
+ "עבריינים": [
+ {
+ "word_nikkud": "עֲבַרְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4663-avaryan",
+ "gender": ""
+ }
+ ],
+ "עבריין־": [
+ {
+ "word_nikkud": "עֲבַרְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4663-avaryan",
+ "gender": ""
+ }
+ ],
+ "עברייני־": [
+ {
+ "word_nikkud": "עֲבַרְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4663-avaryan",
+ "gender": ""
+ }
+ ],
+ "מעבר": [
+ {
+ "word_nikkud": "מַעֲבָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4355-maavar",
+ "gender": "masculine"
+ }
+ ],
+ "מעברים": [
+ {
+ "word_nikkud": "מַעֲבָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4355-maavar",
+ "gender": "masculine"
+ }
+ ],
+ "מעבר־": [
+ {
+ "word_nikkud": "מַעֲבָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4355-maavar",
+ "gender": "masculine"
+ }
+ ],
+ "מעברי־": [
+ {
+ "word_nikkud": "מַעֲבָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4355-maavar",
+ "gender": "masculine"
+ }
+ ],
+ "עבירה": [
+ {
+ "word_nikkud": "עֲבִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7446-avira",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֲבֵרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7447-avera",
+ "gender": "feminine"
+ }
+ ],
+ "עבירות": [
+ {
+ "word_nikkud": "עֲבִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7446-avira",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֲבֵרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7447-avera",
+ "gender": "feminine"
+ }
+ ],
+ "עבירת־": [
+ {
+ "word_nikkud": "עֲבִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7446-avira",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֲבֵרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7447-avera",
+ "gender": "feminine"
+ }
+ ],
+ "עבירות־": [
+ {
+ "word_nikkud": "עֲבִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7446-avira",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֲבֵרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7447-avera",
+ "gender": "feminine"
+ }
+ ],
+ "מעברה": [
+ {
+ "word_nikkud": "מַעְבָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8820-maabara",
+ "gender": "feminine"
+ }
+ ],
+ "מעברות": [
+ {
+ "word_nikkud": "מַעְבָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8820-maabara",
+ "gender": "feminine"
+ }
+ ],
+ "מעברת־": [
+ {
+ "word_nikkud": "מַעְבָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8820-maabara",
+ "gender": "feminine"
+ }
+ ],
+ "מעברות־": [
+ {
+ "word_nikkud": "מַעְבָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8820-maabara",
+ "gender": "feminine"
+ }
+ ],
+ "העברה": [
+ {
+ "word_nikkud": "הַעֲבָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8736-haavara",
+ "gender": "feminine"
+ }
+ ],
+ "העברות": [
+ {
+ "word_nikkud": "הַעֲבָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8736-haavara",
+ "gender": "feminine"
+ }
+ ],
+ "העברת־": [
+ {
+ "word_nikkud": "הַעֲבָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8736-haavara",
+ "gender": "feminine"
+ }
+ ],
+ "העברות־": [
+ {
+ "word_nikkud": "הַעֲבָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8736-haavara",
+ "gender": "feminine"
+ }
+ ],
+ "תעבורה": [
+ {
+ "word_nikkud": "תַּעֲבוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9056-taavura",
+ "gender": "feminine"
+ }
+ ],
+ "תעבורות": [
+ {
+ "word_nikkud": "תַּעֲבוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9056-taavura",
+ "gender": "feminine"
+ }
+ ],
+ "תעבורת־": [
+ {
+ "word_nikkud": "תַּעֲבוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9056-taavura",
+ "gender": "feminine"
+ }
+ ],
+ "תעבורות־": [
+ {
+ "word_nikkud": "תַּעֲבוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9056-taavura",
+ "gender": "feminine"
+ }
+ ],
+ "מעברון": [
+ {
+ "word_nikkud": "מַעֲבָרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7273-maavaron",
+ "gender": "masculine"
+ }
+ ],
+ "מעברונים": [
+ {
+ "word_nikkud": "מַעֲבָרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7273-maavaron",
+ "gender": "masculine"
+ }
+ ],
+ "מעברון־": [
+ {
+ "word_nikkud": "מַעֲבָרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7273-maavaron",
+ "gender": "masculine"
+ }
+ ],
+ "מעברוני־": [
+ {
+ "word_nikkud": "מַעֲבָרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7273-maavaron",
+ "gender": "masculine"
+ }
+ ],
+ "עובש": [
+ {
+ "word_nikkud": "עֹבֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7649-ovesh",
+ "gender": "masculine"
+ }
+ ],
+ "עובשים": [
+ {
+ "word_nikkud": "עֹבֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7649-ovesh",
+ "gender": "masculine"
+ }
+ ],
+ "עובש־": [
+ {
+ "word_nikkud": "עֹבֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7649-ovesh",
+ "gender": "masculine"
+ }
+ ],
+ "עובשי־": [
+ {
+ "word_nikkud": "עֹבֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7649-ovesh",
+ "gender": "masculine"
+ }
+ ],
+ "עגבנייה": [
+ {
+ "word_nikkud": "עַגְבָנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7522-agvaniya",
+ "gender": "feminine"
+ }
+ ],
+ "עגבנייות": [
+ {
+ "word_nikkud": "עַגְבָנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7522-agvaniya",
+ "gender": "feminine"
+ }
+ ],
+ "עגבניית־": [
+ {
+ "word_nikkud": "עַגְבָנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7522-agvaniya",
+ "gender": "feminine"
+ }
+ ],
+ "עגבנייות־": [
+ {
+ "word_nikkud": "עַגְבָנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7522-agvaniya",
+ "gender": "feminine"
+ }
+ ],
+ "עגבת": [
+ {
+ "word_nikkud": "עַגֶּבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3295-agevet",
+ "gender": "feminine"
+ }
+ ],
+ "עגבת־": [
+ {
+ "word_nikkud": "עַגֶּבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3295-agevet",
+ "gender": "feminine"
+ }
+ ],
+ "עגה": [
+ {
+ "word_nikkud": "עָגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4930-aga",
+ "gender": "feminine"
+ }
+ ],
+ "עגות": [
+ {
+ "word_nikkud": "עָגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4930-aga",
+ "gender": "feminine"
+ }
+ ],
+ "עגת־": [
+ {
+ "word_nikkud": "עָגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4930-aga",
+ "gender": "feminine"
+ }
+ ],
+ "עגות־": [
+ {
+ "word_nikkud": "עָגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4930-aga",
+ "gender": "feminine"
+ }
+ ],
+ "עגור": [
+ {
+ "word_nikkud": "עָגוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7972-agur",
+ "gender": ""
+ }
+ ],
+ "עגורים": [
+ {
+ "word_nikkud": "עָגוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7972-agur",
+ "gender": ""
+ }
+ ],
+ "עגור־": [
+ {
+ "word_nikkud": "עָגוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7972-agur",
+ "gender": ""
+ }
+ ],
+ "עגורי־": [
+ {
+ "word_nikkud": "עָגוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7972-agur",
+ "gender": ""
+ }
+ ],
+ "עיגול": [
+ {
+ "word_nikkud": "עִגּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2982-igul",
+ "gender": "masculine"
+ }
+ ],
+ "עיגולים": [
+ {
+ "word_nikkud": "עִגּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2982-igul",
+ "gender": "masculine"
+ }
+ ],
+ "עיגול־": [
+ {
+ "word_nikkud": "עִגּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2982-igul",
+ "gender": "masculine"
+ }
+ ],
+ "עיגולי־": [
+ {
+ "word_nikkud": "עִגּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2982-igul",
+ "gender": "masculine"
+ }
+ ],
+ "עגל": [
+ {
+ "word_nikkud": "עֶגֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7593-egel",
+ "gender": "masculine"
+ }
+ ],
+ "עגלים": [
+ {
+ "word_nikkud": "עֶגֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7593-egel",
+ "gender": "masculine"
+ }
+ ],
+ "עגל־": [
+ {
+ "word_nikkud": "עֶגֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7593-egel",
+ "gender": "masculine"
+ }
+ ],
+ "עגלי־": [
+ {
+ "word_nikkud": "עֶגֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7593-egel",
+ "gender": "masculine"
+ }
+ ],
+ "מעגל": [
+ {
+ "word_nikkud": "מַעֲגָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8670-maagal",
+ "gender": "masculine"
+ }
+ ],
+ "מעגלים": [
+ {
+ "word_nikkud": "מַעֲגָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8670-maagal",
+ "gender": "masculine"
+ }
+ ],
+ "מעגל־": [
+ {
+ "word_nikkud": "מַעֲגָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8670-maagal",
+ "gender": "masculine"
+ }
+ ],
+ "מעגלי־": [
+ {
+ "word_nikkud": "מַעֲגָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8670-maagal",
+ "gender": "masculine"
+ }
+ ],
+ "עגלה": [
+ {
+ "word_nikkud": "עֶגְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7239-egla",
+ "gender": "feminine"
+ }
+ ],
+ "עגלות": [
+ {
+ "word_nikkud": "עֶגְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7239-egla",
+ "gender": "feminine"
+ }
+ ],
+ "עגלת־": [
+ {
+ "word_nikkud": "עֶגְלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7239-egla",
+ "gender": "feminine"
+ }
+ ],
+ "עגלות־": [
+ {
+ "word_nikkud": "עֶגְלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7239-egla",
+ "gender": "feminine"
+ }
+ ],
+ "עיגון": [
+ {
+ "word_nikkud": "עִגּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6491-igun",
+ "gender": "masculine"
+ }
+ ],
+ "עיגונים": [
+ {
+ "word_nikkud": "עִגּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6491-igun",
+ "gender": "masculine"
+ }
+ ],
+ "עיגון־": [
+ {
+ "word_nikkud": "עִגּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6491-igun",
+ "gender": "masculine"
+ }
+ ],
+ "עיגוני־": [
+ {
+ "word_nikkud": "עִגּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6491-igun",
+ "gender": "masculine"
+ }
+ ],
+ "עוגן": [
+ {
+ "word_nikkud": "עֹגֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3211-ogen",
+ "gender": "masculine"
+ }
+ ],
+ "עוגנים": [
+ {
+ "word_nikkud": "עֹגֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3211-ogen",
+ "gender": "masculine"
+ }
+ ],
+ "עוגן־": [
+ {
+ "word_nikkud": "עֹגֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3211-ogen",
+ "gender": "masculine"
+ }
+ ],
+ "עוגני־": [
+ {
+ "word_nikkud": "עֹגֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3211-ogen",
+ "gender": "masculine"
+ }
+ ],
+ "עד": [
+ {
+ "word_nikkud": "עֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5307-ed",
+ "gender": "masculine"
+ }
+ ],
+ "עדים": [
+ {
+ "word_nikkud": "עֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5307-ed",
+ "gender": "masculine"
+ }
+ ],
+ "עד־": [
+ {
+ "word_nikkud": "עֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5307-ed",
+ "gender": "masculine"
+ }
+ ],
+ "עדי־": [
+ {
+ "word_nikkud": "עֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5307-ed",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "עֲדִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5277-adi",
+ "gender": "masculine"
+ }
+ ],
+ "עדי": [
+ {
+ "word_nikkud": "עֲדִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5277-adi",
+ "gender": "masculine"
+ }
+ ],
+ "עדיים": [
+ {
+ "word_nikkud": "עֲדִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5277-adi",
+ "gender": "masculine"
+ }
+ ],
+ "עדיי־": [
+ {
+ "word_nikkud": "עֲדִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5277-adi",
+ "gender": "masculine"
+ }
+ ],
+ "עדכון": [
+ {
+ "word_nikkud": "עִדְכּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6272-idkun",
+ "gender": "masculine"
+ }
+ ],
+ "עדכונים": [
+ {
+ "word_nikkud": "עִדְכּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6272-idkun",
+ "gender": "masculine"
+ }
+ ],
+ "עדכון־": [
+ {
+ "word_nikkud": "עִדְכּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6272-idkun",
+ "gender": "masculine"
+ }
+ ],
+ "עדכוני־": [
+ {
+ "word_nikkud": "עִדְכּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6272-idkun",
+ "gender": "masculine"
+ }
+ ],
+ "עודף": [
+ {
+ "word_nikkud": "עֹדֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3212-odef",
+ "gender": "masculine"
+ }
+ ],
+ "עודפים": [
+ {
+ "word_nikkud": "עֹדֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3212-odef",
+ "gender": "masculine"
+ }
+ ],
+ "עודף־": [
+ {
+ "word_nikkud": "עֹדֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3212-odef",
+ "gender": "masculine"
+ }
+ ],
+ "עודפי־": [
+ {
+ "word_nikkud": "עֹדֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3212-odef",
+ "gender": "masculine"
+ }
+ ],
+ "עדיפות": [
+ {
+ "word_nikkud": "עֲדִיפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8950-adifut",
+ "gender": "feminine"
+ }
+ ],
+ "עדיפויות": [
+ {
+ "word_nikkud": "עֲדִיפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8950-adifut",
+ "gender": "feminine"
+ }
+ ],
+ "עדיפות־": [
+ {
+ "word_nikkud": "עֲדִיפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8950-adifut",
+ "gender": "feminine"
+ }
+ ],
+ "עדיפויות־": [
+ {
+ "word_nikkud": "עֲדִיפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8950-adifut",
+ "gender": "feminine"
+ }
+ ],
+ "תעדוף": [
+ {
+ "word_nikkud": "תַּעֲדוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9047-taaduf",
+ "gender": "masculine"
+ }
+ ],
+ "תעדופים": [
+ {
+ "word_nikkud": "תַּעֲדוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9047-taaduf",
+ "gender": "masculine"
+ }
+ ],
+ "תעדוף־": [
+ {
+ "word_nikkud": "תַּעֲדוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9047-taaduf",
+ "gender": "masculine"
+ }
+ ],
+ "תעדופי־": [
+ {
+ "word_nikkud": "תַּעֲדוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9047-taaduf",
+ "gender": "masculine"
+ }
+ ],
+ "היעדרות": [
+ {
+ "word_nikkud": "הֵעָדְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8737-headrut",
+ "gender": "feminine"
+ }
+ ],
+ "היעדרויות": [
+ {
+ "word_nikkud": "הֵעָדְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8737-headrut",
+ "gender": "feminine"
+ }
+ ],
+ "היעדרות־": [
+ {
+ "word_nikkud": "הֵעָדְרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8737-headrut",
+ "gender": "feminine"
+ }
+ ],
+ "היעדרויות־": [
+ {
+ "word_nikkud": "הֵעָדְרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8737-headrut",
+ "gender": "feminine"
+ }
+ ],
+ "עדר": [
+ {
+ "word_nikkud": "עֵדֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7841-eder",
+ "gender": "masculine"
+ }
+ ],
+ "עדרים": [
+ {
+ "word_nikkud": "עֵדֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7841-eder",
+ "gender": "masculine"
+ }
+ ],
+ "עדר־": [
+ {
+ "word_nikkud": "עֵדֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7841-eder",
+ "gender": "masculine"
+ }
+ ],
+ "עדרי־": [
+ {
+ "word_nikkud": "עֵדֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7841-eder",
+ "gender": "masculine"
+ }
+ ],
+ "מעדר": [
+ {
+ "word_nikkud": "מַעֲדֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9130-maader",
+ "gender": "masculine"
+ }
+ ],
+ "מעדרים": [
+ {
+ "word_nikkud": "מַעֲדֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9130-maader",
+ "gender": "masculine"
+ }
+ ],
+ "מעדר־": [
+ {
+ "word_nikkud": "מַעֲדֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9130-maader",
+ "gender": "masculine"
+ }
+ ],
+ "מעדרי־": [
+ {
+ "word_nikkud": "מַעֲדֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9130-maader",
+ "gender": "masculine"
+ }
+ ],
+ "עדשה": [
+ {
+ "word_nikkud": "עֲדָשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5970-adasha",
+ "gender": "feminine"
+ }
+ ],
+ "עדשות": [
+ {
+ "word_nikkud": "עֲדָשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5970-adasha",
+ "gender": "feminine"
+ }
+ ],
+ "עדשת־": [
+ {
+ "word_nikkud": "עֲדָשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5970-adasha",
+ "gender": "feminine"
+ }
+ ],
+ "עדשות־": [
+ {
+ "word_nikkud": "עֲדָשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5970-adasha",
+ "gender": "feminine"
+ }
+ ],
+ "עב": [
+ {
+ "word_nikkud": "עָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7232-av",
+ "gender": "masculine"
+ }
+ ],
+ "עבים": [
+ {
+ "word_nikkud": "עָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7232-av",
+ "gender": "masculine"
+ }
+ ],
+ "עבות": [
+ {
+ "word_nikkud": "עָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7232-av",
+ "gender": "masculine"
+ }
+ ],
+ "עב־": [
+ {
+ "word_nikkud": "עָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7232-av",
+ "gender": "masculine"
+ }
+ ],
+ "עבי־": [
+ {
+ "word_nikkud": "עָב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7232-av",
+ "gender": "masculine"
+ }
+ ],
+ "עבות־": [
+ {
+ "word_nikkud": "עָב",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7232-av",
+ "gender": "masculine"
+ }
+ ],
+ "עוגה": [
+ {
+ "word_nikkud": "עוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5375-uga",
+ "gender": "feminine"
+ }
+ ],
+ "עוגות": [
+ {
+ "word_nikkud": "עוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5375-uga",
+ "gender": "feminine"
+ }
+ ],
+ "עוגת־": [
+ {
+ "word_nikkud": "עוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5375-uga",
+ "gender": "feminine"
+ }
+ ],
+ "עוגות־": [
+ {
+ "word_nikkud": "עוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5375-uga",
+ "gender": "feminine"
+ }
+ ],
+ "עוגייה": [
+ {
+ "word_nikkud": "עוּגִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6594-ugiya",
+ "gender": "feminine"
+ }
+ ],
+ "עוגיות": [
+ {
+ "word_nikkud": "עוּגִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6594-ugiya",
+ "gender": "feminine"
+ }
+ ],
+ "עוגיית־": [
+ {
+ "word_nikkud": "עוּגִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6594-ugiya",
+ "gender": "feminine"
+ }
+ ],
+ "עוגיות־": [
+ {
+ "word_nikkud": "עוּגִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6594-ugiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעודה": [
+ {
+ "word_nikkud": "תְּעוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3742-teuda",
+ "gender": "feminine"
+ }
+ ],
+ "תעודות": [
+ {
+ "word_nikkud": "תְּעוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3742-teuda",
+ "gender": "feminine"
+ }
+ ],
+ "תעודת־": [
+ {
+ "word_nikkud": "תְּעוּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3742-teuda",
+ "gender": "feminine"
+ }
+ ],
+ "תעודות־": [
+ {
+ "word_nikkud": "תְּעוּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3742-teuda",
+ "gender": "feminine"
+ }
+ ],
+ "עדה": [
+ {
+ "word_nikkud": "עֵדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8107-eda",
+ "gender": "feminine"
+ }
+ ],
+ "עדות": [
+ {
+ "word_nikkud": "עֵדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8107-eda",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֵדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8910-edut",
+ "gender": "feminine"
+ }
+ ],
+ "עדת־": [
+ {
+ "word_nikkud": "עֵדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8107-eda",
+ "gender": "feminine"
+ }
+ ],
+ "עדות־": [
+ {
+ "word_nikkud": "עֵדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8107-eda",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֵדוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8910-edut",
+ "gender": "feminine"
+ }
+ ],
+ "עדויות": [
+ {
+ "word_nikkud": "עֵדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8910-edut",
+ "gender": "feminine"
+ }
+ ],
+ "עדויות־": [
+ {
+ "word_nikkud": "עֵדוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8910-edut",
+ "gender": "feminine"
+ }
+ ],
+ "עידוד": [
+ {
+ "word_nikkud": "עִידוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6373-idud",
+ "gender": "masculine"
+ }
+ ],
+ "עידודים": [
+ {
+ "word_nikkud": "עִידוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6373-idud",
+ "gender": "masculine"
+ }
+ ],
+ "עידוד־": [
+ {
+ "word_nikkud": "עִידוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6373-idud",
+ "gender": "masculine"
+ }
+ ],
+ "עידודי־": [
+ {
+ "word_nikkud": "עִידוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6373-idud",
+ "gender": "masculine"
+ }
+ ],
+ "עוון": [
+ {
+ "word_nikkud": "עָווֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3782-avon",
+ "gender": "masculine"
+ }
+ ],
+ "עוונות": [
+ {
+ "word_nikkud": "עָווֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3782-avon",
+ "gender": "masculine"
+ }
+ ],
+ "עוון־": [
+ {
+ "word_nikkud": "עָווֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3782-avon",
+ "gender": "masculine"
+ }
+ ],
+ "עוונות־": [
+ {
+ "word_nikkud": "עָווֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3782-avon",
+ "gender": "masculine"
+ }
+ ],
+ "עוויל": [
+ {
+ "word_nikkud": "עֲוִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7339-avil",
+ "gender": "masculine"
+ }
+ ],
+ "עווילים": [
+ {
+ "word_nikkud": "עֲוִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7339-avil",
+ "gender": "masculine"
+ }
+ ],
+ "עוויל־": [
+ {
+ "word_nikkud": "עֲוִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7339-avil",
+ "gender": "masculine"
+ }
+ ],
+ "עווילי־": [
+ {
+ "word_nikkud": "עֲוִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7339-avil",
+ "gender": "masculine"
+ }
+ ],
+ "עוול": [
+ {
+ "word_nikkud": "עָוֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7315-avel",
+ "gender": "masculine"
+ }
+ ],
+ "עוול־": [
+ {
+ "word_nikkud": "עָוֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7315-avel",
+ "gender": "masculine"
+ }
+ ],
+ "מעון": [
+ {
+ "word_nikkud": "מָעוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5584-maon",
+ "gender": "masculine"
+ }
+ ],
+ "מעונות": [
+ {
+ "word_nikkud": "מָעוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5584-maon",
+ "gender": "masculine"
+ }
+ ],
+ "מעון־": [
+ {
+ "word_nikkud": "מָעוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5584-maon",
+ "gender": "masculine"
+ }
+ ],
+ "מעונות־": [
+ {
+ "word_nikkud": "מָעוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5584-maon",
+ "gender": "masculine"
+ }
+ ],
+ "עונה": [
+ {
+ "word_nikkud": "עוֹנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4624-ona",
+ "gender": "feminine"
+ }
+ ],
+ "עונות": [
+ {
+ "word_nikkud": "עוֹנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4624-ona",
+ "gender": "feminine"
+ }
+ ],
+ "עונת־": [
+ {
+ "word_nikkud": "עוֹנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4624-ona",
+ "gender": "feminine"
+ }
+ ],
+ "עונות־": [
+ {
+ "word_nikkud": "עוֹנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4624-ona",
+ "gender": "feminine"
+ }
+ ],
+ "תעופה": [
+ {
+ "word_nikkud": "תְּעוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4391-teufa",
+ "gender": "feminine"
+ }
+ ],
+ "תעופת־": [
+ {
+ "word_nikkud": "תְּעוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4391-teufa",
+ "gender": "feminine"
+ }
+ ],
+ "מעוף": [
+ {
+ "word_nikkud": "מָעוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8461-maof",
+ "gender": "masculine"
+ }
+ ],
+ "מעופים": [
+ {
+ "word_nikkud": "מָעוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8461-maof",
+ "gender": "masculine"
+ }
+ ],
+ "מעוף־": [
+ {
+ "word_nikkud": "מָעוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8461-maof",
+ "gender": "masculine"
+ }
+ ],
+ "מעופי־": [
+ {
+ "word_nikkud": "מָעוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8461-maof",
+ "gender": "masculine"
+ }
+ ],
+ "עוף": [
+ {
+ "word_nikkud": "עוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6781-of",
+ "gender": "masculine"
+ }
+ ],
+ "עופות": [
+ {
+ "word_nikkud": "עוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6781-of",
+ "gender": "masculine"
+ }
+ ],
+ "עוף־": [
+ {
+ "word_nikkud": "עוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6781-of",
+ "gender": "masculine"
+ }
+ ],
+ "עופות־": [
+ {
+ "word_nikkud": "עוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6781-of",
+ "gender": "masculine"
+ }
+ ],
+ "מועקה": [
+ {
+ "word_nikkud": "מוּעָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9058-muaka",
+ "gender": ""
+ }
+ ],
+ "מועקת־": [
+ {
+ "word_nikkud": "מוּעָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9058-muaka",
+ "gender": ""
+ }
+ ],
+ "עיוורון": [
+ {
+ "word_nikkud": "עִוָּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7206-ivaron",
+ "gender": "masculine"
+ }
+ ],
+ "עוורונות": [
+ {
+ "word_nikkud": "עִוָּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7206-ivaron",
+ "gender": "masculine"
+ }
+ ],
+ "עוורון־": [
+ {
+ "word_nikkud": "עִוָּרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7206-ivaron",
+ "gender": "masculine"
+ }
+ ],
+ "עוורונות־": [
+ {
+ "word_nikkud": "עִוָּרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7206-ivaron",
+ "gender": "masculine"
+ }
+ ],
+ "הערה": [
+ {
+ "word_nikkud": "הֶעָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4327-heara",
+ "gender": "feminine"
+ }
+ ],
+ "הערות": [
+ {
+ "word_nikkud": "הֶעָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4327-heara",
+ "gender": "feminine"
+ }
+ ],
+ "הערת־": [
+ {
+ "word_nikkud": "הֶעָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4327-heara",
+ "gender": "feminine"
+ }
+ ],
+ "הערות־": [
+ {
+ "word_nikkud": "הֶעָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4327-heara",
+ "gender": "feminine"
+ }
+ ],
+ "מערה": [
+ {
+ "word_nikkud": "מְעָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4765-meara",
+ "gender": "feminine"
+ }
+ ],
+ "מערות": [
+ {
+ "word_nikkud": "מְעָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4765-meara",
+ "gender": "feminine"
+ }
+ ],
+ "מערת־": [
+ {
+ "word_nikkud": "מְעָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4765-meara",
+ "gender": "feminine"
+ }
+ ],
+ "מערות־": [
+ {
+ "word_nikkud": "מְעָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4765-meara",
+ "gender": "feminine"
+ }
+ ],
+ "עור": [
+ {
+ "word_nikkud": "עוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5010-or",
+ "gender": "masculine"
+ }
+ ],
+ "עורות": [
+ {
+ "word_nikkud": "עוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5010-or",
+ "gender": "masculine"
+ }
+ ],
+ "עור־": [
+ {
+ "word_nikkud": "עוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5010-or",
+ "gender": "masculine"
+ }
+ ],
+ "עורות־": [
+ {
+ "word_nikkud": "עוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5010-or",
+ "gender": "masculine"
+ }
+ ],
+ "עיוות": [
+ {
+ "word_nikkud": "עִוּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2984-ivut",
+ "gender": "masculine"
+ }
+ ],
+ "עיוותים": [
+ {
+ "word_nikkud": "עִוּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2984-ivut",
+ "gender": "masculine"
+ }
+ ],
+ "עיוות־": [
+ {
+ "word_nikkud": "עִוּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2984-ivut",
+ "gender": "masculine"
+ }
+ ],
+ "עיוותי־": [
+ {
+ "word_nikkud": "עִוּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2984-ivut",
+ "gender": "masculine"
+ }
+ ],
+ "עז": [
+ {
+ "word_nikkud": "עֵז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5668-ez",
+ "gender": "feminine"
+ }
+ ],
+ "עיזים": [
+ {
+ "word_nikkud": "עֵז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5668-ez",
+ "gender": "feminine"
+ }
+ ],
+ "עז־": [
+ {
+ "word_nikkud": "עֵז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5668-ez",
+ "gender": "feminine"
+ }
+ ],
+ "עיזי־": [
+ {
+ "word_nikkud": "עֵז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5668-ez",
+ "gender": "feminine"
+ }
+ ],
+ "מעוז": [
+ {
+ "word_nikkud": "מָעֹז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4432-maoz",
+ "gender": "masculine"
+ }
+ ],
+ "מעוזים": [
+ {
+ "word_nikkud": "מָעֹז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4432-maoz",
+ "gender": "masculine"
+ }
+ ],
+ "מעוז־": [
+ {
+ "word_nikkud": "מָעֹז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4432-maoz",
+ "gender": "masculine"
+ }
+ ],
+ "מעוזי־": [
+ {
+ "word_nikkud": "מָעֹז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4432-maoz",
+ "gender": "masculine"
+ }
+ ],
+ "תעוזה": [
+ {
+ "word_nikkud": "תְּעוּזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8513-teuza",
+ "gender": "feminine"
+ }
+ ],
+ "תעוזת־": [
+ {
+ "word_nikkud": "תְּעוּזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8513-teuza",
+ "gender": "feminine"
+ }
+ ],
+ "עזוז": [
+ {
+ "word_nikkud": "עֱזוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9216-ezuz",
+ "gender": ""
+ }
+ ],
+ "עזוז־": [
+ {
+ "word_nikkud": "עֱזוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9216-ezuz",
+ "gender": ""
+ }
+ ],
+ "עזרה": [
+ {
+ "word_nikkud": "עֶזְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5557-ezra",
+ "gender": "feminine"
+ }
+ ],
+ "עזרת־": [
+ {
+ "word_nikkud": "עֶזְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5557-ezra",
+ "gender": "feminine"
+ }
+ ],
+ "עזר": [
+ {
+ "word_nikkud": "עֵזֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4332-ezer",
+ "gender": "masculine"
+ }
+ ],
+ "עזרים": [
+ {
+ "word_nikkud": "עֵזֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4332-ezer",
+ "gender": "masculine"
+ }
+ ],
+ "עזר־": [
+ {
+ "word_nikkud": "עֵזֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4332-ezer",
+ "gender": "masculine"
+ }
+ ],
+ "עזרי־": [
+ {
+ "word_nikkud": "עֵזֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4332-ezer",
+ "gender": "masculine"
+ }
+ ],
+ "עט": [
+ {
+ "word_nikkud": "עֵט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5516-et",
+ "gender": "masculine"
+ }
+ ],
+ "עטים": [
+ {
+ "word_nikkud": "עֵט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5516-et",
+ "gender": "masculine"
+ }
+ ],
+ "עט־": [
+ {
+ "word_nikkud": "עֵט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5516-et",
+ "gender": "masculine"
+ }
+ ],
+ "עטי־": [
+ {
+ "word_nikkud": "עֵט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5516-et",
+ "gender": "masculine"
+ }
+ ],
+ "עטייה": [
+ {
+ "word_nikkud": "עֲטִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8351-atiya",
+ "gender": "feminine"
+ }
+ ],
+ "עטיית־": [
+ {
+ "word_nikkud": "עֲטִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8351-atiya",
+ "gender": "feminine"
+ }
+ ],
+ "עטלף": [
+ {
+ "word_nikkud": "עֲטַלֵּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4766-atalef",
+ "gender": ""
+ }
+ ],
+ "עטלפים": [
+ {
+ "word_nikkud": "עֲטַלֵּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4766-atalef",
+ "gender": ""
+ }
+ ],
+ "עטלף־": [
+ {
+ "word_nikkud": "עֲטַלֵּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4766-atalef",
+ "gender": ""
+ }
+ ],
+ "עטלפי־": [
+ {
+ "word_nikkud": "עֲטַלֵּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4766-atalef",
+ "gender": ""
+ }
+ ],
+ "מעטפה": [
+ {
+ "word_nikkud": "מַעֲטָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5032-maatafa",
+ "gender": "feminine"
+ }
+ ],
+ "מעטפות": [
+ {
+ "word_nikkud": "מַעֲטָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5032-maatafa",
+ "gender": "feminine"
+ }
+ ],
+ "מעטפת־": [
+ {
+ "word_nikkud": "מַעֲטָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5032-maatafa",
+ "gender": "feminine"
+ }
+ ],
+ "מעטפות־": [
+ {
+ "word_nikkud": "מַעֲטָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5032-maatafa",
+ "gender": "feminine"
+ }
+ ],
+ "עטיפה": [
+ {
+ "word_nikkud": "עֲטִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6500-atifa",
+ "gender": "feminine"
+ }
+ ],
+ "עטיפות": [
+ {
+ "word_nikkud": "עֲטִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6500-atifa",
+ "gender": "feminine"
+ }
+ ],
+ "עטיפת־": [
+ {
+ "word_nikkud": "עֲטִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6500-atifa",
+ "gender": "feminine"
+ }
+ ],
+ "עטיפות־": [
+ {
+ "word_nikkud": "עֲטִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6500-atifa",
+ "gender": "feminine"
+ }
+ ],
+ "עטרה": [
+ {
+ "word_nikkud": "עֲטָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9207-atara",
+ "gender": "feminine"
+ }
+ ],
+ "עטרות": [
+ {
+ "word_nikkud": "עֲטָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9207-atara",
+ "gender": "feminine"
+ }
+ ],
+ "עטרת־": [
+ {
+ "word_nikkud": "עֲטָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9207-atara",
+ "gender": "feminine"
+ }
+ ],
+ "עטרות־": [
+ {
+ "word_nikkud": "עֲטָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9207-atara",
+ "gender": "feminine"
+ }
+ ],
+ "התעטשות": [
+ {
+ "word_nikkud": "הִתְעַטְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7998-hitatshut",
+ "gender": "feminine"
+ }
+ ],
+ "התעטשויות": [
+ {
+ "word_nikkud": "הִתְעַטְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7998-hitatshut",
+ "gender": "feminine"
+ }
+ ],
+ "התעטשות־": [
+ {
+ "word_nikkud": "הִתְעַטְּשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7998-hitatshut",
+ "gender": "feminine"
+ }
+ ],
+ "התעטשויות־": [
+ {
+ "word_nikkud": "הִתְעַטְּשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7998-hitatshut",
+ "gender": "feminine"
+ }
+ ],
+ "עידן": [
+ {
+ "word_nikkud": "עִדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7326-idan",
+ "gender": "masculine"
+ }
+ ],
+ "עידנים": [
+ {
+ "word_nikkud": "עִדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7326-idan",
+ "gender": "masculine"
+ }
+ ],
+ "עידן־": [
+ {
+ "word_nikkud": "עִדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7326-idan",
+ "gender": "masculine"
+ }
+ ],
+ "עידני־": [
+ {
+ "word_nikkud": "עִדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7326-idan",
+ "gender": "masculine"
+ }
+ ],
+ "עיט": [
+ {
+ "word_nikkud": "עַיִט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5690-ayit",
+ "gender": "masculine"
+ }
+ ],
+ "עיטים": [
+ {
+ "word_nikkud": "עַיִט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5690-ayit",
+ "gender": "masculine"
+ }
+ ],
+ "עיט־": [
+ {
+ "word_nikkud": "עַיִט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5690-ayit",
+ "gender": "masculine"
+ }
+ ],
+ "עיטי־": [
+ {
+ "word_nikkud": "עַיִט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5690-ayit",
+ "gender": "masculine"
+ }
+ ],
+ "עיון": [
+ {
+ "word_nikkud": "עִיּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2985-iyun",
+ "gender": "masculine"
+ }
+ ],
+ "עיונים": [
+ {
+ "word_nikkud": "עִיּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2985-iyun",
+ "gender": "masculine"
+ }
+ ],
+ "עיון־": [
+ {
+ "word_nikkud": "עִיּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2985-iyun",
+ "gender": "masculine"
+ }
+ ],
+ "עיוני־": [
+ {
+ "word_nikkud": "עִיּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2985-iyun",
+ "gender": "masculine"
+ }
+ ],
+ "עין": [
+ {
+ "word_nikkud": "עַיִן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5022-ayin",
+ "gender": "feminine"
+ }
+ ],
+ "עיניים": [
+ {
+ "word_nikkud": "עַיִן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5022-ayin",
+ "gender": "feminine"
+ }
+ ],
+ "עין־": [
+ {
+ "word_nikkud": "עַיִן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5022-ayin",
+ "gender": "feminine"
+ }
+ ],
+ "עיני־": [
+ {
+ "word_nikkud": "עַיִן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5022-ayin",
+ "gender": "feminine"
+ }
+ ],
+ "מעיין": [
+ {
+ "word_nikkud": "מַעֲיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5679-maayan",
+ "gender": "masculine"
+ }
+ ],
+ "מעיינות": [
+ {
+ "word_nikkud": "מַעֲיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5679-maayan",
+ "gender": "masculine"
+ }
+ ],
+ "מעיין־": [
+ {
+ "word_nikkud": "מַעֲיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5679-maayan",
+ "gender": "masculine"
+ }
+ ],
+ "מעיינות־": [
+ {
+ "word_nikkud": "מַעֲיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5679-maayan",
+ "gender": "masculine"
+ }
+ ],
+ "עינב": [
+ {
+ "word_nikkud": "עֵנָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7002-enav",
+ "gender": "masculine"
+ }
+ ],
+ "ענבים": [
+ {
+ "word_nikkud": "עֵנָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7002-enav",
+ "gender": "masculine"
+ }
+ ],
+ "ענב־": [
+ {
+ "word_nikkud": "עֵנָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7002-enav",
+ "gender": "masculine"
+ }
+ ],
+ "ענבי־": [
+ {
+ "word_nikkud": "עֵנָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7002-enav",
+ "gender": "masculine"
+ }
+ ],
+ "עייפות": [
+ {
+ "word_nikkud": "עָיֵפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7486-ayefut",
+ "gender": "feminine"
+ }
+ ],
+ "עייפות־": [
+ {
+ "word_nikkud": "עָיֵפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7486-ayefut",
+ "gender": "feminine"
+ }
+ ],
+ "עיירה": [
+ {
+ "word_nikkud": "עֲיָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8035-ayara",
+ "gender": "feminine"
+ }
+ ],
+ "עיירות": [
+ {
+ "word_nikkud": "עֲיָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8035-ayara",
+ "gender": "feminine"
+ }
+ ],
+ "עיירת־": [
+ {
+ "word_nikkud": "עֲיָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8035-ayara",
+ "gender": "feminine"
+ }
+ ],
+ "עיירות־": [
+ {
+ "word_nikkud": "עֲיָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8035-ayara",
+ "gender": "feminine"
+ }
+ ],
+ "עירייה": [
+ {
+ "word_nikkud": "עִירִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6441-iriya",
+ "gender": "feminine"
+ }
+ ],
+ "עיריות": [
+ {
+ "word_nikkud": "עִירִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6441-iriya",
+ "gender": "feminine"
+ }
+ ],
+ "עיריית־": [
+ {
+ "word_nikkud": "עִירִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6441-iriya",
+ "gender": "feminine"
+ }
+ ],
+ "עיריות־": [
+ {
+ "word_nikkud": "עִירִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6441-iriya",
+ "gender": "feminine"
+ }
+ ],
+ "עיר": [
+ {
+ "word_nikkud": "עִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3819-ir",
+ "gender": "feminine"
+ }
+ ],
+ "ערים": [
+ {
+ "word_nikkud": "עִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3819-ir",
+ "gender": "feminine"
+ }
+ ],
+ "עיר־": [
+ {
+ "word_nikkud": "עִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3819-ir",
+ "gender": "feminine"
+ }
+ ],
+ "ערי־": [
+ {
+ "word_nikkud": "עִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3819-ir",
+ "gender": "feminine"
+ }
+ ],
+ "עיכוב": [
+ {
+ "word_nikkud": "עִכּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5996-ikuv",
+ "gender": "masculine"
+ }
+ ],
+ "עיכובים": [
+ {
+ "word_nikkud": "עִכּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5996-ikuv",
+ "gender": "masculine"
+ }
+ ],
+ "עיכוב־": [
+ {
+ "word_nikkud": "עִכּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5996-ikuv",
+ "gender": "masculine"
+ }
+ ],
+ "עיכובי־": [
+ {
+ "word_nikkud": "עִכּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5996-ikuv",
+ "gender": "masculine"
+ }
+ ],
+ "עכביש": [
+ {
+ "word_nikkud": "עֲכָּבִישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6737-akavish",
+ "gender": "masculine"
+ }
+ ],
+ "עכבישים": [
+ {
+ "word_nikkud": "עֲכָּבִישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6737-akavish",
+ "gender": "masculine"
+ }
+ ],
+ "עכביש־": [
+ {
+ "word_nikkud": "עֲכָּבִישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6737-akavish",
+ "gender": "masculine"
+ }
+ ],
+ "עכבישי־": [
+ {
+ "word_nikkud": "עֲכָּבִישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6737-akavish",
+ "gender": "masculine"
+ }
+ ],
+ "עכבר": [
+ {
+ "word_nikkud": "עַכְבָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6303-achbar",
+ "gender": "masculine"
+ }
+ ],
+ "עכברים": [
+ {
+ "word_nikkud": "עַכְבָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6303-achbar",
+ "gender": "masculine"
+ }
+ ],
+ "עכבר־": [
+ {
+ "word_nikkud": "עַכְבָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6303-achbar",
+ "gender": "masculine"
+ }
+ ],
+ "עכברי־": [
+ {
+ "word_nikkud": "עַכְבָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6303-achbar",
+ "gender": "masculine"
+ }
+ ],
+ "עיכול": [
+ {
+ "word_nikkud": "עִכּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6155-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עיכולים": [
+ {
+ "word_nikkud": "עִכּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6155-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עיכול־": [
+ {
+ "word_nikkud": "עִכּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6155-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עיכולי־": [
+ {
+ "word_nikkud": "עִכּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6155-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "העלאה": [
+ {
+ "word_nikkud": "הַעֲלָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3385-haalaa",
+ "gender": "feminine"
+ }
+ ],
+ "העלאת־": [
+ {
+ "word_nikkud": "הַעֲלָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3385-haalaa",
+ "gender": "feminine"
+ }
+ ],
+ "עלבון": [
+ {
+ "word_nikkud": "עֶלְבּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5329-elbon",
+ "gender": "masculine"
+ }
+ ],
+ "עלבונות": [
+ {
+ "word_nikkud": "עֶלְבּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5329-elbon",
+ "gender": "masculine"
+ }
+ ],
+ "עלבון־": [
+ {
+ "word_nikkud": "עֶלְבּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5329-elbon",
+ "gender": "masculine"
+ }
+ ],
+ "עלבונות־": [
+ {
+ "word_nikkud": "עֶלְבּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5329-elbon",
+ "gender": "masculine"
+ }
+ ],
+ "העלבה": [
+ {
+ "word_nikkud": "הַעֲלָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5874-haalava",
+ "gender": "feminine"
+ }
+ ],
+ "העלבות": [
+ {
+ "word_nikkud": "הַעֲלָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5874-haalava",
+ "gender": "feminine"
+ }
+ ],
+ "העלבת־": [
+ {
+ "word_nikkud": "הַעֲלָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5874-haalava",
+ "gender": "feminine"
+ }
+ ],
+ "העלבות־": [
+ {
+ "word_nikkud": "הַעֲלָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5874-haalava",
+ "gender": "feminine"
+ }
+ ],
+ "מעלה": [
+ {
+ "word_nikkud": "מַעֲלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5751-maala",
+ "gender": "feminine"
+ }
+ ],
+ "מעלות": [
+ {
+ "word_nikkud": "מַעֲלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5751-maala",
+ "gender": "feminine"
+ }
+ ],
+ "מעלת־": [
+ {
+ "word_nikkud": "מַעֲלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5751-maala",
+ "gender": "feminine"
+ }
+ ],
+ "מעלות־": [
+ {
+ "word_nikkud": "מַעֲלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5751-maala",
+ "gender": "feminine"
+ }
+ ],
+ "עילוי": [
+ {
+ "word_nikkud": "עִלּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7211-iluy",
+ "gender": "masculine"
+ }
+ ],
+ "עילויים": [
+ {
+ "word_nikkud": "עִלּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7211-iluy",
+ "gender": "masculine"
+ }
+ ],
+ "עילוי־": [
+ {
+ "word_nikkud": "עִלּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7211-iluy",
+ "gender": "masculine"
+ }
+ ],
+ "עילויי־": [
+ {
+ "word_nikkud": "עִלּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7211-iluy",
+ "gender": "masculine"
+ }
+ ],
+ "עלייה": [
+ {
+ "word_nikkud": "עֲלִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4792-aliya",
+ "gender": "feminine"
+ }
+ ],
+ "עליות": [
+ {
+ "word_nikkud": "עֲלִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4792-aliya",
+ "gender": "feminine"
+ }
+ ],
+ "עליית־": [
+ {
+ "word_nikkud": "עֲלִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4792-aliya",
+ "gender": "feminine"
+ }
+ ],
+ "עליות־": [
+ {
+ "word_nikkud": "עֲלִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4792-aliya",
+ "gender": "feminine"
+ }
+ ],
+ "עליונות": [
+ {
+ "word_nikkud": "עֶלְיוֹנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5623-elyonut",
+ "gender": "feminine"
+ }
+ ],
+ "עליונויות": [
+ {
+ "word_nikkud": "עֶלְיוֹנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5623-elyonut",
+ "gender": "feminine"
+ }
+ ],
+ "עליונות־": [
+ {
+ "word_nikkud": "עֶלְיוֹנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5623-elyonut",
+ "gender": "feminine"
+ }
+ ],
+ "עליונויות־": [
+ {
+ "word_nikkud": "עֶלְיוֹנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5623-elyonut",
+ "gender": "feminine"
+ }
+ ],
+ "עלה": [
+ {
+ "word_nikkud": "עָלֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4261-ale",
+ "gender": "masculine"
+ }
+ ],
+ "עלים": [
+ {
+ "word_nikkud": "עָלֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4261-ale",
+ "gender": "masculine"
+ }
+ ],
+ "עלה־": [
+ {
+ "word_nikkud": "עָלֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4261-ale",
+ "gender": "masculine"
+ }
+ ],
+ "עלי־": [
+ {
+ "word_nikkud": "עָלֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4261-ale",
+ "gender": "masculine"
+ }
+ ],
+ "עלות": [
+ {
+ "word_nikkud": "עֲלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4793-alut",
+ "gender": "feminine"
+ }
+ ],
+ "עלויות": [
+ {
+ "word_nikkud": "עֲלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4793-alut",
+ "gender": "feminine"
+ }
+ ],
+ "עלות־": [
+ {
+ "word_nikkud": "עֲלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4793-alut",
+ "gender": "feminine"
+ }
+ ],
+ "עלויות־": [
+ {
+ "word_nikkud": "עֲלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4793-alut",
+ "gender": "feminine"
+ }
+ ],
+ "עלון": [
+ {
+ "word_nikkud": "עָלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7774-alon",
+ "gender": "masculine"
+ }
+ ],
+ "עלונים": [
+ {
+ "word_nikkud": "עָלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7774-alon",
+ "gender": "masculine"
+ }
+ ],
+ "עלון־": [
+ {
+ "word_nikkud": "עָלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7774-alon",
+ "gender": "masculine"
+ }
+ ],
+ "עלוני־": [
+ {
+ "word_nikkud": "עָלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7774-alon",
+ "gender": "masculine"
+ }
+ ],
+ "תעלה": [
+ {
+ "word_nikkud": "תְּעָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9210-teala",
+ "gender": "feminine"
+ }
+ ],
+ "תעלות": [
+ {
+ "word_nikkud": "תְּעָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9210-teala",
+ "gender": "feminine"
+ }
+ ],
+ "תעלת־": [
+ {
+ "word_nikkud": "תְּעָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9210-teala",
+ "gender": "feminine"
+ }
+ ],
+ "תעלות־": [
+ {
+ "word_nikkud": "תְּעָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9210-teala",
+ "gender": "feminine"
+ }
+ ],
+ "מעלית": [
+ {
+ "word_nikkud": "מַעֲלִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7081-maalit",
+ "gender": "feminine"
+ }
+ ],
+ "מעליות": [
+ {
+ "word_nikkud": "מַעֲלִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7081-maalit",
+ "gender": "feminine"
+ }
+ ],
+ "מעלית־": [
+ {
+ "word_nikkud": "מַעֲלִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7081-maalit",
+ "gender": "feminine"
+ }
+ ],
+ "מעליות־": [
+ {
+ "word_nikkud": "מַעֲלִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7081-maalit",
+ "gender": "feminine"
+ }
+ ],
+ "עול": [
+ {
+ "word_nikkud": "עֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6467-ol",
+ "gender": "masculine"
+ }
+ ],
+ "עולים": [
+ {
+ "word_nikkud": "עֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6467-ol",
+ "gender": "masculine"
+ }
+ ],
+ "עול־": [
+ {
+ "word_nikkud": "עֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6467-ol",
+ "gender": "masculine"
+ }
+ ],
+ "עולי־": [
+ {
+ "word_nikkud": "עֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6467-ol",
+ "gender": "masculine"
+ }
+ ],
+ "עלילה": [
+ {
+ "word_nikkud": "עֲלִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5494-alila",
+ "gender": "feminine"
+ }
+ ],
+ "עלילות": [
+ {
+ "word_nikkud": "עֲלִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5494-alila",
+ "gender": "feminine"
+ }
+ ],
+ "עלילת־": [
+ {
+ "word_nikkud": "עֲלִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5494-alila",
+ "gender": "feminine"
+ }
+ ],
+ "עלילות־": [
+ {
+ "word_nikkud": "עֲלִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5494-alila",
+ "gender": "feminine"
+ }
+ ],
+ "התעללות": [
+ {
+ "word_nikkud": "הִתְעַלְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3024-hitalelut",
+ "gender": "feminine"
+ }
+ ],
+ "התעללות־": [
+ {
+ "word_nikkud": "הִתְעַלְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3024-hitalelut",
+ "gender": "feminine"
+ }
+ ],
+ "מעללים": [
+ {
+ "word_nikkud": "מַעֲלָלִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9103-maalalim",
+ "gender": "masculine"
+ }
+ ],
+ "מעללי־": [
+ {
+ "word_nikkud": "מַעֲלָלִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9103-maalalim",
+ "gender": "masculine"
+ }
+ ],
+ "תעלול": [
+ {
+ "word_nikkud": "תַּעֲלוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9238-taalul",
+ "gender": "masculine"
+ }
+ ],
+ "תעלולים": [
+ {
+ "word_nikkud": "תַּעֲלוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9238-taalul",
+ "gender": "masculine"
+ }
+ ],
+ "תעלול־": [
+ {
+ "word_nikkud": "תַּעֲלוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9238-taalul",
+ "gender": "masculine"
+ }
+ ],
+ "תעלולי־": [
+ {
+ "word_nikkud": "תַּעֲלוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9238-taalul",
+ "gender": "masculine"
+ }
+ ],
+ "עלמה": [
+ {
+ "word_nikkud": "עַלְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5328-alma",
+ "gender": "feminine"
+ }
+ ],
+ "עלמות": [
+ {
+ "word_nikkud": "עַלְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5328-alma",
+ "gender": "feminine"
+ }
+ ],
+ "עלמת־": [
+ {
+ "word_nikkud": "עַלְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5328-alma",
+ "gender": "feminine"
+ }
+ ],
+ "עלמות־": [
+ {
+ "word_nikkud": "עַלְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5328-alma",
+ "gender": "feminine"
+ }
+ ],
+ "עלם": [
+ {
+ "word_nikkud": "עֶלֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5327-elem",
+ "gender": "masculine"
+ }
+ ],
+ "עלמים": [
+ {
+ "word_nikkud": "עֶלֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5327-elem",
+ "gender": "masculine"
+ }
+ ],
+ "עלם־": [
+ {
+ "word_nikkud": "עֶלֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5327-elem",
+ "gender": "masculine"
+ }
+ ],
+ "עלמי־": [
+ {
+ "word_nikkud": "עֶלֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5327-elem",
+ "gender": "masculine"
+ }
+ ],
+ "עולם": [
+ {
+ "word_nikkud": "עוֹלָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4106-olam",
+ "gender": "masculine"
+ }
+ ],
+ "עולמים": [
+ {
+ "word_nikkud": "עוֹלָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4106-olam",
+ "gender": "masculine"
+ }
+ ],
+ "עולמות": [
+ {
+ "word_nikkud": "עוֹלָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4106-olam",
+ "gender": "masculine"
+ }
+ ],
+ "עולם־": [
+ {
+ "word_nikkud": "עוֹלָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4106-olam",
+ "gender": "masculine"
+ }
+ ],
+ "עולמי־": [
+ {
+ "word_nikkud": "עוֹלָם",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4106-olam",
+ "gender": "masculine"
+ }
+ ],
+ "עולמות־": [
+ {
+ "word_nikkud": "עוֹלָם",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4106-olam",
+ "gender": "masculine"
+ }
+ ],
+ "העלמה": [
+ {
+ "word_nikkud": "הַעֲלָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5695-haalama",
+ "gender": "feminine"
+ }
+ ],
+ "העלמות": [
+ {
+ "word_nikkud": "הַעֲלָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5695-haalama",
+ "gender": "feminine"
+ }
+ ],
+ "העלמת־": [
+ {
+ "word_nikkud": "הַעֲלָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5695-haalama",
+ "gender": "feminine"
+ }
+ ],
+ "העלמות־": [
+ {
+ "word_nikkud": "הַעֲלָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5695-haalama",
+ "gender": "feminine"
+ }
+ ],
+ "היעלמות": [
+ {
+ "word_nikkud": "הֵעָלְמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5330-healmut",
+ "gender": "feminine"
+ }
+ ],
+ "היעלמויות": [
+ {
+ "word_nikkud": "הֵעָלְמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5330-healmut",
+ "gender": "feminine"
+ }
+ ],
+ "היעלמות־": [
+ {
+ "word_nikkud": "הֵעָלְמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5330-healmut",
+ "gender": "feminine"
+ }
+ ],
+ "היעלמויות־": [
+ {
+ "word_nikkud": "הֵעָלְמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5330-healmut",
+ "gender": "feminine"
+ }
+ ],
+ "התעלמות": [
+ {
+ "word_nikkud": "הִתְעַלְּמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9287-hitalmut",
+ "gender": "feminine"
+ }
+ ],
+ "התעלמות־": [
+ {
+ "word_nikkud": "הִתְעַלְּמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9287-hitalmut",
+ "gender": "feminine"
+ }
+ ],
+ "תעלומה": [
+ {
+ "word_nikkud": "תַּעֲלוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6928-taaluma",
+ "gender": "feminine"
+ }
+ ],
+ "תעלומות": [
+ {
+ "word_nikkud": "תַּעֲלוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6928-taaluma",
+ "gender": "feminine"
+ }
+ ],
+ "תעלומת־": [
+ {
+ "word_nikkud": "תַּעֲלוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6928-taaluma",
+ "gender": "feminine"
+ }
+ ],
+ "תעלומות־": [
+ {
+ "word_nikkud": "תַּעֲלוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6928-taaluma",
+ "gender": "feminine"
+ }
+ ],
+ "העלם": [
+ {
+ "word_nikkud": "הֶעֱלֵם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6938-heelem",
+ "gender": "masculine"
+ }
+ ],
+ "העלמים": [
+ {
+ "word_nikkud": "הֶעֱלֵם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6938-heelem",
+ "gender": "masculine"
+ }
+ ],
+ "העלם־": [
+ {
+ "word_nikkud": "הֶעֱלֵם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6938-heelem",
+ "gender": "masculine"
+ }
+ ],
+ "העלמי־": [
+ {
+ "word_nikkud": "הֶעֱלֵם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6938-heelem",
+ "gender": "masculine"
+ }
+ ],
+ "התעלפות": [
+ {
+ "word_nikkud": "הִתְעַלְּפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9037-hitalfut",
+ "gender": "feminine"
+ }
+ ],
+ "התעלפויות": [
+ {
+ "word_nikkud": "הִתְעַלְּפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9037-hitalfut",
+ "gender": "feminine"
+ }
+ ],
+ "התעלפות־": [
+ {
+ "word_nikkud": "הִתְעַלְּפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9037-hitalfut",
+ "gender": "feminine"
+ }
+ ],
+ "התעלפויות־": [
+ {
+ "word_nikkud": "הִתְעַלְּפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9037-hitalfut",
+ "gender": "feminine"
+ }
+ ],
+ "עלצון": [
+ {
+ "word_nikkud": "עֶלְצוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9214-eltzon",
+ "gender": "masculine"
+ }
+ ],
+ "עלצון־": [
+ {
+ "word_nikkud": "עֶלְצוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9214-eltzon",
+ "gender": "masculine"
+ }
+ ],
+ "עלצה": [
+ {
+ "word_nikkud": "עֶלְצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9215-eltza",
+ "gender": "feminine"
+ }
+ ],
+ "עלצת־": [
+ {
+ "word_nikkud": "עֶלְצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9215-eltza",
+ "gender": "feminine"
+ }
+ ],
+ "מעמד": [
+ {
+ "word_nikkud": "מַעֲמָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4001-maamad",
+ "gender": "masculine"
+ }
+ ],
+ "מעמדים": [
+ {
+ "word_nikkud": "מַעֲמָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4001-maamad",
+ "gender": "masculine"
+ }
+ ],
+ "מעמד־": [
+ {
+ "word_nikkud": "מַעֲמָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4001-maamad",
+ "gender": "masculine"
+ }
+ ],
+ "מעמדי־": [
+ {
+ "word_nikkud": "מַעֲמָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4001-maamad",
+ "gender": "masculine"
+ }
+ ],
+ "עמוד": [
+ {
+ "word_nikkud": "עַמּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3310-amud",
+ "gender": "masculine"
+ }
+ ],
+ "עמודים": [
+ {
+ "word_nikkud": "עַמּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3310-amud",
+ "gender": "masculine"
+ }
+ ],
+ "עמוד־": [
+ {
+ "word_nikkud": "עַמּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3310-amud",
+ "gender": "masculine"
+ }
+ ],
+ "עמודי־": [
+ {
+ "word_nikkud": "עַמּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3310-amud",
+ "gender": "masculine"
+ }
+ ],
+ "עמידות": [
+ {
+ "word_nikkud": "עָמִידוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4585-amidut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֲמִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4583-amida",
+ "gender": "feminine"
+ }
+ ],
+ "עמידות־": [
+ {
+ "word_nikkud": "עָמִידוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4585-amidut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עֲמִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4583-amida",
+ "gender": "feminine"
+ }
+ ],
+ "עמידה": [
+ {
+ "word_nikkud": "עֲמִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4583-amida",
+ "gender": "feminine"
+ }
+ ],
+ "עמידת־": [
+ {
+ "word_nikkud": "עֲמִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4583-amida",
+ "gender": "feminine"
+ }
+ ],
+ "עמדה": [
+ {
+ "word_nikkud": "עֶמְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4900-emda",
+ "gender": "feminine"
+ }
+ ],
+ "עמדות": [
+ {
+ "word_nikkud": "עֶמְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4900-emda",
+ "gender": "feminine"
+ }
+ ],
+ "עמדת־": [
+ {
+ "word_nikkud": "עֶמְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4900-emda",
+ "gender": "feminine"
+ }
+ ],
+ "עמדות־": [
+ {
+ "word_nikkud": "עֶמְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4900-emda",
+ "gender": "feminine"
+ }
+ ],
+ "מועמדות": [
+ {
+ "word_nikkud": "מָעֳמָדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5481-moomadut",
+ "gender": "feminine"
+ }
+ ],
+ "מועמדויות": [
+ {
+ "word_nikkud": "מָעֳמָדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5481-moomadut",
+ "gender": "feminine"
+ }
+ ],
+ "מועמדות־": [
+ {
+ "word_nikkud": "מָעֳמָדוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5481-moomadut",
+ "gender": "feminine"
+ }
+ ],
+ "מועמדויות־": [
+ {
+ "word_nikkud": "מָעֳמָדוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5481-moomadut",
+ "gender": "feminine"
+ }
+ ],
+ "התעמלות": [
+ {
+ "word_nikkud": "הִתְעַמְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3025-hitamlut",
+ "gender": "feminine"
+ }
+ ],
+ "התעמלות־": [
+ {
+ "word_nikkud": "הִתְעַמְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3025-hitamlut",
+ "gender": "feminine"
+ }
+ ],
+ "עמל": [
+ {
+ "word_nikkud": "עָמָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8191-amal",
+ "gender": "masculine"
+ }
+ ],
+ "עמל־": [
+ {
+ "word_nikkud": "עָמָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8191-amal",
+ "gender": "masculine"
+ }
+ ],
+ "עמלה": [
+ {
+ "word_nikkud": "עַמְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8485-amla",
+ "gender": "feminine"
+ }
+ ],
+ "עמלות": [
+ {
+ "word_nikkud": "עַמְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8485-amla",
+ "gender": "feminine"
+ }
+ ],
+ "עמלת־": [
+ {
+ "word_nikkud": "עַמְלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8485-amla",
+ "gender": "feminine"
+ }
+ ],
+ "עמלות־": [
+ {
+ "word_nikkud": "עַמְלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8485-amla",
+ "gender": "feminine"
+ }
+ ],
+ "תעמולה": [
+ {
+ "word_nikkud": "תַּעֲמוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6896-taamula",
+ "gender": "feminine"
+ }
+ ],
+ "תעמולות": [
+ {
+ "word_nikkud": "תַּעֲמוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6896-taamula",
+ "gender": "feminine"
+ }
+ ],
+ "תעמולת־": [
+ {
+ "word_nikkud": "תַּעֲמוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6896-taamula",
+ "gender": "feminine"
+ }
+ ],
+ "תעמולות־": [
+ {
+ "word_nikkud": "תַּעֲמוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6896-taamula",
+ "gender": "feminine"
+ }
+ ],
+ "עם": [
+ {
+ "word_nikkud": "עַם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5928-am",
+ "gender": "masculine"
+ }
+ ],
+ "עמים": [
+ {
+ "word_nikkud": "עַם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5928-am",
+ "gender": "masculine"
+ }
+ ],
+ "עם־": [
+ {
+ "word_nikkud": "עַם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5928-am",
+ "gender": "masculine"
+ }
+ ],
+ "עמי־": [
+ {
+ "word_nikkud": "עַם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5928-am",
+ "gender": "masculine"
+ }
+ ],
+ "עומס": [
+ {
+ "word_nikkud": "עֹמֶס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5708-omes",
+ "gender": "masculine"
+ }
+ ],
+ "עומסים": [
+ {
+ "word_nikkud": "עֹמֶס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5708-omes",
+ "gender": "masculine"
+ }
+ ],
+ "עומס־": [
+ {
+ "word_nikkud": "עֹמֶס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5708-omes",
+ "gender": "masculine"
+ }
+ ],
+ "עומסי־": [
+ {
+ "word_nikkud": "עֹמֶס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5708-omes",
+ "gender": "masculine"
+ }
+ ],
+ "עמק": [
+ {
+ "word_nikkud": "עֵמֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3667-emek",
+ "gender": "masculine"
+ }
+ ],
+ "עמקים": [
+ {
+ "word_nikkud": "עֵמֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3667-emek",
+ "gender": "masculine"
+ }
+ ],
+ "עמק־": [
+ {
+ "word_nikkud": "עֵמֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3667-emek",
+ "gender": "masculine"
+ }
+ ],
+ "עמקי־": [
+ {
+ "word_nikkud": "עֵמֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3667-emek",
+ "gender": "masculine"
+ }
+ ],
+ "עומר": [
+ {
+ "word_nikkud": "עֹמֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5252-omer",
+ "gender": "masculine"
+ }
+ ],
+ "עומרים": [
+ {
+ "word_nikkud": "עֹמֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5252-omer",
+ "gender": "masculine"
+ }
+ ],
+ "עומר־": [
+ {
+ "word_nikkud": "עֹמֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5252-omer",
+ "gender": "masculine"
+ }
+ ],
+ "עומרי־": [
+ {
+ "word_nikkud": "עֹמֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5252-omer",
+ "gender": "masculine"
+ }
+ ],
+ "עמותה": [
+ {
+ "word_nikkud": "עֲמֻתָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3962-amuta",
+ "gender": "feminine"
+ }
+ ],
+ "עמותות": [
+ {
+ "word_nikkud": "עֲמֻתָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3962-amuta",
+ "gender": "feminine"
+ }
+ ],
+ "עמותת־": [
+ {
+ "word_nikkud": "עֲמֻתָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3962-amuta",
+ "gender": "feminine"
+ }
+ ],
+ "עמותות־": [
+ {
+ "word_nikkud": "עֲמֻתָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3962-amuta",
+ "gender": "feminine"
+ }
+ ],
+ "עימות": [
+ {
+ "word_nikkud": "עִמּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3153-imut",
+ "gender": "masculine"
+ }
+ ],
+ "עימותים": [
+ {
+ "word_nikkud": "עִמּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3153-imut",
+ "gender": "masculine"
+ }
+ ],
+ "עימות־": [
+ {
+ "word_nikkud": "עִמּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3153-imut",
+ "gender": "masculine"
+ }
+ ],
+ "עימותי־": [
+ {
+ "word_nikkud": "עִמּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3153-imut",
+ "gender": "masculine"
+ }
+ ],
+ "מעמת": [
+ {
+ "word_nikkud": "מַעֲמָת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3157-maamat",
+ "gender": "masculine"
+ }
+ ],
+ "מעמתים": [
+ {
+ "word_nikkud": "מַעֲמָת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3157-maamat",
+ "gender": "masculine"
+ }
+ ],
+ "מעמת־": [
+ {
+ "word_nikkud": "מַעֲמָת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3157-maamat",
+ "gender": "masculine"
+ }
+ ],
+ "מעמתי־": [
+ {
+ "word_nikkud": "מַעֲמָת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3157-maamat",
+ "gender": "masculine"
+ }
+ ],
+ "עמית": [
+ {
+ "word_nikkud": "עָמִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8729-amit",
+ "gender": "masculine"
+ }
+ ],
+ "עמיתים": [
+ {
+ "word_nikkud": "עָמִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8729-amit",
+ "gender": "masculine"
+ }
+ ],
+ "עמית־": [
+ {
+ "word_nikkud": "עָמִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8729-amit",
+ "gender": "masculine"
+ }
+ ],
+ "עמיתי־": [
+ {
+ "word_nikkud": "עָמִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8729-amit",
+ "gender": "masculine"
+ }
+ ],
+ "עניבה": [
+ {
+ "word_nikkud": "עֲנִיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4640-aniva",
+ "gender": "feminine"
+ }
+ ],
+ "עניבות": [
+ {
+ "word_nikkud": "עֲנִיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4640-aniva",
+ "gender": "feminine"
+ }
+ ],
+ "עניבת־": [
+ {
+ "word_nikkud": "עֲנִיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4640-aniva",
+ "gender": "feminine"
+ }
+ ],
+ "עניבות־": [
+ {
+ "word_nikkud": "עֲנִיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4640-aniva",
+ "gender": "feminine"
+ }
+ ],
+ "ענבר": [
+ {
+ "word_nikkud": "עִנְבָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6719-inbar",
+ "gender": "masculine"
+ }
+ ],
+ "ענברים": [
+ {
+ "word_nikkud": "עִנְבָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6719-inbar",
+ "gender": "masculine"
+ }
+ ],
+ "ענבר־": [
+ {
+ "word_nikkud": "עִנְבָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6719-inbar",
+ "gender": "masculine"
+ }
+ ],
+ "ענברי־": [
+ {
+ "word_nikkud": "עִנְבָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6719-inbar",
+ "gender": "masculine"
+ }
+ ],
+ "עונג": [
+ {
+ "word_nikkud": "עֹנֶג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8630-oneg",
+ "gender": "masculine"
+ }
+ ],
+ "עונגים": [
+ {
+ "word_nikkud": "עֹנֶג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8630-oneg",
+ "gender": "masculine"
+ }
+ ],
+ "עונג־": [
+ {
+ "word_nikkud": "עֹנֶג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8630-oneg",
+ "gender": "masculine"
+ }
+ ],
+ "עונגי־": [
+ {
+ "word_nikkud": "עֹנֶג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8630-oneg",
+ "gender": "masculine"
+ }
+ ],
+ "תענוג": [
+ {
+ "word_nikkud": "תַּעֲנוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3995-taanug",
+ "gender": "masculine"
+ }
+ ],
+ "תענוגות": [
+ {
+ "word_nikkud": "תַּעֲנוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3995-taanug",
+ "gender": "masculine"
+ }
+ ],
+ "תענוג־": [
+ {
+ "word_nikkud": "תַּעֲנוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3995-taanug",
+ "gender": "masculine"
+ }
+ ],
+ "תענוגות־": [
+ {
+ "word_nikkud": "תַּעֲנוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3995-taanug",
+ "gender": "masculine"
+ }
+ ],
+ "ענווה": [
+ {
+ "word_nikkud": "עֲנָוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7185-anava",
+ "gender": "feminine"
+ }
+ ],
+ "ענוות־": [
+ {
+ "word_nikkud": "עֲנָוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7185-anava",
+ "gender": "feminine"
+ }
+ ],
+ "עינוי": [
+ {
+ "word_nikkud": "עִנּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8643-inuy",
+ "gender": "masculine"
+ }
+ ],
+ "עינויים": [
+ {
+ "word_nikkud": "עִנּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8643-inuy",
+ "gender": "masculine"
+ }
+ ],
+ "עינוי־": [
+ {
+ "word_nikkud": "עִנּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8643-inuy",
+ "gender": "masculine"
+ }
+ ],
+ "עינויי־": [
+ {
+ "word_nikkud": "עִנּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8643-inuy",
+ "gender": "masculine"
+ }
+ ],
+ "עוני": [
+ {
+ "word_nikkud": "עֹנִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5561-oni",
+ "gender": "masculine"
+ }
+ ],
+ "עוני־": [
+ {
+ "word_nikkud": "עֹנִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5561-oni",
+ "gender": "masculine"
+ }
+ ],
+ "היענות": [
+ {
+ "word_nikkud": "הֵעָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5779-heanut",
+ "gender": "feminine"
+ }
+ ],
+ "היענויות": [
+ {
+ "word_nikkud": "הֵעָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5779-heanut",
+ "gender": "feminine"
+ }
+ ],
+ "היענות־": [
+ {
+ "word_nikkud": "הֵעָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5779-heanut",
+ "gender": "feminine"
+ }
+ ],
+ "היענויות־": [
+ {
+ "word_nikkud": "הֵעָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5779-heanut",
+ "gender": "feminine"
+ }
+ ],
+ "תענית": [
+ {
+ "word_nikkud": "תַּעְנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4882-taanit",
+ "gender": "feminine"
+ }
+ ],
+ "תעניות": [
+ {
+ "word_nikkud": "תַּעְנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4882-taanit",
+ "gender": "feminine"
+ }
+ ],
+ "תענית־": [
+ {
+ "word_nikkud": "תַּעְנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4882-taanit",
+ "gender": "feminine"
+ }
+ ],
+ "תעניות־": [
+ {
+ "word_nikkud": "תַּעְנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4882-taanit",
+ "gender": "feminine"
+ }
+ ],
+ "מענה": [
+ {
+ "word_nikkud": "מַעֲנֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5351-maane",
+ "gender": "masculine"
+ }
+ ],
+ "מענות": [
+ {
+ "word_nikkud": "מַעֲנֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5351-maane",
+ "gender": "masculine"
+ }
+ ],
+ "מענה־": [
+ {
+ "word_nikkud": "מַעֲנֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5351-maane",
+ "gender": "masculine"
+ }
+ ],
+ "מענות־": [
+ {
+ "word_nikkud": "מַעֲנֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5351-maane",
+ "gender": "masculine"
+ }
+ ],
+ "עניין": [
+ {
+ "word_nikkud": "עִנְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5986-inyan",
+ "gender": "masculine"
+ }
+ ],
+ "עניינים": [
+ {
+ "word_nikkud": "עִנְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5986-inyan",
+ "gender": "masculine"
+ }
+ ],
+ "עניין־": [
+ {
+ "word_nikkud": "עִנְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5986-inyan",
+ "gender": "masculine"
+ }
+ ],
+ "ענייני־": [
+ {
+ "word_nikkud": "עִנְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5986-inyan",
+ "gender": "masculine"
+ }
+ ],
+ "ענות": [
+ {
+ "word_nikkud": "עַנּוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8620-anot",
+ "gender": "feminine"
+ }
+ ],
+ "ענות־": [
+ {
+ "word_nikkud": "עַנּוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8620-anot",
+ "gender": "feminine"
+ }
+ ],
+ "התעניינות": [
+ {
+ "word_nikkud": "הִתְעַנְיְנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7804-hitanyenut",
+ "gender": "feminine"
+ }
+ ],
+ "התעניינויות": [
+ {
+ "word_nikkud": "הִתְעַנְיְנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7804-hitanyenut",
+ "gender": "feminine"
+ }
+ ],
+ "התעניינות־": [
+ {
+ "word_nikkud": "הִתְעַנְיְנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7804-hitanyenut",
+ "gender": "feminine"
+ }
+ ],
+ "התעניינויות־": [
+ {
+ "word_nikkud": "הִתְעַנְיְנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7804-hitanyenut",
+ "gender": "feminine"
+ }
+ ],
+ "ענן": [
+ {
+ "word_nikkud": "עָנָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3393-anan",
+ "gender": "masculine"
+ }
+ ],
+ "עננים": [
+ {
+ "word_nikkud": "עָנָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3393-anan",
+ "gender": "masculine"
+ }
+ ],
+ "ענן־": [
+ {
+ "word_nikkud": "עָנָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3393-anan",
+ "gender": "masculine"
+ }
+ ],
+ "ענני־": [
+ {
+ "word_nikkud": "עָנָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3393-anan",
+ "gender": "masculine"
+ }
+ ],
+ "עננות": [
+ {
+ "word_nikkud": "עֲנָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8309-ananut",
+ "gender": "feminine"
+ }
+ ],
+ "עננות־": [
+ {
+ "word_nikkud": "עֲנָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8309-ananut",
+ "gender": "feminine"
+ }
+ ],
+ "ענף": [
+ {
+ "word_nikkud": "עָנָף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7596-anaf",
+ "gender": "masculine"
+ }
+ ],
+ "ענפים": [
+ {
+ "word_nikkud": "עָנָף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7596-anaf",
+ "gender": "masculine"
+ }
+ ],
+ "ענף־": [
+ {
+ "word_nikkud": "עָנָף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7596-anaf",
+ "gender": "masculine"
+ }
+ ],
+ "ענפי־": [
+ {
+ "word_nikkud": "עָנָף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7596-anaf",
+ "gender": "masculine"
+ }
+ ],
+ "ענק": [
+ {
+ "word_nikkud": "עֲנָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4918-anak",
+ "gender": "masculine"
+ }
+ ],
+ "ענקים": [
+ {
+ "word_nikkud": "עֲנָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4918-anak",
+ "gender": "masculine"
+ }
+ ],
+ "ענק־": [
+ {
+ "word_nikkud": "עֲנָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4918-anak",
+ "gender": "masculine"
+ }
+ ],
+ "ענקי־": [
+ {
+ "word_nikkud": "עֲנָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4918-anak",
+ "gender": "masculine"
+ }
+ ],
+ "מענק": [
+ {
+ "word_nikkud": "מַעֲנָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7665-maanak",
+ "gender": "masculine"
+ }
+ ],
+ "מענקים": [
+ {
+ "word_nikkud": "מַעֲנָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7665-maanak",
+ "gender": "masculine"
+ }
+ ],
+ "מענק־": [
+ {
+ "word_nikkud": "מַעֲנָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7665-maanak",
+ "gender": "masculine"
+ }
+ ],
+ "מענקי־": [
+ {
+ "word_nikkud": "מַעֲנָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7665-maanak",
+ "gender": "masculine"
+ }
+ ],
+ "עונש": [
+ {
+ "word_nikkud": "עֹנֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3214-onesh",
+ "gender": "masculine"
+ }
+ ],
+ "עונשים": [
+ {
+ "word_nikkud": "עֹנֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3214-onesh",
+ "gender": "masculine"
+ }
+ ],
+ "עונש־": [
+ {
+ "word_nikkud": "עֹנֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3214-onesh",
+ "gender": "masculine"
+ }
+ ],
+ "עונשי־": [
+ {
+ "word_nikkud": "עֹנֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3214-onesh",
+ "gender": "masculine"
+ }
+ ],
+ "עיסוי": [
+ {
+ "word_nikkud": "עִסּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2988-isuy",
+ "gender": "masculine"
+ }
+ ],
+ "עיסויים": [
+ {
+ "word_nikkud": "עִסּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2988-isuy",
+ "gender": "masculine"
+ }
+ ],
+ "עיסוי־": [
+ {
+ "word_nikkud": "עִסּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2988-isuy",
+ "gender": "masculine"
+ }
+ ],
+ "עיסויי־": [
+ {
+ "word_nikkud": "עִסּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2988-isuy",
+ "gender": "masculine"
+ }
+ ],
+ "עסיס": [
+ {
+ "word_nikkud": "עָסִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5503-asis",
+ "gender": "masculine"
+ }
+ ],
+ "עסיסים": [
+ {
+ "word_nikkud": "עָסִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5503-asis",
+ "gender": "masculine"
+ }
+ ],
+ "עסיס־": [
+ {
+ "word_nikkud": "עָסִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5503-asis",
+ "gender": "masculine"
+ }
+ ],
+ "עסיסי־": [
+ {
+ "word_nikkud": "עָסִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5503-asis",
+ "gender": "masculine"
+ }
+ ],
+ "עסקה": [
+ {
+ "word_nikkud": "עִסְקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4706-iska",
+ "gender": "feminine"
+ }
+ ],
+ "עסקאות": [
+ {
+ "word_nikkud": "עִסְקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4706-iska",
+ "gender": "feminine"
+ }
+ ],
+ "עסקת־": [
+ {
+ "word_nikkud": "עִסְקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4706-iska",
+ "gender": "feminine"
+ }
+ ],
+ "עסקות־": [
+ {
+ "word_nikkud": "עִסְקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4706-iska",
+ "gender": "feminine"
+ }
+ ],
+ "תעסוקה": [
+ {
+ "word_nikkud": "תַּעֲסוּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8422-taasuka",
+ "gender": "feminine"
+ }
+ ],
+ "תעסוקות": [
+ {
+ "word_nikkud": "תַּעֲסוּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8422-taasuka",
+ "gender": "feminine"
+ }
+ ],
+ "תעסוקת־": [
+ {
+ "word_nikkud": "תַּעֲסוּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8422-taasuka",
+ "gender": "feminine"
+ }
+ ],
+ "תעסוקות־": [
+ {
+ "word_nikkud": "תַּעֲסוּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8422-taasuka",
+ "gender": "feminine"
+ }
+ ],
+ "עיסוק": [
+ {
+ "word_nikkud": "עִסּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6492-isuk",
+ "gender": "masculine"
+ }
+ ],
+ "עיסוקים": [
+ {
+ "word_nikkud": "עִסּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6492-isuk",
+ "gender": "masculine"
+ }
+ ],
+ "עיסוק־": [
+ {
+ "word_nikkud": "עִסּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6492-isuk",
+ "gender": "masculine"
+ }
+ ],
+ "עיסוקי־": [
+ {
+ "word_nikkud": "עִסּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6492-isuk",
+ "gender": "masculine"
+ }
+ ],
+ "עסק": [
+ {
+ "word_nikkud": "עֵסֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6757-esek",
+ "gender": "masculine"
+ }
+ ],
+ "עסקים": [
+ {
+ "word_nikkud": "עֵסֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6757-esek",
+ "gender": "masculine"
+ }
+ ],
+ "עסק־": [
+ {
+ "word_nikkud": "עֵסֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6757-esek",
+ "gender": "masculine"
+ }
+ ],
+ "עסקי־": [
+ {
+ "word_nikkud": "עֵסֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6757-esek",
+ "gender": "masculine"
+ }
+ ],
+ "העפלה": [
+ {
+ "word_nikkud": "הַעְפָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4591-haapala",
+ "gender": "feminine"
+ }
+ ],
+ "העפלות": [
+ {
+ "word_nikkud": "הַעְפָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4591-haapala",
+ "gender": "feminine"
+ }
+ ],
+ "העפלת־": [
+ {
+ "word_nikkud": "הַעְפָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4591-haapala",
+ "gender": "feminine"
+ }
+ ],
+ "העפלות־": [
+ {
+ "word_nikkud": "הַעְפָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4591-haapala",
+ "gender": "feminine"
+ }
+ ],
+ "עפעף": [
+ {
+ "word_nikkud": "עַפְעַַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6602-afaf",
+ "gender": ""
+ }
+ ],
+ "עפעפיים": [
+ {
+ "word_nikkud": "עַפְעַַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6602-afaf",
+ "gender": ""
+ }
+ ],
+ "עפעף־": [
+ {
+ "word_nikkud": "עַפְעַַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6602-afaf",
+ "gender": ""
+ }
+ ],
+ "עפעפי־": [
+ {
+ "word_nikkud": "עַפְעַַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6602-afaf",
+ "gender": ""
+ }
+ ],
+ "עפיפון": [
+ {
+ "word_nikkud": "עֲפִיפוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9014-afifon",
+ "gender": "masculine"
+ }
+ ],
+ "עפיפונים": [
+ {
+ "word_nikkud": "עֲפִיפוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9014-afifon",
+ "gender": "masculine"
+ }
+ ],
+ "עפיפון־": [
+ {
+ "word_nikkud": "עֲפִיפוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9014-afifon",
+ "gender": "masculine"
+ }
+ ],
+ "עפיפוני־": [
+ {
+ "word_nikkud": "עֲפִיפוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9014-afifon",
+ "gender": "masculine"
+ }
+ ],
+ "עפיצות": [
+ {
+ "word_nikkud": "עֲפִיצוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6569-afitzut",
+ "gender": "feminine"
+ }
+ ],
+ "עפיצות־": [
+ {
+ "word_nikkud": "עֲפִיצוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6569-afitzut",
+ "gender": "feminine"
+ }
+ ],
+ "עיפרון": [
+ {
+ "word_nikkud": "עִפָּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3595-iparon",
+ "gender": "masculine"
+ }
+ ],
+ "עפרונות": [
+ {
+ "word_nikkud": "עִפָּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3595-iparon",
+ "gender": "masculine"
+ }
+ ],
+ "עפרון־": [
+ {
+ "word_nikkud": "עִפָּרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3595-iparon",
+ "gender": "masculine"
+ }
+ ],
+ "עפרונות־": [
+ {
+ "word_nikkud": "עִפָּרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3595-iparon",
+ "gender": "masculine"
+ }
+ ],
+ "עפר": [
+ {
+ "word_nikkud": "עָפָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8265-afar",
+ "gender": "masculine"
+ }
+ ],
+ "עפר־": [
+ {
+ "word_nikkud": "עָפָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8265-afar",
+ "gender": "masculine"
+ }
+ ],
+ "עצב": [
+ {
+ "word_nikkud": "עָצָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3124-atzav",
+ "gender": "masculine"
+ }
+ ],
+ "עצבים": [
+ {
+ "word_nikkud": "עָצָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3124-atzav",
+ "gender": "masculine"
+ }
+ ],
+ "עצב־": [
+ {
+ "word_nikkud": "עָצָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3124-atzav",
+ "gender": "masculine"
+ }
+ ],
+ "עצבי־": [
+ {
+ "word_nikkud": "עָצָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3124-atzav",
+ "gender": "masculine"
+ }
+ ],
+ "עיצוב": [
+ {
+ "word_nikkud": "עִצּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4368-itzuv",
+ "gender": "masculine"
+ }
+ ],
+ "עיצובים": [
+ {
+ "word_nikkud": "עִצּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4368-itzuv",
+ "gender": "masculine"
+ }
+ ],
+ "עיצוב־": [
+ {
+ "word_nikkud": "עִצּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4368-itzuv",
+ "gender": "masculine"
+ }
+ ],
+ "עיצובי־": [
+ {
+ "word_nikkud": "עִצּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4368-itzuv",
+ "gender": "masculine"
+ }
+ ],
+ "עצבות": [
+ {
+ "word_nikkud": "עַצְבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8905-atzvut",
+ "gender": "feminine"
+ }
+ ],
+ "עצבות־": [
+ {
+ "word_nikkud": "עַצְבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8905-atzvut",
+ "gender": "feminine"
+ }
+ ],
+ "עוצבה": [
+ {
+ "word_nikkud": "עֻצְבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9054-utzba",
+ "gender": "feminine"
+ }
+ ],
+ "עוצבות": [
+ {
+ "word_nikkud": "עֻצְבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9054-utzba",
+ "gender": "feminine"
+ }
+ ],
+ "עוצבת־": [
+ {
+ "word_nikkud": "עֻצְבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9054-utzba",
+ "gender": "feminine"
+ }
+ ],
+ "עוצבות־": [
+ {
+ "word_nikkud": "עֻצְבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9054-utzba",
+ "gender": "feminine"
+ }
+ ],
+ "מעצב": [
+ {
+ "word_nikkud": "מְעַצֵּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6804-meatzev",
+ "gender": "masculine"
+ }
+ ],
+ "מעצבים": [
+ {
+ "word_nikkud": "מְעַצֵּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6804-meatzev",
+ "gender": "masculine"
+ }
+ ],
+ "מעצב־": [
+ {
+ "word_nikkud": "מְעַצֵּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6804-meatzev",
+ "gender": "masculine"
+ }
+ ],
+ "מעצבי־": [
+ {
+ "word_nikkud": "מְעַצֵּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6804-meatzev",
+ "gender": "masculine"
}
],
"עצבנות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְבָּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9041-atzbanut",
+ "gender": ""
}
],
- "עצבן": [
+ "עצבנות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְבָּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9041-atzbanut",
+ "gender": ""
}
],
- "אעצבן": [
+ "עץ": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֵץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4138-etz",
+ "gender": "masculine"
}
],
- "נעצבן": [
+ "עצים": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֵץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4138-etz",
+ "gender": "masculine"
}
],
- "עוצבנתי": [
+ "עץ־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֵץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4138-etz",
+ "gender": "masculine"
}
],
- "מעצבנים": [
+ "עצי־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֵץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4138-etz",
+ "gender": "masculine"
}
],
- "תעוצבני": [
+ "עצלן": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְלָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3410-atzlan",
+ "gender": "masculine"
}
],
- "עצבנה!": [
+ "עצלנים": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְלָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3410-atzlan",
+ "gender": "masculine"
}
],
- "אעוצבן": [
+ "עצלן־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְלָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3410-atzlan",
+ "gender": "masculine"
}
],
- "מעצבן": [
+ "עצלני־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְלָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3410-atzlan",
+ "gender": "masculine"
}
],
- "עצבנה": [
+ "עצלות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3649-atzlut",
+ "gender": "feminine"
}
],
- "עצבנתם": [
+ "עצלות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3649-atzlut",
+ "gender": "feminine"
}
],
- "עוצבנה": [
+ "התעצמות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "הִתְעַצְּמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8594-hitatzmut",
+ "gender": "feminine"
}
],
- "עצבני!": [
+ "התעצמויות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "הִתְעַצְּמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8594-hitatzmut",
+ "gender": "feminine"
}
],
- "עצבנו": [
+ "התעצמות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "הִתְעַצְּמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8594-hitatzmut",
+ "gender": "feminine"
}
],
- "מעוצבנות": [
+ "התעצמויות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "הִתְעַצְּמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8594-hitatzmut",
+ "gender": "feminine"
}
],
- "תעצבנו": [
+ "מעצמה": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "מַעֲצָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5649-maatzama",
+ "gender": "feminine"
}
],
- "להתעצבן": [
+ "מעצמות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "מַעֲצָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5649-maatzama",
+ "gender": "feminine"
}
],
- "עוצבן": [
+ "מעצמת־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "מַעֲצָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5649-maatzama",
+ "gender": "feminine"
}
],
- "עוצבנת": [
+ "מעצמות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "מַעֲצָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5649-maatzama",
+ "gender": "feminine"
}
],
- "מעוצבנת": [
+ "עצמאות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְמָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6987-atzmaut",
+ "gender": "feminine"
}
],
- "מעוצבן": [
+ "עצמאויות": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְמָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6987-atzmaut",
+ "gender": "feminine"
}
],
- "יעוצבנו": [
+ "עצמאות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְמָאוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6987-atzmaut",
+ "gender": "feminine"
}
],
- "עצבנו!": [
+ "עצמאויות־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עַצְמָאוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6987-atzmaut",
+ "gender": "feminine"
}
],
- "יעצבנו": [
+ "עוצמה": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עָצְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3234-otzma",
+ "gender": "feminine"
}
],
- "עוצבנתם": [
+ "עוצמת־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עָצְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3234-otzma",
+ "gender": "feminine"
}
],
- "ע - צ - ב - ן": [
+ "עצם": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֶצֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3706-etzem",
+ "gender": "masculine"
}
],
- "עצבנתן": [
+ "עצמים": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֶצֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3706-etzem",
+ "gender": "masculine"
}
],
- "עצבנת": [
+ "עצם־": [
{
- "word_nikkud": "לְעַצְבֵּן",
- "form_type": "conjugation",
- "pos": "Verb",
- "slug": "1536-leatzben"
+ "word_nikkud": "עֶצֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3706-etzem",
+ "gender": "masculine"
+ }
+ ],
+ "עצמי־": [
+ {
+ "word_nikkud": "עֶצֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3706-etzem",
+ "gender": "masculine"
+ }
+ ],
+ "עצומה": [
+ {
+ "word_nikkud": "עֲצוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4926-atzuma",
+ "gender": "feminine"
+ }
+ ],
+ "עצומות": [
+ {
+ "word_nikkud": "עֲצוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4926-atzuma",
+ "gender": "feminine"
+ }
+ ],
+ "עצומת־": [
+ {
+ "word_nikkud": "עֲצוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4926-atzuma",
+ "gender": "feminine"
+ }
+ ],
+ "עצומות־": [
+ {
+ "word_nikkud": "עֲצוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4926-atzuma",
+ "gender": "feminine"
+ }
+ ],
+ "עיצום": [
+ {
+ "word_nikkud": "עִצּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3878-itzum",
+ "gender": "masculine"
+ }
+ ],
+ "עיצומים": [
+ {
+ "word_nikkud": "עִצּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3878-itzum",
+ "gender": "masculine"
+ }
+ ],
+ "עיצום־": [
+ {
+ "word_nikkud": "עִצּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3878-itzum",
+ "gender": "masculine"
+ }
+ ],
+ "עיצומי־": [
+ {
+ "word_nikkud": "עִצּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3878-itzum",
+ "gender": "masculine"
+ }
+ ],
+ "עציץ": [
+ {
+ "word_nikkud": "עָצִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6986-atzitz",
+ "gender": "masculine"
+ }
+ ],
+ "עציצים": [
+ {
+ "word_nikkud": "עָצִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6986-atzitz",
+ "gender": "masculine"
+ }
+ ],
+ "עציץ־": [
+ {
+ "word_nikkud": "עָצִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6986-atzitz",
+ "gender": "masculine"
+ }
+ ],
+ "עציצי־": [
+ {
+ "word_nikkud": "עָצִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6986-atzitz",
+ "gender": "masculine"
+ }
+ ],
+ "עצירות": [
+ {
+ "word_nikkud": "עֲצִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6692-atzirut",
+ "gender": "feminine"
+ }
+ ],
+ "עצירויות": [
+ {
+ "word_nikkud": "עֲצִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6692-atzirut",
+ "gender": "feminine"
+ }
+ ],
+ "עצירות־": [
+ {
+ "word_nikkud": "עֲצִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6692-atzirut",
+ "gender": "feminine"
+ }
+ ],
+ "עצירויות־": [
+ {
+ "word_nikkud": "עֲצִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6692-atzirut",
+ "gender": "feminine"
+ }
+ ],
+ "מעצר": [
+ {
+ "word_nikkud": "מַעֲצָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4450-maatzar",
+ "gender": "masculine"
+ }
+ ],
+ "מעצרים": [
+ {
+ "word_nikkud": "מַעֲצָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4450-maatzar",
+ "gender": "masculine"
+ }
+ ],
+ "מעצר־": [
+ {
+ "word_nikkud": "מַעֲצָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4450-maatzar",
+ "gender": "masculine"
+ }
+ ],
+ "מעצרי־": [
+ {
+ "word_nikkud": "מַעֲצָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4450-maatzar",
+ "gender": "masculine"
+ }
+ ],
+ "עצר": [
+ {
+ "word_nikkud": "עֶצֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8057-etzer",
+ "gender": "masculine"
+ }
+ ],
+ "עצרים": [
+ {
+ "word_nikkud": "עֶצֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8057-etzer",
+ "gender": "masculine"
+ }
+ ],
+ "עצר־": [
+ {
+ "word_nikkud": "עֶצֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8057-etzer",
+ "gender": "masculine"
+ }
+ ],
+ "עצרי־": [
+ {
+ "word_nikkud": "עֶצֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8057-etzer",
+ "gender": "masculine"
+ }
+ ],
+ "עצרת": [
+ {
+ "word_nikkud": "עֲצֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6305-atzeret",
+ "gender": "feminine"
+ }
+ ],
+ "עצרות": [
+ {
+ "word_nikkud": "עֲצֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6305-atzeret",
+ "gender": "feminine"
+ }
+ ],
+ "עצרת־": [
+ {
+ "word_nikkud": "עֲצֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6305-atzeret",
+ "gender": "feminine"
+ }
+ ],
+ "עצרות־": [
+ {
+ "word_nikkud": "עֲצֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6305-atzeret",
+ "gender": "feminine"
+ }
+ ],
+ "עקב": [
+ {
+ "word_nikkud": "עָקֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4509-akev",
+ "gender": "masculine"
+ }
+ ],
+ "עקבים": [
+ {
+ "word_nikkud": "עָקֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4509-akev",
+ "gender": "masculine"
+ }
+ ],
+ "עקב־": [
+ {
+ "word_nikkud": "עָקֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4509-akev",
+ "gender": "masculine"
+ }
+ ],
+ "עקבי־": [
+ {
+ "word_nikkud": "עָקֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4509-akev",
+ "gender": "masculine"
+ }
+ ],
+ "מעקב": [
+ {
+ "word_nikkud": "מַעֲקָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8510-maakav",
+ "gender": "masculine"
+ }
+ ],
+ "מעקבים": [
+ {
+ "word_nikkud": "מַעֲקָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8510-maakav",
+ "gender": "masculine"
+ }
+ ],
+ "מעקב־": [
+ {
+ "word_nikkud": "מַעֲקָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8510-maakav",
+ "gender": "masculine"
+ }
+ ],
+ "מעקבי־": [
+ {
+ "word_nikkud": "מַעֲקָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8510-maakav",
+ "gender": "masculine"
+ }
+ ],
+ "מעקה": [
+ {
+ "word_nikkud": "מַעֲקֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7364-maake",
+ "gender": "masculine"
+ }
+ ],
+ "מעקים": [
+ {
+ "word_nikkud": "מַעֲקֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7364-maake",
+ "gender": "masculine"
+ }
+ ],
+ "מעקות": [
+ {
+ "word_nikkud": "מַעֲקֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7364-maake",
+ "gender": "masculine"
+ }
+ ],
+ "מעקה־": [
+ {
+ "word_nikkud": "מַעֲקֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7364-maake",
+ "gender": "masculine"
+ }
+ ],
+ "מעקי־": [
+ {
+ "word_nikkud": "מַעֲקֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7364-maake",
+ "gender": "masculine"
+ }
+ ],
+ "מעקות־": [
+ {
+ "word_nikkud": "מַעֲקֶה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7364-maake",
+ "gender": "masculine"
+ }
+ ],
+ "עיקול": [
+ {
+ "word_nikkud": "עִקּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6897-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עיקולים": [
+ {
+ "word_nikkud": "עִקּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6897-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עיקול־": [
+ {
+ "word_nikkud": "עִקּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6897-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עיקולי־": [
+ {
+ "word_nikkud": "עִקּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6897-ikul",
+ "gender": "masculine"
+ }
+ ],
+ "עקיפה": [
+ {
+ "word_nikkud": "עֲקִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7707-akifa",
+ "gender": "feminine"
+ }
+ ],
+ "עקיפות": [
+ {
+ "word_nikkud": "עֲקִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7707-akifa",
+ "gender": "feminine"
+ }
+ ],
+ "עקיפת־": [
+ {
+ "word_nikkud": "עֲקִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7707-akifa",
+ "gender": "feminine"
+ }
+ ],
+ "עקיפות־": [
+ {
+ "word_nikkud": "עֲקִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7707-akifa",
+ "gender": "feminine"
+ }
+ ],
+ "עקיצה": [
+ {
+ "word_nikkud": "עֲקִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7594-akitza",
+ "gender": "feminine"
+ }
+ ],
+ "עקיצות": [
+ {
+ "word_nikkud": "עֲקִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7594-akitza",
+ "gender": "feminine"
+ }
+ ],
+ "עקיצת־": [
+ {
+ "word_nikkud": "עֲקִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7594-akitza",
+ "gender": "feminine"
+ }
+ ],
+ "עקיצות־": [
+ {
+ "word_nikkud": "עֲקִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7594-akitza",
+ "gender": "feminine"
+ }
+ ],
+ "עקצוץ": [
+ {
+ "word_nikkud": "עִקְצוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8443-iktzutz",
+ "gender": "masculine"
+ }
+ ],
+ "עקצוצים": [
+ {
+ "word_nikkud": "עִקְצוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8443-iktzutz",
+ "gender": "masculine"
+ }
+ ],
+ "עקצוץ־": [
+ {
+ "word_nikkud": "עִקְצוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8443-iktzutz",
+ "gender": "masculine"
+ }
+ ],
+ "עקצוצי־": [
+ {
+ "word_nikkud": "עִקְצוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8443-iktzutz",
+ "gender": "masculine"
+ }
+ ],
+ "עיקרון": [
+ {
+ "word_nikkud": "עִקָּרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5069-ikaron",
+ "gender": "masculine"
+ }
+ ],
+ "עקרונות": [
+ {
+ "word_nikkud": "עִקָּרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5069-ikaron",
+ "gender": "masculine"
+ }
+ ],
+ "עקרון־": [
+ {
+ "word_nikkud": "עִקָּרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5069-ikaron",
+ "gender": "masculine"
+ }
+ ],
+ "עקרונות־": [
+ {
+ "word_nikkud": "עִקָּרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5069-ikaron",
+ "gender": "masculine"
+ }
+ ],
+ "עקירה": [
+ {
+ "word_nikkud": "עֲקִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8005-akira",
+ "gender": "feminine"
+ }
+ ],
+ "עקירות": [
+ {
+ "word_nikkud": "עֲקִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8005-akira",
+ "gender": "feminine"
+ }
+ ],
+ "עקירת־": [
+ {
+ "word_nikkud": "עֲקִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8005-akira",
+ "gender": "feminine"
+ }
+ ],
+ "עקירות־": [
+ {
+ "word_nikkud": "עֲקִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8005-akira",
+ "gender": "feminine"
+ }
+ ],
+ "עקרות": [
+ {
+ "word_nikkud": "עֲקָרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8430-akarut",
+ "gender": "feminine"
+ }
+ ],
+ "עקרות־": [
+ {
+ "word_nikkud": "עֲקָרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8430-akarut",
+ "gender": "feminine"
+ }
+ ],
+ "עיקר": [
+ {
+ "word_nikkud": "עִקָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5068-ikar",
+ "gender": "masculine"
+ }
+ ],
+ "עיקרים": [
+ {
+ "word_nikkud": "עִקָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5068-ikar",
+ "gender": "masculine"
+ }
+ ],
+ "עיקר־": [
+ {
+ "word_nikkud": "עִקָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5068-ikar",
+ "gender": "masculine"
+ }
+ ],
+ "עיקרי־": [
+ {
+ "word_nikkud": "עִקָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5068-ikar",
+ "gender": "masculine"
+ }
+ ],
+ "עקור": [
+ {
+ "word_nikkud": "עָקוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9015-akur",
+ "gender": "masculine"
+ }
+ ],
+ "עקורים": [
+ {
+ "word_nikkud": "עָקוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9015-akur",
+ "gender": "masculine"
+ }
+ ],
+ "עקור־": [
+ {
+ "word_nikkud": "עָקוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9015-akur",
+ "gender": "masculine"
+ }
+ ],
+ "עקורי־": [
+ {
+ "word_nikkud": "עָקוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9015-akur",
+ "gender": "masculine"
+ }
+ ],
+ "עקרב": [
+ {
+ "word_nikkud": "עַקְרָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7633-akrav",
+ "gender": ""
+ }
+ ],
+ "עקרבים": [
+ {
+ "word_nikkud": "עַקְרָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7633-akrav",
+ "gender": ""
+ }
+ ],
+ "עקרב־": [
+ {
+ "word_nikkud": "עַקְרָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7633-akrav",
+ "gender": ""
+ }
+ ],
+ "עקרבי־": [
+ {
+ "word_nikkud": "עַקְרָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7633-akrav",
+ "gender": ""
+ }
+ ],
+ "עקרבות": [
+ {
+ "word_nikkud": "עַקְרַבּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7632-akrabut",
+ "gender": "masculine"
+ }
+ ],
+ "עקרבותים": [
+ {
+ "word_nikkud": "עַקְרַבּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7632-akrabut",
+ "gender": "masculine"
+ }
+ ],
+ "עקרבות־": [
+ {
+ "word_nikkud": "עַקְרַבּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7632-akrabut",
+ "gender": "masculine"
+ }
+ ],
+ "עקרבותי־": [
+ {
+ "word_nikkud": "עַקְרַבּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7632-akrabut",
+ "gender": "masculine"
+ }
+ ],
+ "התעקשות": [
+ {
+ "word_nikkud": "הִתְעַקְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6773-hitakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התעקשויות": [
+ {
+ "word_nikkud": "הִתְעַקְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6773-hitakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התעקשות־": [
+ {
+ "word_nikkud": "הִתְעַקְּשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6773-hitakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התעקשויות־": [
+ {
+ "word_nikkud": "הִתְעַקְּשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6773-hitakshut",
+ "gender": "feminine"
+ }
+ ],
+ "התערבות": [
+ {
+ "word_nikkud": "הִתְעָרְבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8498-hitarvut",
+ "gender": "feminine"
+ }
+ ],
+ "התערבויות": [
+ {
+ "word_nikkud": "הִתְעָרְבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8498-hitarvut",
+ "gender": "feminine"
+ }
+ ],
+ "התערבות־": [
+ {
+ "word_nikkud": "הִתְעָרְבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8498-hitarvut",
+ "gender": "feminine"
+ }
+ ],
+ "התערבויות־": [
+ {
+ "word_nikkud": "הִתְעָרְבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8498-hitarvut",
+ "gender": "feminine"
+ }
+ ],
+ "ערבה": [
+ {
+ "word_nikkud": "עֲרָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4925-arava",
+ "gender": "feminine"
+ }
+ ],
+ "ערבות": [
+ {
+ "word_nikkud": "עֲרָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4925-arava",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עַרְבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3650-arvut",
+ "gender": "feminine"
+ }
+ ],
+ "ערבת־": [
+ {
+ "word_nikkud": "עֲרָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4925-arava",
+ "gender": "feminine"
+ }
+ ],
+ "ערבות־": [
+ {
+ "word_nikkud": "עֲרָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4925-arava",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "עַרְבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3650-arvut",
+ "gender": "feminine"
+ }
+ ],
+ "ערבויות": [
+ {
+ "word_nikkud": "עַרְבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3650-arvut",
+ "gender": "feminine"
+ }
+ ],
+ "ערבויות־": [
+ {
+ "word_nikkud": "עַרְבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3650-arvut",
+ "gender": "feminine"
+ }
+ ],
+ "מערב": [
+ {
+ "word_nikkud": "מַעֲרָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3089-maarav",
+ "gender": "masculine"
+ }
+ ],
+ "מערב־": [
+ {
+ "word_nikkud": "מַעֲרָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3089-maarav",
+ "gender": "masculine"
+ }
+ ],
+ "ערב": [
+ {
+ "word_nikkud": "עֶרֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4236-erev",
+ "gender": "masculine"
+ }
+ ],
+ "ערבים": [
+ {
+ "word_nikkud": "עֶרֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4236-erev",
+ "gender": "masculine"
+ }
+ ],
+ "ערב־": [
+ {
+ "word_nikkud": "עֶרֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4236-erev",
+ "gender": "masculine"
+ }
+ ],
+ "ערבי־": [
+ {
+ "word_nikkud": "עֶרֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4236-erev",
+ "gender": "masculine"
+ }
+ ],
+ "מעריב": [
+ {
+ "word_nikkud": "מַעֲרִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8072-maariv",
+ "gender": "masculine"
+ }
+ ],
+ "עורב": [
+ {
+ "word_nikkud": "עוֹרֵב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9300-orev",
+ "gender": "masculine"
+ }
+ ],
+ "עורבים": [
+ {
+ "word_nikkud": "עוֹרֵב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9300-orev",
+ "gender": "masculine"
+ }
+ ],
+ "עורב־": [
+ {
+ "word_nikkud": "עוֹרֵב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9300-orev",
+ "gender": "masculine"
+ }
+ ],
+ "עורבי־": [
+ {
+ "word_nikkud": "עוֹרֵב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9300-orev",
+ "gender": "masculine"
+ }
+ ],
+ "ערבוב": [
+ {
+ "word_nikkud": "עִרְבּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8119-irbuv",
+ "gender": "masculine"
+ }
+ ],
+ "ערבובים": [
+ {
+ "word_nikkud": "עִרְבּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8119-irbuv",
+ "gender": "masculine"
+ }
+ ],
+ "ערבוב־": [
+ {
+ "word_nikkud": "עִרְבּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8119-irbuv",
+ "gender": "masculine"
+ }
+ ],
+ "ערבובי־": [
+ {
+ "word_nikkud": "עִרְבּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8119-irbuv",
+ "gender": "masculine"
+ }
+ ],
+ "ערוגה": [
+ {
+ "word_nikkud": "עֲרוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9244-aruga",
+ "gender": "feminine"
+ }
+ ],
+ "ערוגות": [
+ {
+ "word_nikkud": "עֲרוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9244-aruga",
+ "gender": "feminine"
+ }
+ ],
+ "ערוגת־": [
+ {
+ "word_nikkud": "עֲרוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9244-aruga",
+ "gender": "feminine"
+ }
+ ],
+ "ערוגות־": [
+ {
+ "word_nikkud": "עֲרוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9244-aruga",
+ "gender": "feminine"
+ }
+ ],
+ "ערגה": [
+ {
+ "word_nikkud": "עֶרְגָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7024-erga",
+ "gender": "feminine"
+ }
+ ],
+ "ערגות": [
+ {
+ "word_nikkud": "עֶרְגָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7024-erga",
+ "gender": "feminine"
+ }
+ ],
+ "ערגת־": [
+ {
+ "word_nikkud": "עֶרְגָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7024-erga",
+ "gender": "feminine"
+ }
+ ],
+ "ערגות־": [
+ {
+ "word_nikkud": "עֶרְגָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7024-erga",
+ "gender": "feminine"
+ }
+ ],
+ "התערות": [
+ {
+ "word_nikkud": "הִתְעָרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9078-hitarut",
+ "gender": "feminine"
+ }
+ ],
+ "התערויות": [
+ {
+ "word_nikkud": "הִתְעָרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9078-hitarut",
+ "gender": "feminine"
+ }
+ ],
+ "התערות־": [
+ {
+ "word_nikkud": "הִתְעָרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9078-hitarut",
+ "gender": "feminine"
+ }
+ ],
+ "התערויות־": [
+ {
+ "word_nikkud": "הִתְעָרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9078-hitarut",
+ "gender": "feminine"
+ }
+ ],
+ "מערכון": [
+ {
+ "word_nikkud": "מַעֲרָכוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5685-maarachon",
+ "gender": "masculine"
+ }
+ ],
+ "מערכונים": [
+ {
+ "word_nikkud": "מַעֲרָכוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5685-maarachon",
+ "gender": "masculine"
+ }
+ ],
+ "מערכון־": [
+ {
+ "word_nikkud": "מַעֲרָכוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5685-maarachon",
+ "gender": "masculine"
+ }
+ ],
+ "מערכוני־": [
+ {
+ "word_nikkud": "מַעֲרָכוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5685-maarachon",
+ "gender": "masculine"
+ }
+ ],
+ "ערך": [
+ {
+ "word_nikkud": "עֵרֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3334-erech",
+ "gender": "masculine"
+ }
+ ],
+ "ערכים": [
+ {
+ "word_nikkud": "עֵרֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3334-erech",
+ "gender": "masculine"
+ }
+ ],
+ "ערך־": [
+ {
+ "word_nikkud": "עֵרֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3334-erech",
+ "gender": "masculine"
+ }
+ ],
+ "ערכי־": [
+ {
+ "word_nikkud": "עֵרֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3334-erech",
+ "gender": "masculine"
+ }
+ ],
+ "הערכה": [
+ {
+ "word_nikkud": "הַעֲרָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3926-haaracha",
+ "gender": "feminine"
+ }
+ ],
+ "הערכות": [
+ {
+ "word_nikkud": "הַעֲרָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3926-haaracha",
+ "gender": "feminine"
+ }
+ ],
+ "הערכת־": [
+ {
+ "word_nikkud": "הַעֲרָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3926-haaracha",
+ "gender": "feminine"
+ }
+ ],
+ "הערכות־": [
+ {
+ "word_nikkud": "הַעֲרָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3926-haaracha",
+ "gender": "feminine"
+ }
+ ],
+ "מערך": [
+ {
+ "word_nikkud": "מַעֲרָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5684-maarach",
+ "gender": "masculine"
+ }
+ ],
+ "מערכים": [
+ {
+ "word_nikkud": "מַעֲרָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5684-maarach",
+ "gender": "masculine"
+ }
+ ],
+ "מערך־": [
+ {
+ "word_nikkud": "מַעֲרָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5684-maarach",
+ "gender": "masculine"
+ }
+ ],
+ "מערכי־": [
+ {
+ "word_nikkud": "מַעֲרָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5684-maarach",
+ "gender": "masculine"
+ }
+ ],
+ "מערכה": [
+ {
+ "word_nikkud": "מַעֲרָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4709-maaracha",
+ "gender": "feminine"
+ }
+ ],
+ "מערכות": [
+ {
+ "word_nikkud": "מַעֲרָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4709-maaracha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַעֲרֶכֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4710-maarechet",
+ "gender": "feminine"
+ }
+ ],
+ "מערכת־": [
+ {
+ "word_nikkud": "מַעֲרָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4709-maaracha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַעֲרֶכֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4710-maarechet",
+ "gender": "feminine"
+ }
+ ],
+ "מערכות־": [
+ {
+ "word_nikkud": "מַעֲרָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4709-maaracha",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מַעֲרֶכֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4710-maarechet",
+ "gender": "feminine"
+ }
+ ],
+ "מערכת": [
+ {
+ "word_nikkud": "מַעֲרֶכֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4710-maarechet",
+ "gender": "feminine"
+ }
+ ],
+ "מערוך": [
+ {
+ "word_nikkud": "מַעֲרוֹךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8920-maaroch",
+ "gender": "masculine"
+ }
+ ],
+ "מערוכים": [
+ {
+ "word_nikkud": "מַעֲרוֹךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8920-maaroch",
+ "gender": "masculine"
+ }
+ ],
+ "מערוך־": [
+ {
+ "word_nikkud": "מַעֲרוֹךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8920-maaroch",
+ "gender": "masculine"
+ }
+ ],
+ "מערוכי־": [
+ {
+ "word_nikkud": "מַעֲרוֹךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8920-maaroch",
+ "gender": "masculine"
+ }
+ ],
+ "עריכה": [
+ {
+ "word_nikkud": "עֲרִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7951-aricha",
+ "gender": "feminine"
+ }
+ ],
+ "עריכות": [
+ {
+ "word_nikkud": "עֲרִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7951-aricha",
+ "gender": "feminine"
+ }
+ ],
+ "עריכת־": [
+ {
+ "word_nikkud": "עֲרִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7951-aricha",
+ "gender": "feminine"
+ }
+ ],
+ "עריכות־": [
+ {
+ "word_nikkud": "עֲרִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7951-aricha",
+ "gender": "feminine"
+ }
+ ],
+ "ערכה": [
+ {
+ "word_nikkud": "עֶרְכָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6289-erka",
+ "gender": "feminine"
+ }
+ ],
+ "ערכות": [
+ {
+ "word_nikkud": "עֶרְכָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6289-erka",
+ "gender": "feminine"
+ }
+ ],
+ "ערכת־": [
+ {
+ "word_nikkud": "עֶרְכָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6289-erka",
+ "gender": "feminine"
+ }
+ ],
+ "ערכות־": [
+ {
+ "word_nikkud": "עֶרְכָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6289-erka",
+ "gender": "feminine"
+ }
+ ],
+ "תערוכה": [
+ {
+ "word_nikkud": "תַּעֲרוּכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6611-taarucha",
+ "gender": "feminine"
+ }
+ ],
+ "תערוכות": [
+ {
+ "word_nikkud": "תַּעֲרוּכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6611-taarucha",
+ "gender": "feminine"
+ }
+ ],
+ "תערוכת־": [
+ {
+ "word_nikkud": "תַּעֲרוּכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6611-taarucha",
+ "gender": "feminine"
+ }
+ ],
+ "תערוכות־": [
+ {
+ "word_nikkud": "תַּעֲרוּכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6611-taarucha",
+ "gender": "feminine"
+ }
+ ],
+ "מעריך": [
+ {
+ "word_nikkud": "מַעֲרִיךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7254-maarich",
+ "gender": "masculine"
+ }
+ ],
+ "מעריכים": [
+ {
+ "word_nikkud": "מַעֲרִיךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7254-maarich",
+ "gender": "masculine"
+ }
+ ],
+ "מעריך־": [
+ {
+ "word_nikkud": "מַעֲרִיךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7254-maarich",
+ "gender": "masculine"
+ }
+ ],
+ "מעריכי־": [
+ {
+ "word_nikkud": "מַעֲרִיךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7254-maarich",
+ "gender": "masculine"
+ }
+ ],
+ "עורלה": [
+ {
+ "word_nikkud": "עָרְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5215-orla",
+ "gender": "feminine"
+ }
+ ],
+ "עורלות": [
+ {
+ "word_nikkud": "עָרְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5215-orla",
+ "gender": "feminine"
+ }
+ ],
+ "עורלת־": [
+ {
+ "word_nikkud": "עָרְלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5215-orla",
+ "gender": "feminine"
+ }
+ ],
+ "עורלות־": [
+ {
+ "word_nikkud": "עָרְלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5215-orla",
+ "gender": "feminine"
+ }
+ ],
+ "עורמה": [
+ {
+ "word_nikkud": "עָרְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7742-orma",
+ "gender": "feminine"
+ }
+ ],
+ "עורמת־": [
+ {
+ "word_nikkud": "עָרְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7742-orma",
+ "gender": "feminine"
+ }
+ ],
+ "ערימה": [
+ {
+ "word_nikkud": "עֲרִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6813-arima",
+ "gender": "feminine"
+ }
+ ],
+ "ערימות": [
+ {
+ "word_nikkud": "עֲרִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6813-arima",
+ "gender": "feminine"
+ }
+ ],
+ "ערימת־": [
+ {
+ "word_nikkud": "עֲרִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6813-arima",
+ "gender": "feminine"
+ }
+ ],
+ "ערימות־": [
+ {
+ "word_nikkud": "עֲרִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6813-arima",
+ "gender": "feminine"
+ }
+ ],
+ "ערמון": [
+ {
+ "word_nikkud": "עַרְמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8610-armon",
+ "gender": "masculine"
+ }
+ ],
+ "ערמונים": [
+ {
+ "word_nikkud": "עַרְמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8610-armon",
+ "gender": "masculine"
+ }
+ ],
+ "ערמון־": [
+ {
+ "word_nikkud": "עַרְמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8610-armon",
+ "gender": "masculine"
+ }
+ ],
+ "ערמוני־": [
+ {
+ "word_nikkud": "עַרְמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8610-armon",
+ "gender": "masculine"
+ }
+ ],
+ "עריסה": [
+ {
+ "word_nikkud": "עֲרִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4754-arisa",
+ "gender": "feminine"
+ }
+ ],
+ "עריסות": [
+ {
+ "word_nikkud": "עֲרִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4754-arisa",
+ "gender": "feminine"
+ }
+ ],
+ "עריסת־": [
+ {
+ "word_nikkud": "עֲרִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4754-arisa",
+ "gender": "feminine"
+ }
+ ],
+ "עריסות־": [
+ {
+ "word_nikkud": "עֲרִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4754-arisa",
+ "gender": "feminine"
+ }
+ ],
+ "ערסל": [
+ {
+ "word_nikkud": "עַרְסָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8942-arsal",
+ "gender": "masculine"
+ }
+ ],
+ "ערסלים": [
+ {
+ "word_nikkud": "עַרְסָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8942-arsal",
+ "gender": "masculine"
+ }
+ ],
+ "ערסל־": [
+ {
+ "word_nikkud": "עַרְסָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8942-arsal",
+ "gender": "masculine"
+ }
+ ],
+ "ערסלי־": [
+ {
+ "word_nikkud": "עַרְסָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8942-arsal",
+ "gender": "masculine"
+ }
+ ],
+ "ערעור": [
+ {
+ "word_nikkud": "עִרְעוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5812-irur",
+ "gender": "masculine"
+ }
+ ],
+ "ערעורים": [
+ {
+ "word_nikkud": "עִרְעוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5812-irur",
+ "gender": "masculine"
+ }
+ ],
+ "ערעור־": [
+ {
+ "word_nikkud": "עִרְעוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5812-irur",
+ "gender": "masculine"
+ }
+ ],
+ "ערעורי־": [
+ {
+ "word_nikkud": "עִרְעוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5812-irur",
+ "gender": "masculine"
+ }
+ ],
+ "עורף": [
+ {
+ "word_nikkud": "עֹרֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4767-oref",
+ "gender": "masculine"
+ }
+ ],
+ "עורפים": [
+ {
+ "word_nikkud": "עֹרֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4767-oref",
+ "gender": "masculine"
+ }
+ ],
+ "עורף־": [
+ {
+ "word_nikkud": "עֹרֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4767-oref",
+ "gender": "masculine"
+ }
+ ],
+ "עורפי־": [
+ {
+ "word_nikkud": "עֹרֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4767-oref",
+ "gender": "masculine"
+ }
+ ],
+ "ערפל": [
+ {
+ "word_nikkud": "עֲרָפֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5941-arafel",
+ "gender": "masculine"
+ }
+ ],
+ "ערפלים": [
+ {
+ "word_nikkud": "עֲרָפֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5941-arafel",
+ "gender": "masculine"
+ }
+ ],
+ "ערפל־": [
+ {
+ "word_nikkud": "עֲרָפֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5941-arafel",
+ "gender": "masculine"
+ }
+ ],
+ "ערפלי־": [
+ {
+ "word_nikkud": "עֲרָפֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5941-arafel",
+ "gender": "masculine"
+ }
+ ],
+ "עריץ": [
+ {
+ "word_nikkud": "עָרִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5499-aritz",
+ "gender": "masculine"
+ }
+ ],
+ "עריצים": [
+ {
+ "word_nikkud": "עָרִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5499-aritz",
+ "gender": "masculine"
+ }
+ ],
+ "עריץ־": [
+ {
+ "word_nikkud": "עָרִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5499-aritz",
+ "gender": "masculine"
+ }
+ ],
+ "עריצי־": [
+ {
+ "word_nikkud": "עָרִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5499-aritz",
+ "gender": "masculine"
+ }
+ ],
+ "הערצה": [
+ {
+ "word_nikkud": "הַעֲרָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6035-haaratza",
+ "gender": "feminine"
+ }
+ ],
+ "הערצת־": [
+ {
+ "word_nikkud": "הַעֲרָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6035-haaratza",
+ "gender": "feminine"
+ }
+ ],
+ "ערוץ": [
+ {
+ "word_nikkud": "עָרוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7728-arutz",
+ "gender": "masculine"
+ }
+ ],
+ "ערוצים": [
+ {
+ "word_nikkud": "עָרוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7728-arutz",
+ "gender": "masculine"
+ }
+ ],
+ "ערוץ־": [
+ {
+ "word_nikkud": "עָרוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7728-arutz",
+ "gender": "masculine"
+ }
+ ],
+ "ערוצי־": [
+ {
+ "word_nikkud": "עָרוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7728-arutz",
+ "gender": "masculine"
+ }
+ ],
+ "ערק": [
+ {
+ "word_nikkud": "עָרָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8903-arak",
+ "gender": "masculine"
+ }
+ ],
+ "ערנות": [
+ {
+ "word_nikkud": "עֵרָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7974-eranut",
+ "gender": "feminine"
+ }
+ ],
+ "ערנויות": [
+ {
+ "word_nikkud": "עֵרָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7974-eranut",
+ "gender": "feminine"
+ }
+ ],
+ "ערנות־": [
+ {
+ "word_nikkud": "עֵרָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7974-eranut",
+ "gender": "feminine"
+ }
+ ],
+ "ערנויות־": [
+ {
+ "word_nikkud": "עֵרָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7974-eranut",
+ "gender": "feminine"
+ }
+ ],
+ "עוררין": [
+ {
+ "word_nikkud": "עוֹרְרִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6461-orerin",
+ "gender": ""
+ }
+ ],
+ "ערש": [
+ {
+ "word_nikkud": "עֶרֶשׂ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8336-eres",
+ "gender": "masculine"
+ }
+ ],
+ "ערשים": [
+ {
+ "word_nikkud": "עֶרֶשׂ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8336-eres",
+ "gender": "masculine"
+ }
+ ],
+ "ערש־": [
+ {
+ "word_nikkud": "עֶרֶשׂ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8336-eres",
+ "gender": "masculine"
+ }
+ ],
+ "ערשי־": [
+ {
+ "word_nikkud": "עֶרֶשׂ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8336-eres",
+ "gender": "masculine"
+ }
+ ],
+ "עש": [
+ {
+ "word_nikkud": "עָשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8250-ash",
+ "gender": "masculine"
+ }
+ ],
+ "עשים": [
+ {
+ "word_nikkud": "עָשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8250-ash",
+ "gender": "masculine"
+ }
+ ],
+ "עש־": [
+ {
+ "word_nikkud": "עָשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8250-ash",
+ "gender": "masculine"
+ }
+ ],
+ "עשי־": [
+ {
+ "word_nikkud": "עָשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8250-ash",
+ "gender": "masculine"
+ }
+ ],
+ "עשב": [
+ {
+ "word_nikkud": "עֵשֶׂב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3246-esev",
+ "gender": "masculine"
+ }
+ ],
+ "עשבים": [
+ {
+ "word_nikkud": "עֵשֶׂב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3246-esev",
+ "gender": "masculine"
+ }
+ ],
+ "עשב־": [
+ {
+ "word_nikkud": "עֵשֶׂב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3246-esev",
+ "gender": "masculine"
+ }
+ ],
+ "עשבי־": [
+ {
+ "word_nikkud": "עֵשֶׂב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3246-esev",
+ "gender": "masculine"
+ }
+ ],
+ "תעשייה": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5563-taasiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעשיות": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5563-taasiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעשיית־": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5563-taasiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעשיות־": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5563-taasiya",
+ "gender": "feminine"
+ }
+ ],
+ "מעשה": [
+ {
+ "word_nikkud": "מַעֲשֶׂה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4382-maase",
+ "gender": "masculine"
+ }
+ ],
+ "מעשים": [
+ {
+ "word_nikkud": "מַעֲשֶׂה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4382-maase",
+ "gender": "masculine"
+ }
+ ],
+ "מעשה־": [
+ {
+ "word_nikkud": "מַעֲשֶׂה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4382-maase",
+ "gender": "masculine"
+ }
+ ],
+ "מעשי־": [
+ {
+ "word_nikkud": "מַעֲשֶׂה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4382-maase",
+ "gender": "masculine"
+ }
+ ],
+ "תעשיין": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6403-taasiyan",
+ "gender": "masculine"
+ }
+ ],
+ "תעשיינים": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6403-taasiyan",
+ "gender": "masculine"
+ }
+ ],
+ "תעשיין־": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6403-taasiyan",
+ "gender": "masculine"
+ }
+ ],
+ "תעשייני־": [
+ {
+ "word_nikkud": "תַּעֲשִׂיָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6403-taasiyan",
+ "gender": "masculine"
+ }
+ ],
+ "עישון": [
+ {
+ "word_nikkud": "עִשּׁוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2989-ishun",
+ "gender": "masculine"
+ }
+ ],
+ "עישון־": [
+ {
+ "word_nikkud": "עִשּׁוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2989-ishun",
+ "gender": "masculine"
+ }
+ ],
+ "עשן": [
+ {
+ "word_nikkud": "עָשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3339-ashan",
+ "gender": "masculine"
+ }
+ ],
+ "עשנים": [
+ {
+ "word_nikkud": "עָשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3339-ashan",
+ "gender": "masculine"
+ }
+ ],
+ "עשן־": [
+ {
+ "word_nikkud": "עָשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3339-ashan",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "עָשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3339-ashan",
+ "gender": "masculine"
+ }
+ ],
+ "עשני־": [
+ {
+ "word_nikkud": "עָשָׁן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3339-ashan",
+ "gender": "masculine"
+ }
+ ],
+ "עשור": [
+ {
+ "word_nikkud": "עָשׂוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3422-asor",
+ "gender": "masculine"
+ }
+ ],
+ "עשורים": [
+ {
+ "word_nikkud": "עָשׂוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3422-asor",
+ "gender": "masculine"
+ }
+ ],
+ "עשור־": [
+ {
+ "word_nikkud": "עָשׂוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3422-asor",
+ "gender": "masculine"
+ }
+ ],
+ "עשורי־": [
+ {
+ "word_nikkud": "עָשׂוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3422-asor",
+ "gender": "masculine"
+ }
+ ],
+ "עושר": [
+ {
+ "word_nikkud": "עֹשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4885-osher",
+ "gender": "masculine"
+ }
+ ],
+ "עושר־": [
+ {
+ "word_nikkud": "עֹשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4885-osher",
+ "gender": "masculine"
+ }
+ ],
+ "עשרת": [
+ {
+ "word_nikkud": "עֲשֶׂרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8174-aseret",
+ "gender": "feminine"
+ }
+ ],
+ "עשרות": [
+ {
+ "word_nikkud": "עֲשֶׂרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8174-aseret",
+ "gender": "feminine"
+ }
+ ],
+ "עשרת־": [
+ {
+ "word_nikkud": "עֲשֶׂרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8174-aseret",
+ "gender": "feminine"
+ }
+ ],
+ "עשרות־": [
+ {
+ "word_nikkud": "עֲשֶׂרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8174-aseret",
+ "gender": "feminine"
+ }
+ ],
+ "עששת": [
+ {
+ "word_nikkud": "עַשֶּׁשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8629-asheshet",
+ "gender": "feminine"
+ }
+ ],
+ "עששת־": [
+ {
+ "word_nikkud": "עַשֶּׁשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8629-asheshet",
+ "gender": "feminine"
+ }
+ ],
+ "עששית": [
+ {
+ "word_nikkud": "עֲשָׁשִׁית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8955-ashashit",
+ "gender": "feminine"
+ }
+ ],
+ "עששיות": [
+ {
+ "word_nikkud": "עֲשָׁשִׁית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8955-ashashit",
+ "gender": "feminine"
+ }
+ ],
+ "עששית־": [
+ {
+ "word_nikkud": "עֲשָׁשִׁית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8955-ashashit",
+ "gender": "feminine"
+ }
+ ],
+ "עששיות־": [
+ {
+ "word_nikkud": "עֲשָׁשִׁית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8955-ashashit",
+ "gender": "feminine"
+ }
+ ],
+ "עתיד": [
+ {
+ "word_nikkud": "עָתִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4909-atid",
+ "gender": "masculine"
+ }
+ ],
+ "עתיד־": [
+ {
+ "word_nikkud": "עָתִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4909-atid",
+ "gender": "masculine"
+ }
+ ],
+ "עתידות": [
+ {
+ "word_nikkud": "עֲתִידוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8533-atidot",
+ "gender": "masculine"
+ }
+ ],
+ "עתידות־": [
+ {
+ "word_nikkud": "עֲתִידוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8533-atidot",
+ "gender": "masculine"
+ }
+ ],
+ "עיתוי": [
+ {
+ "word_nikkud": "עִתּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4240-ituy",
+ "gender": "masculine"
+ }
+ ],
+ "עיתויים": [
+ {
+ "word_nikkud": "עִתּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4240-ituy",
+ "gender": "masculine"
+ }
+ ],
+ "עיתוי־": [
+ {
+ "word_nikkud": "עִתּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4240-ituy",
+ "gender": "masculine"
+ }
+ ],
+ "עיתויי־": [
+ {
+ "word_nikkud": "עִתּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4240-ituy",
+ "gender": "masculine"
+ }
+ ],
+ "העתק": [
+ {
+ "word_nikkud": "הֶעְתֵּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5258-heetek",
+ "gender": "masculine"
+ }
+ ],
+ "העתקים": [
+ {
+ "word_nikkud": "הֶעְתֵּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5258-heetek",
+ "gender": "masculine"
+ }
+ ],
+ "העתק־": [
+ {
+ "word_nikkud": "הֶעְתֵּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5258-heetek",
+ "gender": "masculine"
+ }
+ ],
+ "העתקי־": [
+ {
+ "word_nikkud": "הֶעְתֵּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5258-heetek",
+ "gender": "masculine"
+ }
+ ],
+ "עתק": [
+ {
+ "word_nikkud": "עָתָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8416-atak",
+ "gender": "masculine"
+ }
+ ],
+ "עתק־": [
+ {
+ "word_nikkud": "עָתָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8416-atak",
+ "gender": "masculine"
+ }
+ ],
+ "תעתיק": [
+ {
+ "word_nikkud": "תַּעְתִּיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4628-taatik",
+ "gender": "masculine"
+ }
+ ],
+ "תעתיקים": [
+ {
+ "word_nikkud": "תַּעְתִּיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4628-taatik",
+ "gender": "masculine"
+ }
+ ],
+ "תעתיק־": [
+ {
+ "word_nikkud": "תַּעְתִּיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4628-taatik",
+ "gender": "masculine"
+ }
+ ],
+ "תעתיקי־": [
+ {
+ "word_nikkud": "תַּעְתִּיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4628-taatik",
+ "gender": "masculine"
+ }
+ ],
+ "העתקה": [
+ {
+ "word_nikkud": "הַעֲתָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8589-haataka",
+ "gender": "feminine"
+ }
+ ],
+ "העתקות": [
+ {
+ "word_nikkud": "הַעֲתָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8589-haataka",
+ "gender": "feminine"
+ }
+ ],
+ "העתקת־": [
+ {
+ "word_nikkud": "הַעֲתָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8589-haataka",
+ "gender": "feminine"
+ }
+ ],
+ "העתקות־": [
+ {
+ "word_nikkud": "הַעֲתָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8589-haataka",
+ "gender": "feminine"
+ }
+ ],
+ "עותר": [
+ {
+ "word_nikkud": "עוֹתֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5257-oter",
+ "gender": "masculine"
+ }
+ ],
+ "עותרים": [
+ {
+ "word_nikkud": "עוֹתֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5257-oter",
+ "gender": "masculine"
+ }
+ ],
+ "עותר־": [
+ {
+ "word_nikkud": "עוֹתֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5257-oter",
+ "gender": "masculine"
+ }
+ ],
+ "עותרי־": [
+ {
+ "word_nikkud": "עוֹתֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5257-oter",
+ "gender": "masculine"
+ }
+ ],
+ "עתירה": [
+ {
+ "word_nikkud": "עֲתִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6128-atira",
+ "gender": "feminine"
+ }
+ ],
+ "עתירות": [
+ {
+ "word_nikkud": "עֲתִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6128-atira",
+ "gender": "feminine"
+ }
+ ],
+ "עתירת־": [
+ {
+ "word_nikkud": "עֲתִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6128-atira",
+ "gender": "feminine"
+ }
+ ],
+ "עתירות־": [
+ {
+ "word_nikkud": "עֲתִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6128-atira",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונות": [
+ {
+ "word_nikkud": "עִתּוֹנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4797-itonut",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונויות": [
+ {
+ "word_nikkud": "עִתּוֹנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4797-itonut",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונות־": [
+ {
+ "word_nikkud": "עִתּוֹנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4797-itonut",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונויות־": [
+ {
+ "word_nikkud": "עִתּוֹנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4797-itonut",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונאי": [
+ {
+ "word_nikkud": "עִתּוֹנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4796-itonay",
+ "gender": "masculine"
+ }
+ ],
+ "עיתונאים": [
+ {
+ "word_nikkud": "עִתּוֹנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4796-itonay",
+ "gender": "masculine"
+ }
+ ],
+ "עיתונאי־": [
+ {
+ "word_nikkud": "עִתּוֹנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4796-itonay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "עִתּוֹנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4796-itonay",
+ "gender": "masculine"
+ }
+ ],
+ "עיתון": [
+ {
+ "word_nikkud": "עִתּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4795-iton",
+ "gender": "masculine"
+ }
+ ],
+ "עיתונים": [
+ {
+ "word_nikkud": "עִתּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4795-iton",
+ "gender": "masculine"
+ }
+ ],
+ "עיתון־": [
+ {
+ "word_nikkud": "עִתּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4795-iton",
+ "gender": "masculine"
+ }
+ ],
+ "עיתוני־": [
+ {
+ "word_nikkud": "עִתּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4795-iton",
+ "gender": "masculine"
+ }
+ ],
+ "עת": [
+ {
+ "word_nikkud": "עֵת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4162-et",
+ "gender": "feminine"
+ }
+ ],
+ "עיתים": [
+ {
+ "word_nikkud": "עֵת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4162-et",
+ "gender": "feminine"
+ }
+ ],
+ "עת־": [
+ {
+ "word_nikkud": "עֵת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4162-et",
+ "gender": "feminine"
+ }
+ ],
+ "עיתות־": [
+ {
+ "word_nikkud": "עֵת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4162-et",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונאות": [
+ {
+ "word_nikkud": "עִתּוֹנָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4798-itonaut",
+ "gender": "feminine"
+ }
+ ],
+ "עיתונאות־": [
+ {
+ "word_nikkud": "עִתּוֹנָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4798-itonaut",
+ "gender": "feminine"
+ }
+ ],
+ "פאה": [
+ {
+ "word_nikkud": "פֵּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7705-pea",
+ "gender": "feminine"
+ }
+ ],
+ "פאות": [
+ {
+ "word_nikkud": "פֵּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7705-pea",
+ "gender": "feminine"
+ }
+ ],
+ "פאת־": [
+ {
+ "word_nikkud": "פֵּאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7705-pea",
+ "gender": "feminine"
+ }
+ ],
+ "פאות־": [
+ {
+ "word_nikkud": "פֵּאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7705-pea",
+ "gender": "feminine"
+ }
+ ],
+ "תפארת": [
+ {
+ "word_nikkud": "תִּפְאֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5434-tiferet",
+ "gender": "feminine"
+ }
+ ],
+ "תפארה": [
+ {
+ "word_nikkud": "תִּפְאֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5434-tiferet",
+ "gender": "feminine"
+ }
+ ],
+ "תפארת־": [
+ {
+ "word_nikkud": "תִּפְאֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5434-tiferet",
+ "gender": "feminine"
+ }
+ ],
+ "פאר": [
+ {
+ "word_nikkud": "פְּאֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6122-peer",
+ "gender": "masculine"
+ }
+ ],
+ "פאר־": [
+ {
+ "word_nikkud": "פְּאֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6122-peer",
+ "gender": "masculine"
+ }
+ ],
+ "פארק": [
+ {
+ "word_nikkud": "פַּארְק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8779-park",
+ "gender": "masculine"
+ }
+ ],
+ "פארקים": [
+ {
+ "word_nikkud": "פַּארְק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8779-park",
+ "gender": "masculine"
+ }
+ ],
+ "פארק־": [
+ {
+ "word_nikkud": "פַּארְק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8779-park",
+ "gender": "masculine"
+ }
+ ],
+ "פארקי־": [
+ {
+ "word_nikkud": "פַּארְק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8779-park",
+ "gender": "masculine"
+ }
+ ],
+ "פגז": [
+ {
+ "word_nikkud": "פָּגָז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3034-pagaz",
+ "gender": "masculine"
+ }
+ ],
+ "פגזים": [
+ {
+ "word_nikkud": "פָּגָז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3034-pagaz",
+ "gender": "masculine"
+ }
+ ],
+ "פגז־": [
+ {
+ "word_nikkud": "פָּגָז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3034-pagaz",
+ "gender": "masculine"
+ }
+ ],
+ "פגזי־": [
+ {
+ "word_nikkud": "פָּגָז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3034-pagaz",
+ "gender": "masculine"
+ }
+ ],
+ "פיגול": [
+ {
+ "word_nikkud": "פִּגּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7404-pigul",
+ "gender": "masculine"
+ }
+ ],
+ "פיגולים": [
+ {
+ "word_nikkud": "פִּגּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7404-pigul",
+ "gender": "masculine"
+ }
+ ],
+ "פיגול־": [
+ {
+ "word_nikkud": "פִּגּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7404-pigul",
+ "gender": "masculine"
+ }
+ ],
+ "פיגולי־": [
+ {
+ "word_nikkud": "פִּגּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7404-pigul",
+ "gender": "masculine"
+ }
+ ],
+ "פגימה": [
+ {
+ "word_nikkud": "פְּגִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4949-pgima",
+ "gender": "feminine"
+ }
+ ],
+ "פגימות": [
+ {
+ "word_nikkud": "פְּגִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4949-pgima",
+ "gender": "feminine"
+ }
+ ],
+ "פגימת־": [
+ {
+ "word_nikkud": "פְּגִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4949-pgima",
+ "gender": "feminine"
+ }
+ ],
+ "פגימות־": [
+ {
+ "word_nikkud": "פְּגִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4949-pgima",
+ "gender": "feminine"
+ }
+ ],
+ "פיגום": [
+ {
+ "word_nikkud": "פִּגּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5818-pigum",
+ "gender": "masculine"
+ }
+ ],
+ "פיגומים": [
+ {
+ "word_nikkud": "פִּגּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5818-pigum",
+ "gender": "masculine"
+ }
+ ],
+ "פיגום־": [
+ {
+ "word_nikkud": "פִּגּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5818-pigum",
+ "gender": "masculine"
+ }
+ ],
+ "פיגומי־": [
+ {
+ "word_nikkud": "פִּגּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5818-pigum",
+ "gender": "masculine"
+ }
+ ],
+ "פגם": [
+ {
+ "word_nikkud": "פְּגָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3497-pgam",
+ "gender": "masculine"
+ }
+ ],
+ "פגמים": [
+ {
+ "word_nikkud": "פְּגָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3497-pgam",
+ "gender": "masculine"
+ }
+ ],
+ "פגם־": [
+ {
+ "word_nikkud": "פְּגָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3497-pgam",
+ "gender": "masculine"
+ }
+ ],
+ "פגמי־": [
+ {
+ "word_nikkud": "פְּגָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3497-pgam",
+ "gender": "masculine"
+ }
+ ],
+ "הפגנה": [
+ {
+ "word_nikkud": "הַפְגָּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2896-hafgana",
+ "gender": "feminine"
+ }
+ ],
+ "הפגנות": [
+ {
+ "word_nikkud": "הַפְגָּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2896-hafgana",
+ "gender": "feminine"
+ }
+ ],
+ "הפגנת־": [
+ {
+ "word_nikkud": "הַפְגָּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2896-hafgana",
+ "gender": "feminine"
+ }
+ ],
+ "הפגנות־": [
+ {
+ "word_nikkud": "הַפְגָּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2896-hafgana",
+ "gender": "feminine"
+ }
+ ],
+ "פיגוע": [
+ {
+ "word_nikkud": "פִּגּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4887-pigua",
+ "gender": "masculine"
+ }
+ ],
+ "פיגועים": [
+ {
+ "word_nikkud": "פִּגּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4887-pigua",
+ "gender": "masculine"
+ }
+ ],
+ "פיגוע־": [
+ {
+ "word_nikkud": "פִּגּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4887-pigua",
+ "gender": "masculine"
+ }
+ ],
+ "פיגועי־": [
+ {
+ "word_nikkud": "פִּגּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4887-pigua",
+ "gender": "masculine"
+ }
+ ],
+ "פגיעה": [
+ {
+ "word_nikkud": "פְּגִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5542-pgia",
+ "gender": "feminine"
+ }
+ ],
+ "פגיעות": [
+ {
+ "word_nikkud": "פְּגִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5542-pgia",
+ "gender": "feminine"
+ }
+ ],
+ "פגיעת־": [
+ {
+ "word_nikkud": "פְּגִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5542-pgia",
+ "gender": "feminine"
+ }
+ ],
+ "פגיעות־": [
+ {
+ "word_nikkud": "פְּגִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5542-pgia",
+ "gender": "feminine"
+ }
+ ],
+ "פיגור": [
+ {
+ "word_nikkud": "פִּגּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2990-pigur",
+ "gender": "masculine"
+ }
+ ],
+ "פיגורים": [
+ {
+ "word_nikkud": "פִּגּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2990-pigur",
+ "gender": "masculine"
+ }
+ ],
+ "פיגור־": [
+ {
+ "word_nikkud": "פִּגּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2990-pigur",
+ "gender": "masculine"
+ }
+ ],
+ "פיגורי־": [
+ {
+ "word_nikkud": "פִּגּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2990-pigur",
+ "gender": "masculine"
+ }
+ ],
+ "פגר": [
+ {
+ "word_nikkud": "פֶּגֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8116-peger",
+ "gender": "masculine"
+ }
+ ],
+ "פגרים": [
+ {
+ "word_nikkud": "פֶּגֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8116-peger",
+ "gender": "masculine"
+ }
+ ],
+ "פגר־": [
+ {
+ "word_nikkud": "פֶּגֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8116-peger",
+ "gender": "masculine"
+ }
+ ],
+ "פגרי־": [
+ {
+ "word_nikkud": "פֶּגֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8116-peger",
+ "gender": "masculine"
+ }
+ ],
+ "מפגר": [
+ {
+ "word_nikkud": "מְפַגֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3873-mefager",
+ "gender": "masculine"
+ }
+ ],
+ "מפגרים": [
+ {
+ "word_nikkud": "מְפַגֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3873-mefager",
+ "gender": "masculine"
+ }
+ ],
+ "מפגר־": [
+ {
+ "word_nikkud": "מְפַגֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3873-mefager",
+ "gender": "masculine"
+ }
+ ],
+ "מפגרי־": [
+ {
+ "word_nikkud": "מְפַגֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3873-mefager",
+ "gender": "masculine"
+ }
+ ],
+ "פגישה": [
+ {
+ "word_nikkud": "פְּגִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2834-pgisha",
+ "gender": "feminine"
+ }
+ ],
+ "פגישות": [
+ {
+ "word_nikkud": "פְּגִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2834-pgisha",
+ "gender": "feminine"
+ }
+ ],
+ "פגישת־": [
+ {
+ "word_nikkud": "פְּגִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2834-pgisha",
+ "gender": "feminine"
+ }
+ ],
+ "פגישות־": [
+ {
+ "word_nikkud": "פְּגִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2834-pgisha",
+ "gender": "feminine"
+ }
+ ],
+ "פגוש": [
+ {
+ "word_nikkud": "פָּגוֹשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3463-pagosh",
+ "gender": "masculine"
+ }
+ ],
+ "פגושים": [
+ {
+ "word_nikkud": "פָּגוֹשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3463-pagosh",
+ "gender": "masculine"
+ }
+ ],
+ "פגוש־": [
+ {
+ "word_nikkud": "פָּגוֹשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3463-pagosh",
+ "gender": "masculine"
+ }
+ ],
+ "פגושי־": [
+ {
+ "word_nikkud": "פָּגוֹשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3463-pagosh",
+ "gender": "masculine"
+ }
+ ],
+ "מפגש": [
+ {
+ "word_nikkud": "מִפְגָּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8222-mifgash",
+ "gender": "masculine"
+ }
+ ],
+ "מפגשים": [
+ {
+ "word_nikkud": "מִפְגָּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8222-mifgash",
+ "gender": "masculine"
+ }
+ ],
+ "מפגש־": [
+ {
+ "word_nikkud": "מִפְגָּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8222-mifgash",
+ "gender": "masculine"
+ }
+ ],
+ "מפגשי־": [
+ {
+ "word_nikkud": "מִפְגָּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8222-mifgash",
+ "gender": "masculine"
+ }
+ ],
+ "פידיון": [
+ {
+ "word_nikkud": "פִּדָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7727-pidayon",
+ "gender": "masculine"
+ }
+ ],
+ "פידיונות": [
+ {
+ "word_nikkud": "פִּדָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7727-pidayon",
+ "gender": "masculine"
+ }
+ ],
+ "פידיון־": [
+ {
+ "word_nikkud": "פִּדָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7727-pidayon",
+ "gender": "masculine"
+ }
+ ],
+ "פידיונות־": [
+ {
+ "word_nikkud": "פִּדָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7727-pidayon",
+ "gender": "masculine"
+ }
+ ],
+ "פדות": [
+ {
+ "word_nikkud": "פְּדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6890-pdut",
+ "gender": "feminine"
+ }
+ ],
+ "פדויות": [
+ {
+ "word_nikkud": "פְּדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6890-pdut",
+ "gender": "feminine"
+ }
+ ],
+ "פדות־": [
+ {
+ "word_nikkud": "פְּדוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6890-pdut",
+ "gender": "feminine"
+ }
+ ],
+ "פדויות־": [
+ {
+ "word_nikkud": "פְּדוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6890-pdut",
+ "gender": "feminine"
+ }
+ ],
+ "פה": [
+ {
+ "word_nikkud": "פֶּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6010-pe",
+ "gender": "masculine"
+ }
+ ],
+ "פיות": [
+ {
+ "word_nikkud": "פֶּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6010-pe",
+ "gender": "masculine"
+ }
+ ],
+ "פי־": [
+ {
+ "word_nikkud": "פֶּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6010-pe",
+ "gender": "masculine"
+ }
+ ],
+ "פיות־": [
+ {
+ "word_nikkud": "פֶּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6010-pe",
+ "gender": "masculine"
+ }
+ ],
+ "פיהוק": [
+ {
+ "word_nikkud": "פִּהוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7136-pihuk",
+ "gender": "masculine"
+ }
+ ],
+ "פיהוקים": [
+ {
+ "word_nikkud": "פִּהוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7136-pihuk",
+ "gender": "masculine"
+ }
+ ],
+ "פיהוק־": [
+ {
+ "word_nikkud": "פִּהוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7136-pihuk",
+ "gender": "masculine"
+ }
+ ],
+ "פיהוקי־": [
+ {
+ "word_nikkud": "פִּהוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7136-pihuk",
+ "gender": "masculine"
+ }
+ ],
+ "הפוגה": [
+ {
+ "word_nikkud": "הֲפוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8948-hafuga",
+ "gender": "feminine"
+ }
+ ],
+ "הפוגות": [
+ {
+ "word_nikkud": "הֲפוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8948-hafuga",
+ "gender": "feminine"
+ }
+ ],
+ "הפוגת־": [
+ {
+ "word_nikkud": "הֲפוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8948-hafuga",
+ "gender": "feminine"
+ }
+ ],
+ "הפוגות־": [
+ {
+ "word_nikkud": "הֲפוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8948-hafuga",
+ "gender": "feminine"
+ }
+ ],
+ "תפוגה": [
+ {
+ "word_nikkud": "תְּפוּגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8750-tfuga",
+ "gender": "feminine"
+ }
+ ],
+ "תפוגות": [
+ {
+ "word_nikkud": "תְּפוּגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8750-tfuga",
+ "gender": "feminine"
+ }
+ ],
+ "תפוגת־": [
+ {
+ "word_nikkud": "תְּפוּגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8750-tfuga",
+ "gender": "feminine"
+ }
+ ],
+ "תפוגות־": [
+ {
+ "word_nikkud": "תְּפוּגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8750-tfuga",
+ "gender": "feminine"
+ }
+ ],
+ "פול": [
+ {
+ "word_nikkud": "פּוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5909-pol",
+ "gender": "masculine"
+ }
+ ],
+ "פולים": [
+ {
+ "word_nikkud": "פּוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5909-pol",
+ "gender": "masculine"
+ }
+ ],
+ "פול־": [
+ {
+ "word_nikkud": "פּוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5909-pol",
+ "gender": "masculine"
+ }
+ ],
+ "פולי־": [
+ {
+ "word_nikkud": "פּוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5909-pol",
+ "gender": "masculine"
+ }
+ ],
+ "פוליטיקה": [
+ {
+ "word_nikkud": "פּוֹלִיטִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5217-politika",
+ "gender": "feminine"
+ }
+ ],
+ "פוליטיקת־": [
+ {
+ "word_nikkud": "פּוֹלִיטִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5217-politika",
+ "gender": "feminine"
+ }
+ ],
+ "פומבי": [
+ {
+ "word_nikkud": "פֻּמְבֵּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9274-pumbe",
+ "gender": "feminine"
+ }
+ ],
+ "פומביות": [
+ {
+ "word_nikkud": "פֻּמְבִּיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9276-pumbiyut",
+ "gender": "feminine"
+ }
+ ],
+ "פומביות־": [
+ {
+ "word_nikkud": "פֻּמְבִּיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9276-pumbiyut",
+ "gender": "feminine"
+ }
+ ],
+ "פונדק": [
+ {
+ "word_nikkud": "פּוּנְדָּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5569-pundak",
+ "gender": "masculine"
+ }
+ ],
+ "פונדקים": [
+ {
+ "word_nikkud": "פּוּנְדָּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5569-pundak",
+ "gender": "masculine"
+ }
+ ],
+ "פונדק־": [
+ {
+ "word_nikkud": "פּוּנְדָּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5569-pundak",
+ "gender": "masculine"
+ }
+ ],
+ "פונדקי־": [
+ {
+ "word_nikkud": "פּוּנְדָּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5569-pundak",
+ "gender": "masculine"
+ }
+ ],
+ "פונדקאות": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5572-pundekaut",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאויות": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5572-pundekaut",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאות־": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5572-pundekaut",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאויות־": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5572-pundekaut",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאי": [
+ {
+ "word_nikkud": "פּוּנְדְּקַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5570-pundekay",
+ "gender": "masculine"
+ }
+ ],
+ "פונדקאים": [
+ {
+ "word_nikkud": "פּוּנְדְּקַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5570-pundekay",
+ "gender": "masculine"
+ }
+ ],
+ "פונדקאי־": [
+ {
+ "word_nikkud": "פּוּנְדְּקַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5570-pundekay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "פּוּנְדְּקַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5570-pundekay",
+ "gender": "masculine"
+ }
+ ],
+ "פונדקאית": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5571-pundekait",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאיות": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5571-pundekait",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאית־": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5571-pundekait",
+ "gender": "feminine"
+ }
+ ],
+ "פונדקאיות־": [
+ {
+ "word_nikkud": "פּוּנְדְּקָאִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5571-pundekait",
+ "gender": "feminine"
+ }
+ ],
+ "הפצה": [
+ {
+ "word_nikkud": "הֲפָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5092-hafatza",
+ "gender": "feminine"
+ }
+ ],
+ "הפצות": [
+ {
+ "word_nikkud": "הֲפָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5092-hafatza",
+ "gender": "feminine"
+ }
+ ],
+ "הפצת־": [
+ {
+ "word_nikkud": "הֲפָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5092-hafatza",
+ "gender": "feminine"
+ }
+ ],
+ "הפצות־": [
+ {
+ "word_nikkud": "הֲפָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5092-hafatza",
+ "gender": "feminine"
+ }
+ ],
+ "תפוקה": [
+ {
+ "word_nikkud": "תְּפוּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6537-tfuka",
+ "gender": "feminine"
+ }
+ ],
+ "תפוקות": [
+ {
+ "word_nikkud": "תְּפוּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6537-tfuka",
+ "gender": "feminine"
+ }
+ ],
+ "תפוקת־": [
+ {
+ "word_nikkud": "תְּפוּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6537-tfuka",
+ "gender": "feminine"
+ }
+ ],
+ "תפוקות־": [
+ {
+ "word_nikkud": "תְּפוּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6537-tfuka",
+ "gender": "feminine"
+ }
+ ],
+ "פור": [
+ {
+ "word_nikkud": "פּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7582-pur",
+ "gender": "masculine"
+ }
+ ],
+ "פורים": [
+ {
+ "word_nikkud": "פּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7582-pur",
+ "gender": "masculine"
+ }
+ ],
+ "פור־": [
+ {
+ "word_nikkud": "פּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7582-pur",
+ "gender": "masculine"
+ }
+ ],
+ "פורי־": [
+ {
+ "word_nikkud": "פּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7582-pur",
+ "gender": "masculine"
+ }
+ ],
+ "פז": [
+ {
+ "word_nikkud": "פָּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9067-paz",
+ "gender": ""
+ }
+ ],
+ "פז־": [
+ {
+ "word_nikkud": "פָּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9067-paz",
+ "gender": ""
+ }
+ ],
+ "פזיזות": [
+ {
+ "word_nikkud": "פְּזִיזוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8137-pzizut",
+ "gender": "feminine"
+ }
+ ],
+ "פזיזות־": [
+ {
+ "word_nikkud": "פְּזִיזוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8137-pzizut",
+ "gender": "feminine"
+ }
+ ],
+ "פזילה": [
+ {
+ "word_nikkud": "פְּזִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9118-pzila",
+ "gender": "feminine"
+ }
+ ],
+ "פזילות": [
+ {
+ "word_nikkud": "פְּזִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9118-pzila",
+ "gender": "feminine"
+ }
+ ],
+ "פזילת־": [
+ {
+ "word_nikkud": "פְּזִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9118-pzila",
+ "gender": "feminine"
+ }
+ ],
+ "פזילות־": [
+ {
+ "word_nikkud": "פְּזִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9118-pzila",
+ "gender": "feminine"
+ }
+ ],
+ "פזמון": [
+ {
+ "word_nikkud": "פִּזְמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3588-pizmon",
+ "gender": "masculine"
+ }
+ ],
+ "פזמונות": [
+ {
+ "word_nikkud": "פִּזְמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3588-pizmon",
+ "gender": "masculine"
+ }
+ ],
+ "פזמון־": [
+ {
+ "word_nikkud": "פִּזְמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3588-pizmon",
+ "gender": "masculine"
+ }
+ ],
+ "פזמונות־": [
+ {
+ "word_nikkud": "פִּזְמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3588-pizmon",
+ "gender": "masculine"
+ }
+ ],
+ "פיזור": [
+ {
+ "word_nikkud": "פִּזּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8859-pizur",
+ "gender": "masculine"
+ }
+ ],
+ "פיזורים": [
+ {
+ "word_nikkud": "פִּזּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8859-pizur",
+ "gender": "masculine"
+ }
+ ],
+ "פיזור־": [
+ {
+ "word_nikkud": "פִּזּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8859-pizur",
+ "gender": "masculine"
+ }
+ ],
+ "פיזורי־": [
+ {
+ "word_nikkud": "פִּזּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8859-pizur",
+ "gender": "masculine"
+ }
+ ],
+ "פחד": [
+ {
+ "word_nikkud": "פַּחַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6073-pachad",
+ "gender": "masculine"
+ }
+ ],
+ "פחדים": [
+ {
+ "word_nikkud": "פַּחַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6073-pachad",
+ "gender": "masculine"
+ }
+ ],
+ "פחד־": [
+ {
+ "word_nikkud": "פַּחַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6073-pachad",
+ "gender": "masculine"
+ }
+ ],
+ "פחדי־": [
+ {
+ "word_nikkud": "פַּחַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6073-pachad",
+ "gender": "masculine"
+ }
+ ],
+ "פח": [
+ {
+ "word_nikkud": "פָּח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7323-pach",
+ "gender": "masculine"
+ }
+ ],
+ "פחים": [
+ {
+ "word_nikkud": "פָּח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7323-pach",
+ "gender": "masculine"
+ }
+ ],
+ "פח־": [
+ {
+ "word_nikkud": "פָּח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7323-pach",
+ "gender": "masculine"
+ }
+ ],
+ "פחי־": [
+ {
+ "word_nikkud": "פָּח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7323-pach",
+ "gender": "masculine"
+ }
+ ],
+ "פחון": [
+ {
+ "word_nikkud": "פָּחוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7324-pachon",
+ "gender": "masculine"
+ }
+ ],
+ "פחונים": [
+ {
+ "word_nikkud": "פָּחוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7324-pachon",
+ "gender": "masculine"
+ }
+ ],
+ "פחון־": [
+ {
+ "word_nikkud": "פָּחוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7324-pachon",
+ "gender": "masculine"
+ }
+ ],
+ "פחוני־": [
+ {
+ "word_nikkud": "פָּחוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7324-pachon",
+ "gender": "masculine"
+ }
+ ],
+ "פחמימה": [
+ {
+ "word_nikkud": "פַּחְמֵימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6999-pachmema",
+ "gender": "feminine"
+ }
+ ],
+ "פחמימות": [
+ {
+ "word_nikkud": "פַּחְמֵימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6999-pachmema",
+ "gender": "feminine"
+ }
+ ],
+ "פחמימת־": [
+ {
+ "word_nikkud": "פַּחְמֵימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6999-pachmema",
+ "gender": "feminine"
+ }
+ ],
+ "פחמימות־": [
+ {
+ "word_nikkud": "פַּחְמֵימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6999-pachmema",
+ "gender": "feminine"
+ }
+ ],
+ "פחיתות": [
+ {
+ "word_nikkud": "פְּחִיתוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6793-pchitut",
+ "gender": ""
+ }
+ ],
+ "פחיתויות": [
+ {
+ "word_nikkud": "פְּחִיתוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6793-pchitut",
+ "gender": ""
+ }
+ ],
+ "פחיתות־": [
+ {
+ "word_nikkud": "פְּחִיתוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6793-pchitut",
+ "gender": ""
+ }
+ ],
+ "פחיתויות־": [
+ {
+ "word_nikkud": "פְּחִיתוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6793-pchitut",
+ "gender": ""
+ }
+ ],
+ "פיחות": [
+ {
+ "word_nikkud": "פִּחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6631-pichut",
+ "gender": "masculine"
+ }
+ ],
+ "פיחותים": [
+ {
+ "word_nikkud": "פִּחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6631-pichut",
+ "gender": "masculine"
+ }
+ ],
+ "פיחות־": [
+ {
+ "word_nikkud": "פִּחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6631-pichut",
+ "gender": "masculine"
+ }
+ ],
+ "פיחותי־": [
+ {
+ "word_nikkud": "פִּחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6631-pichut",
+ "gender": "masculine"
+ }
+ ],
+ "הפחתה": [
+ {
+ "word_nikkud": "הַפְחָתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9157-hafchata",
+ "gender": "feminine"
+ }
+ ],
+ "הפחתות": [
+ {
+ "word_nikkud": "הַפְחָתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9157-hafchata",
+ "gender": "feminine"
+ }
+ ],
+ "הפחתת־": [
+ {
+ "word_nikkud": "הַפְחָתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9157-hafchata",
+ "gender": "feminine"
+ }
+ ],
+ "הפחתות־": [
+ {
+ "word_nikkud": "הַפְחָתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9157-hafchata",
+ "gender": "feminine"
+ }
+ ],
+ "פטמה": [
+ {
+ "word_nikkud": "פִּטְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7676-pitma",
+ "gender": "feminine"
+ }
+ ],
+ "פטמות": [
+ {
+ "word_nikkud": "פִּטְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7676-pitma",
+ "gender": "feminine"
+ }
+ ],
+ "פטמת־": [
+ {
+ "word_nikkud": "פִּטְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7676-pitma",
+ "gender": "feminine"
+ }
+ ],
+ "פטמות־": [
+ {
+ "word_nikkud": "פִּטְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7676-pitma",
+ "gender": "feminine"
+ }
+ ],
+ "פטפוט": [
+ {
+ "word_nikkud": "פִּטְפּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8923-pitput",
+ "gender": "masculine"
+ }
+ ],
+ "פטפוטים": [
+ {
+ "word_nikkud": "פִּטְפּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8923-pitput",
+ "gender": "masculine"
+ }
+ ],
+ "פטפוט־": [
+ {
+ "word_nikkud": "פִּטְפּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8923-pitput",
+ "gender": "masculine"
+ }
+ ],
+ "פטפוטי־": [
+ {
+ "word_nikkud": "פִּטְפּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8923-pitput",
+ "gender": "masculine"
+ }
+ ],
+ "פטור": [
+ {
+ "word_nikkud": "פְּטוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4304-ptor",
+ "gender": "masculine"
+ }
+ ],
+ "פטור־": [
+ {
+ "word_nikkud": "פְּטוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4304-ptor",
+ "gender": "masculine"
+ }
+ ],
+ "פיטורים": [
+ {
+ "word_nikkud": "פִּטּוּרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8748-piturim",
+ "gender": "masculine"
+ }
+ ],
+ "פיטורין": [
+ {
+ "word_nikkud": "פִּטּוּרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8748-piturim",
+ "gender": "masculine"
+ }
+ ],
+ "פיטורי־": [
+ {
+ "word_nikkud": "פִּטּוּרִים",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8748-piturim",
+ "gender": "masculine"
+ }
+ ],
+ "התפטרות": [
+ {
+ "word_nikkud": "הִתְפַּטְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8837-hitpatrut",
+ "gender": "feminine"
+ }
+ ],
+ "התפטרויות": [
+ {
+ "word_nikkud": "הִתְפַּטְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8837-hitpatrut",
+ "gender": "feminine"
+ }
+ ],
+ "התפטרות־": [
+ {
+ "word_nikkud": "הִתְפַּטְּרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8837-hitpatrut",
+ "gender": "feminine"
+ }
+ ],
+ "התפטרויות־": [
+ {
+ "word_nikkud": "הִתְפַּטְּרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8837-hitpatrut",
+ "gender": "feminine"
+ }
+ ],
+ "פטירה": [
+ {
+ "word_nikkud": "פְּטִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6753-ptira",
+ "gender": "feminine"
+ }
+ ],
+ "פטירות": [
+ {
+ "word_nikkud": "פְּטִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6753-ptira",
+ "gender": "feminine"
+ }
+ ],
+ "פטירת־": [
+ {
+ "word_nikkud": "פְּטִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6753-ptira",
+ "gender": "feminine"
+ }
+ ],
+ "פטירות־": [
+ {
+ "word_nikkud": "פְּטִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6753-ptira",
+ "gender": "feminine"
+ }
+ ],
+ "פטרוזיליה": [
+ {
+ "word_nikkud": "פֶּטְרוֹזִילְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8252-petrozilya",
+ "gender": "feminine"
+ }
+ ],
+ "פטרוזיליית־": [
+ {
+ "word_nikkud": "פֶּטְרוֹזִילְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8252-petrozilya",
+ "gender": "feminine"
+ }
+ ],
+ "פטריה": [
+ {
+ "word_nikkud": "פִּטְרִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7177-pitriya",
+ "gender": "feminine"
+ }
+ ],
+ "פטריות": [
+ {
+ "word_nikkud": "פִּטְרִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7177-pitriya",
+ "gender": "feminine"
+ }
+ ],
+ "פטריית־": [
+ {
+ "word_nikkud": "פִּטְרִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7177-pitriya",
+ "gender": "feminine"
+ }
+ ],
+ "פטריות־": [
+ {
+ "word_nikkud": "פִּטְרִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7177-pitriya",
+ "gender": "feminine"
+ }
+ ],
+ "פטיש": [
+ {
+ "word_nikkud": "פַּטִּישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4044-patish",
+ "gender": "masculine"
+ }
+ ],
+ "פטישים": [
+ {
+ "word_nikkud": "פַּטִּישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4044-patish",
+ "gender": "masculine"
+ }
+ ],
+ "פטיש־": [
+ {
+ "word_nikkud": "פַּטִּישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4044-patish",
+ "gender": "masculine"
+ }
+ ],
+ "פטישי־": [
+ {
+ "word_nikkud": "פַּטִּישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4044-patish",
+ "gender": "masculine"
+ }
+ ],
+ "פיט": [
+ {
+ "word_nikkud": "פִּיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8784-pit",
+ "gender": ""
+ }
+ ],
+ "פיל": [
+ {
+ "word_nikkud": "פִּיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5506-pil",
+ "gender": "masculine"
+ }
+ ],
+ "פילים": [
+ {
+ "word_nikkud": "פִּיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5506-pil",
+ "gender": "masculine"
+ }
+ ],
+ "פיל־": [
+ {
+ "word_nikkud": "פִּיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5506-pil",
+ "gender": "masculine"
+ }
+ ],
+ "פילי־": [
+ {
+ "word_nikkud": "פִּיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5506-pil",
+ "gender": "masculine"
+ }
+ ],
+ "פילוסופיה": [
+ {
+ "word_nikkud": "פִילוֹסוֹפְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5224-filosofya",
+ "gender": "feminine"
+ }
+ ],
+ "פילוסופיית־": [
+ {
+ "word_nikkud": "פִילוֹסוֹפְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5224-filosofya",
+ "gender": "feminine"
+ }
+ ],
+ "פינגווין": [
+ {
+ "word_nikkud": "פִּינִגְּוִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8852-pinigvin",
+ "gender": "masculine"
+ }
+ ],
+ "פינגווינים": [
+ {
+ "word_nikkud": "פִּינִגְּוִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8852-pinigvin",
+ "gender": "masculine"
+ }
+ ],
+ "התפייסות": [
+ {
+ "word_nikkud": "הִתְפַּיְּסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2991-hitpaysut",
+ "gender": "feminine"
+ }
+ ],
+ "התפייסות־": [
+ {
+ "word_nikkud": "הִתְפַּיְּסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2991-hitpaysut",
+ "gender": "feminine"
+ }
+ ],
+ "פיוס": [
+ {
+ "word_nikkud": "פִּיּוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4902-piyus",
+ "gender": "masculine"
+ }
+ ],
+ "פיוסים": [
+ {
+ "word_nikkud": "פִּיּוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4902-piyus",
+ "gender": "masculine"
+ }
+ ],
+ "פיוס־": [
+ {
+ "word_nikkud": "פִּיּוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4902-piyus",
+ "gender": "masculine"
+ }
+ ],
+ "פיוסי־": [
+ {
+ "word_nikkud": "פִּיּוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4902-piyus",
+ "gender": "masculine"
+ }
+ ],
+ "הפקה": [
+ {
+ "word_nikkud": "הֲפָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8794-hafaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפקות": [
+ {
+ "word_nikkud": "הֲפָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8794-hafaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפקת־": [
+ {
+ "word_nikkud": "הֲפָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8794-hafaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפקות־": [
+ {
+ "word_nikkud": "הֲפָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8794-hafaka",
+ "gender": "feminine"
+ }
+ ],
+ "מפיק": [
+ {
+ "word_nikkud": "מֵפִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6734-mefik",
+ "gender": "masculine"
+ }
+ ],
+ "מפיקים": [
+ {
+ "word_nikkud": "מֵפִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6734-mefik",
+ "gender": "masculine"
+ }
+ ],
+ "מפיק־": [
+ {
+ "word_nikkud": "מֵפִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6734-mefik",
+ "gender": "masculine"
+ }
+ ],
+ "מפיקי־": [
+ {
+ "word_nikkud": "מֵפִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6734-mefik",
+ "gender": "masculine"
+ }
+ ],
+ "פלא": [
+ {
+ "word_nikkud": "פֶּלֶא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3125-pele",
+ "gender": "masculine"
+ }
+ ],
+ "פלאים": [
+ {
+ "word_nikkud": "פֶּלֶא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3125-pele",
+ "gender": "masculine"
+ }
+ ],
+ "פלאות": [
+ {
+ "word_nikkud": "פֶּלֶא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3125-pele",
+ "gender": "masculine"
+ }
+ ],
+ "פלא־": [
+ {
+ "word_nikkud": "פֶּלֶא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3125-pele",
+ "gender": "masculine"
+ }
+ ],
+ "פלאי־": [
+ {
+ "word_nikkud": "פֶּלֶא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3125-pele",
+ "gender": "masculine"
+ }
+ ],
+ "פלאות־": [
+ {
+ "word_nikkud": "פֶּלֶא",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3125-pele",
+ "gender": "masculine"
+ }
+ ],
+ "פלאפל": [
+ {
+ "word_nikkud": "פָלָאפֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5877-falafel",
+ "gender": "masculine"
+ }
+ ],
+ "פלאפל־": [
+ {
+ "word_nikkud": "פָלָאפֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5877-falafel",
+ "gender": "masculine"
+ }
+ ],
+ "פלגנות": [
+ {
+ "word_nikkud": "פַּלְגָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8607-palganut",
+ "gender": "feminine"
+ }
+ ],
+ "פלגנויות": [
+ {
+ "word_nikkud": "פַּלְגָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8607-palganut",
+ "gender": "feminine"
+ }
+ ],
+ "פלגנות־": [
+ {
+ "word_nikkud": "פַּלְגָנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8607-palganut",
+ "gender": "feminine"
+ }
+ ],
+ "פלגנויות־": [
+ {
+ "word_nikkud": "פַּלְגָנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8607-palganut",
+ "gender": "feminine"
+ }
+ ],
+ "פילוג": [
+ {
+ "word_nikkud": "פִּלּוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6739-pilug",
+ "gender": "masculine"
+ }
+ ],
+ "פילוגים": [
+ {
+ "word_nikkud": "פִּלּוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6739-pilug",
+ "gender": "masculine"
+ }
+ ],
+ "פילוג־": [
+ {
+ "word_nikkud": "פִּלּוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6739-pilug",
+ "gender": "masculine"
+ }
+ ],
+ "פילוגי־": [
+ {
+ "word_nikkud": "פִּלּוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6739-pilug",
+ "gender": "masculine"
+ }
+ ],
+ "התפלגות": [
+ {
+ "word_nikkud": "הִתְפַּלְּגוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4389-hitpalgut",
+ "gender": "feminine"
+ }
+ ],
+ "התפלגויות": [
+ {
+ "word_nikkud": "הִתְפַּלְּגוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4389-hitpalgut",
+ "gender": "feminine"
+ }
+ ],
+ "התפלגות־": [
+ {
+ "word_nikkud": "הִתְפַּלְּגוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4389-hitpalgut",
+ "gender": "feminine"
+ }
+ ],
+ "התפלגויות־": [
+ {
+ "word_nikkud": "הִתְפַּלְּגוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4389-hitpalgut",
+ "gender": "feminine"
+ }
+ ],
+ "פלוגה": [
+ {
+ "word_nikkud": "פְּלֻגָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2864-pluga",
+ "gender": "feminine"
+ }
+ ],
+ "פלוגות": [
+ {
+ "word_nikkud": "פְּלֻגָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2864-pluga",
+ "gender": "feminine"
+ }
+ ],
+ "פלוגת־": [
+ {
+ "word_nikkud": "פְּלֻגָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2864-pluga",
+ "gender": "feminine"
+ }
+ ],
+ "פלוגות־": [
+ {
+ "word_nikkud": "פְּלֻגָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2864-pluga",
+ "gender": "feminine"
+ }
+ ],
+ "מפלגה": [
+ {
+ "word_nikkud": "מִפְלָגָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3572-miflaga",
+ "gender": "feminine"
+ }
+ ],
+ "מפלגות": [
+ {
+ "word_nikkud": "מִפְלָגָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3572-miflaga",
+ "gender": "feminine"
+ }
+ ],
+ "מפלגת־": [
+ {
+ "word_nikkud": "מִפְלָגָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3572-miflaga",
+ "gender": "feminine"
+ }
+ ],
+ "מפלגות־": [
+ {
+ "word_nikkud": "מִפְלָגָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3572-miflaga",
+ "gender": "feminine"
+ }
+ ],
+ "פלג": [
+ {
+ "word_nikkud": "פְּלָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7077-plag",
+ "gender": "masculine"
+ }
+ ],
+ "פלגים": [
+ {
+ "word_nikkud": "פְּלָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7077-plag",
+ "gender": "masculine"
+ }
+ ],
+ "פלדה": [
+ {
+ "word_nikkud": "פְּלָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5757-plada",
+ "gender": "feminine"
+ }
+ ],
+ "פלדות": [
+ {
+ "word_nikkud": "פְּלָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5757-plada",
+ "gender": "feminine"
+ }
+ ],
+ "פלדת־": [
+ {
+ "word_nikkud": "פְּלָדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5757-plada",
+ "gender": "feminine"
+ }
+ ],
+ "פלדות־": [
+ {
+ "word_nikkud": "פְּלָדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5757-plada",
+ "gender": "feminine"
+ }
+ ],
+ "פלח": [
+ {
+ "word_nikkud": "פֶּלַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4130-pelach",
+ "gender": "masculine"
+ }
+ ],
+ "פלחים": [
+ {
+ "word_nikkud": "פֶּלַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4130-pelach",
+ "gender": "masculine"
+ }
+ ],
+ "פלח־": [
+ {
+ "word_nikkud": "פֶּלַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4130-pelach",
+ "gender": "masculine"
+ }
+ ],
+ "פלחי־": [
+ {
+ "word_nikkud": "פֶּלַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4130-pelach",
+ "gender": "masculine"
+ }
+ ],
+ "פולחן": [
+ {
+ "word_nikkud": "פֻּלְחָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8055-pulchan",
+ "gender": ""
+ }
+ ],
+ "פולחנים": [
+ {
+ "word_nikkud": "פֻּלְחָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8055-pulchan",
+ "gender": ""
+ }
+ ],
+ "פולחן־": [
+ {
+ "word_nikkud": "פֻּלְחָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8055-pulchan",
+ "gender": ""
+ }
+ ],
+ "פולחני־": [
+ {
+ "word_nikkud": "פֻּלְחָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8055-pulchan",
+ "gender": ""
+ }
+ ],
+ "פליט": [
+ {
+ "word_nikkud": "פָּלִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4000-palit",
+ "gender": "masculine"
+ }
+ ],
+ "פליטים": [
+ {
+ "word_nikkud": "פָּלִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4000-palit",
+ "gender": "masculine"
+ }
+ ],
+ "פליט־": [
+ {
+ "word_nikkud": "פָּלִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4000-palit",
+ "gender": "masculine"
+ }
+ ],
+ "פליטי־": [
+ {
+ "word_nikkud": "פָּלִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4000-palit",
+ "gender": "masculine"
+ }
+ ],
+ "פלט": [
+ {
+ "word_nikkud": "פֶּלֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6484-pelet",
+ "gender": "masculine"
+ }
+ ],
+ "פלטים": [
+ {
+ "word_nikkud": "פֶּלֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6484-pelet",
+ "gender": "masculine"
+ }
+ ],
+ "פלט־": [
+ {
+ "word_nikkud": "פֶּלֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6484-pelet",
+ "gender": "masculine"
+ }
+ ],
+ "פלטי־": [
+ {
+ "word_nikkud": "פֶּלֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6484-pelet",
+ "gender": "masculine"
+ }
+ ],
+ "אפליה": [
+ {
+ "word_nikkud": "אַפְלָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5733-aflaya",
+ "gender": "feminine"
+ }
+ ],
+ "אפליות": [
+ {
+ "word_nikkud": "אַפְלָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5733-aflaya",
+ "gender": "feminine"
+ }
+ ],
+ "אפליית־": [
+ {
+ "word_nikkud": "אַפְלָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5733-aflaya",
+ "gender": "feminine"
+ }
+ ],
+ "אפליות־": [
+ {
+ "word_nikkud": "אַפְלָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5733-aflaya",
+ "gender": "feminine"
+ }
+ ],
+ "הפליה": [
+ {
+ "word_nikkud": "הַפְלָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2897-haflaya",
+ "gender": "feminine"
+ }
+ ],
+ "הפליית־": [
+ {
+ "word_nikkud": "הַפְלָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2897-haflaya",
+ "gender": "feminine"
+ }
+ ],
+ "פלך": [
+ {
+ "word_nikkud": "פֶּלֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6234-pelech",
+ "gender": "masculine"
+ }
+ ],
+ "פלכים": [
+ {
+ "word_nikkud": "פֶּלֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6234-pelech",
+ "gender": "masculine"
+ }
+ ],
+ "פלך־": [
+ {
+ "word_nikkud": "פֶּלֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6234-pelech",
+ "gender": "masculine"
+ }
+ ],
+ "פלכי־": [
+ {
+ "word_nikkud": "פֶּלֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6234-pelech",
+ "gender": "masculine"
+ }
+ ],
+ "תפילה": [
+ {
+ "word_nikkud": "תְּפִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3797-tfila",
+ "gender": "feminine"
+ }
+ ],
+ "תפילות": [
+ {
+ "word_nikkud": "תְּפִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3797-tfila",
+ "gender": "feminine"
+ }
+ ],
+ "תפילת־": [
+ {
+ "word_nikkud": "תְּפִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3797-tfila",
+ "gender": "feminine"
+ }
+ ],
+ "תפילות־": [
+ {
+ "word_nikkud": "תְּפִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3797-tfila",
+ "gender": "feminine"
+ }
+ ],
+ "מפלס": [
+ {
+ "word_nikkud": "מִפְלָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4601-miflas",
+ "gender": "masculine"
+ }
+ ],
+ "מפלסים": [
+ {
+ "word_nikkud": "מִפְלָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4601-miflas",
+ "gender": "masculine"
+ }
+ ],
+ "מפלס־": [
+ {
+ "word_nikkud": "מִפְלָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4601-miflas",
+ "gender": "masculine"
+ }
+ ],
+ "מפלסי־": [
+ {
+ "word_nikkud": "מִפְלָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4601-miflas",
+ "gender": "masculine"
+ }
+ ],
+ "פלסטלינה": [
+ {
+ "word_nikkud": "פְּלַסְטֶלִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8066-plastelina",
+ "gender": ""
+ }
+ ],
+ "פלסטלינת־": [
+ {
+ "word_nikkud": "פְּלַסְטֶלִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8066-plastelina",
+ "gender": ""
+ }
+ ],
+ "פלפל": [
+ {
+ "word_nikkud": "פִּלְפֵּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7190-pilpel",
+ "gender": "masculine"
+ }
+ ],
+ "פלפלים": [
+ {
+ "word_nikkud": "פִּלְפֵּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7190-pilpel",
+ "gender": "masculine"
+ }
+ ],
+ "פלפל־": [
+ {
+ "word_nikkud": "פִּלְפֵּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7190-pilpel",
+ "gender": "masculine"
+ }
+ ],
+ "פלפלי־": [
+ {
+ "word_nikkud": "פִּלְפֵּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7190-pilpel",
+ "gender": "masculine"
+ }
+ ],
+ "מפלצת": [
+ {
+ "word_nikkud": "מִפְלֶצֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3520-mifletzet",
+ "gender": "feminine"
+ }
+ ],
+ "מפלצות": [
+ {
+ "word_nikkud": "מִפְלֶצֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3520-mifletzet",
+ "gender": "feminine"
+ }
+ ],
+ "מפלצת־": [
+ {
+ "word_nikkud": "מִפְלֶצֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3520-mifletzet",
+ "gender": "feminine"
+ }
+ ],
+ "מפלצות־": [
+ {
+ "word_nikkud": "מִפְלֶצֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3520-mifletzet",
+ "gender": "feminine"
+ }
+ ],
+ "פלצן": [
+ {
+ "word_nikkud": "פַלְצָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8555-faltzan",
+ "gender": "masculine"
+ }
+ ],
+ "פלצנים": [
+ {
+ "word_nikkud": "פַלְצָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8555-faltzan",
+ "gender": "masculine"
+ }
+ ],
+ "פלצן־": [
+ {
+ "word_nikkud": "פַלְצָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8555-faltzan",
+ "gender": "masculine"
+ }
+ ],
+ "פלצני־": [
+ {
+ "word_nikkud": "פַלְצָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8555-faltzan",
+ "gender": "masculine"
+ }
+ ],
+ "פולש": [
+ {
+ "word_nikkud": "פּוֹלֵשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8626-polesh",
+ "gender": "masculine"
+ }
+ ],
+ "פולשים": [
+ {
+ "word_nikkud": "פּוֹלֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8626-polesh",
+ "gender": "masculine"
+ }
+ ],
+ "פולש־": [
+ {
+ "word_nikkud": "פּוֹלֵשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8626-polesh",
+ "gender": "masculine"
+ }
+ ],
+ "פולשי־": [
+ {
+ "word_nikkud": "פּוֹלֵשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8626-polesh",
+ "gender": "masculine"
+ }
+ ],
+ "פלישה": [
+ {
+ "word_nikkud": "פְּלִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7186-plisha",
+ "gender": "feminine"
+ }
+ ],
+ "פלישות": [
+ {
+ "word_nikkud": "פְּלִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7186-plisha",
+ "gender": "feminine"
+ }
+ ],
+ "פלישת־": [
+ {
+ "word_nikkud": "פְּלִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7186-plisha",
+ "gender": "feminine"
+ }
+ ],
+ "פלישות־": [
+ {
+ "word_nikkud": "פְּלִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7186-plisha",
+ "gender": "feminine"
+ }
+ ],
+ "פמוט": [
+ {
+ "word_nikkud": "פָּמוֹט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3464-pamot",
+ "gender": "masculine"
+ }
+ ],
+ "פמוטים": [
+ {
+ "word_nikkud": "פָּמוֹט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3464-pamot",
+ "gender": "masculine"
+ }
+ ],
+ "פמוטות": [
+ {
+ "word_nikkud": "פָּמוֹט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3464-pamot",
+ "gender": "masculine"
+ }
+ ],
+ "פמוט־": [
+ {
+ "word_nikkud": "פָּמוֹט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3464-pamot",
+ "gender": "masculine"
+ }
+ ],
+ "פמוטי־": [
+ {
+ "word_nikkud": "פָּמוֹט",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3464-pamot",
+ "gender": "masculine"
+ }
+ ],
+ "פמוטות־": [
+ {
+ "word_nikkud": "פָּמוֹט",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3464-pamot",
+ "gender": "masculine"
+ }
+ ],
+ "פמליה": [
+ {
+ "word_nikkud": "פָּמַלְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7786-pamalya",
+ "gender": "feminine"
+ }
+ ],
+ "פמליא": [
+ {
+ "word_nikkud": "פָּמַלְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7786-pamalya",
+ "gender": "feminine"
+ }
+ ],
+ "פמליות": [
+ {
+ "word_nikkud": "פָּמַלְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7786-pamalya",
+ "gender": "feminine"
+ }
+ ],
+ "פמליית־": [
+ {
+ "word_nikkud": "פָּמַלְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7786-pamalya",
+ "gender": "feminine"
+ }
+ ],
+ "פמליות־": [
+ {
+ "word_nikkud": "פָּמַלְיָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "7786-pamalya",
+ "gender": "feminine"
+ }
+ ],
+ "פן": [
+ {
+ "word_nikkud": "פָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4725-pan",
+ "gender": "masculine"
+ }
+ ],
+ "פנים": [
+ {
+ "word_nikkud": "פָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4725-pan",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "פְּנִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6290-pnim",
+ "gender": "masculine"
+ }
+ ],
+ "פן־": [
+ {
+ "word_nikkud": "פָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4725-pan",
+ "gender": "masculine"
+ }
+ ],
+ "פני־": [
+ {
+ "word_nikkud": "פָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4725-pan",
+ "gender": "masculine"
+ }
+ ],
+ "פנדל": [
+ {
+ "word_nikkud": "פֶּנְדֶּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6837-pendel",
+ "gender": "masculine"
+ }
+ ],
+ "פנדלים": [
+ {
+ "word_nikkud": "פֶּנְדֶּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6837-pendel",
+ "gender": "masculine"
+ }
+ ],
+ "פנייה": [
+ {
+ "word_nikkud": "פְּנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5037-pniya",
+ "gender": "feminine"
+ }
+ ],
+ "פניות": [
+ {
+ "word_nikkud": "פְּנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5037-pniya",
+ "gender": "feminine"
+ }
+ ],
+ "פניית־": [
+ {
+ "word_nikkud": "פְּנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5037-pniya",
+ "gender": "feminine"
+ }
+ ],
+ "פניות־": [
+ {
+ "word_nikkud": "פְּנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5037-pniya",
+ "gender": "feminine"
+ }
+ ],
+ "פינוי": [
+ {
+ "word_nikkud": "פִּנּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4750-pinuy",
+ "gender": "masculine"
+ }
+ ],
+ "פינויים": [
+ {
+ "word_nikkud": "פִּנּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4750-pinuy",
+ "gender": "masculine"
+ }
+ ],
+ "פינוי־": [
+ {
+ "word_nikkud": "פִּנּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4750-pinuy",
+ "gender": "masculine"
+ }
+ ],
+ "פינויי־": [
+ {
+ "word_nikkud": "פִּנּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4750-pinuy",
+ "gender": "masculine"
+ }
+ ],
+ "פינה": [
+ {
+ "word_nikkud": "פִּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7478-pina",
+ "gender": ""
+ }
+ ],
+ "פינות": [
+ {
+ "word_nikkud": "פִּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7478-pina",
+ "gender": ""
+ }
+ ],
+ "פינת־": [
+ {
+ "word_nikkud": "פִּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7478-pina",
+ "gender": ""
+ }
+ ],
+ "פינות־": [
+ {
+ "word_nikkud": "פִּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7478-pina",
+ "gender": ""
+ }
+ ],
+ "פנאי": [
+ {
+ "word_nikkud": "פְּנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6151-pnay",
+ "gender": "masculine"
+ }
+ ],
+ "פנאי־": [
+ {
+ "word_nikkud": "פְּנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6151-pnay",
+ "gender": "masculine"
+ }
+ ],
+ "תפנית": [
+ {
+ "word_nikkud": "תַּפְנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9182-tafnit",
+ "gender": "feminine"
+ }
+ ],
+ "תפניות": [
+ {
+ "word_nikkud": "תַּפְנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9182-tafnit",
+ "gender": "feminine"
+ }
+ ],
+ "תפנית־": [
+ {
+ "word_nikkud": "תַּפְנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9182-tafnit",
+ "gender": "feminine"
+ }
+ ],
+ "תפניות־": [
+ {
+ "word_nikkud": "תַּפְנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9182-tafnit",
+ "gender": "feminine"
+ }
+ ],
+ "מפנה": [
+ {
+ "word_nikkud": "מִפְנֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7305-mifne",
+ "gender": "masculine"
+ }
+ ],
+ "מפנים": [
+ {
+ "word_nikkud": "מִפְנֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7305-mifne",
+ "gender": "masculine"
+ }
+ ],
+ "מפנה־": [
+ {
+ "word_nikkud": "מִפְנֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7305-mifne",
+ "gender": "masculine"
+ }
+ ],
+ "מפני־": [
+ {
+ "word_nikkud": "מִפְנֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7305-mifne",
+ "gender": "masculine"
+ }
+ ],
+ "פנים־": [
+ {
+ "word_nikkud": "פְּנִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6290-pnim",
+ "gender": "masculine"
+ }
+ ],
+ "פנינה": [
+ {
+ "word_nikkud": "פְּנִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6420-pnina",
+ "gender": "feminine"
+ }
+ ],
+ "פנינים": [
+ {
+ "word_nikkud": "פְּנִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6420-pnina",
+ "gender": "feminine"
+ }
+ ],
+ "פנינת־": [
+ {
+ "word_nikkud": "פְּנִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6420-pnina",
+ "gender": "feminine"
+ }
+ ],
+ "פניני־": [
+ {
+ "word_nikkud": "פְּנִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6420-pnina",
+ "gender": "feminine"
+ }
+ ],
+ "פנס": [
+ {
+ "word_nikkud": "פָּנָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4586-panas",
+ "gender": "masculine"
+ }
+ ],
+ "פנסים": [
+ {
+ "word_nikkud": "פָּנָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4586-panas",
+ "gender": "masculine"
+ }
+ ],
+ "פנס־": [
+ {
+ "word_nikkud": "פָּנָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4586-panas",
+ "gender": "masculine"
+ }
+ ],
+ "פנסי־": [
+ {
+ "word_nikkud": "פָּנָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4586-panas",
+ "gender": "masculine"
+ }
+ ],
+ "פינוק": [
+ {
+ "word_nikkud": "פִּנּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6800-pinuk",
+ "gender": "masculine"
+ }
+ ],
+ "פינוקים": [
+ {
+ "word_nikkud": "פִּנּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6800-pinuk",
+ "gender": "masculine"
+ }
+ ],
+ "פינוק־": [
+ {
+ "word_nikkud": "פִּנּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6800-pinuk",
+ "gender": "masculine"
+ }
+ ],
+ "פינוקי־": [
+ {
+ "word_nikkud": "פִּנּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6800-pinuk",
+ "gender": "masculine"
+ }
+ ],
+ "פנקס": [
+ {
+ "word_nikkud": "פִּנְקָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6361-pinkas",
+ "gender": "masculine"
+ }
+ ],
+ "פנקסים": [
+ {
+ "word_nikkud": "פִּנְקָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6361-pinkas",
+ "gender": "masculine"
+ }
+ ],
+ "פנקס־": [
+ {
+ "word_nikkud": "פִּנְקָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6361-pinkas",
+ "gender": "masculine"
+ }
+ ],
+ "פנקסי־": [
+ {
+ "word_nikkud": "פִּנְקָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6361-pinkas",
+ "gender": "masculine"
+ }
+ ],
+ "פסגה": [
+ {
+ "word_nikkud": "פִּסְגָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3817-pisga",
+ "gender": "feminine"
+ }
+ ],
+ "פסגות": [
+ {
+ "word_nikkud": "פִּסְגָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3817-pisga",
+ "gender": "feminine"
+ }
+ ],
+ "פסגת־": [
+ {
+ "word_nikkud": "פִּסְגָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3817-pisga",
+ "gender": "feminine"
+ }
+ ],
+ "פסגות־": [
+ {
+ "word_nikkud": "פִּסְגָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3817-pisga",
+ "gender": "feminine"
+ }
+ ],
+ "הפסד": [
+ {
+ "word_nikkud": "הֶפְסֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2936-hefsed",
+ "gender": "masculine"
+ }
+ ],
+ "הפסדים": [
+ {
+ "word_nikkud": "הֶפְסֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2936-hefsed",
+ "gender": "masculine"
+ }
+ ],
+ "הפסד־": [
+ {
+ "word_nikkud": "הֶפְסֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2936-hefsed",
+ "gender": "masculine"
+ }
+ ],
+ "הפסדי־": [
+ {
+ "word_nikkud": "הֶפְסֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2936-hefsed",
+ "gender": "masculine"
+ }
+ ],
+ "פסח": [
+ {
+ "word_nikkud": "פֶּסַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8833-pesach",
+ "gender": "masculine"
+ }
+ ],
+ "פסטה": [
+ {
+ "word_nikkud": "פַּסְטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7853-pasta",
+ "gender": "feminine"
+ }
+ ],
+ "פסטת־": [
+ {
+ "word_nikkud": "פַּסְטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7853-pasta",
+ "gender": "feminine"
+ }
+ ],
+ "פסיכולוגיה": [
+ {
+ "word_nikkud": "פְּסִיכוֹלוֹגְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5222-psichologya",
+ "gender": "feminine"
+ }
+ ],
+ "פסיכולוגיית־": [
+ {
+ "word_nikkud": "פְּסִיכוֹלוֹגְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5222-psichologya",
+ "gender": "feminine"
+ }
+ ],
+ "פסימיות": [
+ {
+ "word_nikkud": "פֶּסִימִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7995-pesimiyut",
+ "gender": "feminine"
+ }
+ ],
+ "פסימיות־": [
+ {
+ "word_nikkud": "פֶּסִימִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7995-pesimiyut",
+ "gender": "feminine"
+ }
+ ],
+ "פסיפס": [
+ {
+ "word_nikkud": "פְּסֵיפָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8208-psefas",
+ "gender": ""
+ }
+ ],
+ "פסיפסים": [
+ {
+ "word_nikkud": "פְּסֵיפָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8208-psefas",
+ "gender": ""
+ }
+ ],
+ "פסיפס־": [
+ {
+ "word_nikkud": "פְּסֵיפָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8208-psefas",
+ "gender": ""
+ }
+ ],
+ "פסיפסי־": [
+ {
+ "word_nikkud": "פְּסֵיפָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8208-psefas",
+ "gender": ""
+ }
+ ],
+ "פיסול": [
+ {
+ "word_nikkud": "פִּסּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6450-pisul",
+ "gender": "masculine"
+ }
+ ],
+ "פיסולים": [
+ {
+ "word_nikkud": "פִּסּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6450-pisul",
+ "gender": "masculine"
+ }
+ ],
+ "פיסול־": [
+ {
+ "word_nikkud": "פִּסּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6450-pisul",
+ "gender": "masculine"
+ }
+ ],
+ "פיסולי־": [
+ {
+ "word_nikkud": "פִּסּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6450-pisul",
+ "gender": "masculine"
+ }
+ ],
+ "פסל": [
+ {
+ "word_nikkud": "פַּסָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3357-pasal",
+ "gender": "masculine"
+ }
+ ],
+ "פסלים": [
+ {
+ "word_nikkud": "פַּסָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3357-pasal",
+ "gender": "masculine"
+ }
+ ],
+ "פסל־": [
+ {
+ "word_nikkud": "פַּסָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3357-pasal",
+ "gender": "masculine"
+ }
+ ],
+ "פסלי־": [
+ {
+ "word_nikkud": "פַּסָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3357-pasal",
+ "gender": "masculine"
+ }
+ ],
+ "פסולת": [
+ {
+ "word_nikkud": "פְּסֹלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3264-psolet",
+ "gender": "feminine"
+ }
+ ],
+ "פסולת־": [
+ {
+ "word_nikkud": "פְּסֹלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3264-psolet",
+ "gender": "feminine"
+ }
+ ],
+ "מפסלת": [
+ {
+ "word_nikkud": "מַפְסֶלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3283-mafselet",
+ "gender": "feminine"
+ }
+ ],
+ "מפסלות": [
+ {
+ "word_nikkud": "מַפְסֶלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3283-mafselet",
+ "gender": "feminine"
+ }
+ ],
+ "מפסלת־": [
+ {
+ "word_nikkud": "מַפְסֶלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3283-mafselet",
+ "gender": "feminine"
+ }
+ ],
+ "מפסלות־": [
+ {
+ "word_nikkud": "מַפְסֶלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3283-mafselet",
+ "gender": "feminine"
+ }
+ ],
+ "פסנתר": [
+ {
+ "word_nikkud": "פְּסַנְתֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5752-psanter",
+ "gender": "masculine"
+ }
+ ],
+ "פסנתרים": [
+ {
+ "word_nikkud": "פְּסַנְתֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5752-psanter",
+ "gender": "masculine"
+ }
+ ],
+ "פסנתר־": [
+ {
+ "word_nikkud": "פְּסַנְתֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5752-psanter",
+ "gender": "masculine"
+ }
+ ],
+ "פסנתרי־": [
+ {
+ "word_nikkud": "פְּסַנְתֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5752-psanter",
+ "gender": "masculine"
+ }
+ ],
+ "פס": [
+ {
+ "word_nikkud": "פַּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3884-pas",
+ "gender": "masculine"
+ }
+ ],
+ "פסים": [
+ {
+ "word_nikkud": "פַּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3884-pas",
+ "gender": "masculine"
+ }
+ ],
+ "פס־": [
+ {
+ "word_nikkud": "פַּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3884-pas",
+ "gender": "masculine"
+ }
+ ],
+ "פסי־": [
+ {
+ "word_nikkud": "פַּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3884-pas",
+ "gender": "masculine"
+ }
+ ],
+ "פסיעה": [
+ {
+ "word_nikkud": "פְּסִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6489-psia",
+ "gender": "feminine"
+ }
+ ],
+ "פסיעות": [
+ {
+ "word_nikkud": "פְּסִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6489-psia",
+ "gender": "feminine"
+ }
+ ],
+ "פסיעת־": [
+ {
+ "word_nikkud": "פְּסִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6489-psia",
+ "gender": "feminine"
+ }
+ ],
+ "פסיעות־": [
+ {
+ "word_nikkud": "פְּסִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6489-psia",
+ "gender": "feminine"
+ }
+ ],
+ "פספוס": [
+ {
+ "word_nikkud": "פִסְפוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8257-fisfus",
+ "gender": "masculine"
+ }
+ ],
+ "פספוסים": [
+ {
+ "word_nikkud": "פִסְפוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8257-fisfus",
+ "gender": "masculine"
+ }
+ ],
+ "פספוס־": [
+ {
+ "word_nikkud": "פִסְפוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8257-fisfus",
+ "gender": "masculine"
+ }
+ ],
+ "פספוסי־": [
+ {
+ "word_nikkud": "פִסְפוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8257-fisfus",
+ "gender": "masculine"
+ }
+ ],
+ "הפסקה": [
+ {
+ "word_nikkud": "הַפְסָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2898-hafsaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפסקות": [
+ {
+ "word_nikkud": "הַפְסָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2898-hafsaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפסקת־": [
+ {
+ "word_nikkud": "הַפְסָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2898-hafsaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפסקות־": [
+ {
+ "word_nikkud": "הַפְסָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2898-hafsaka",
+ "gender": "feminine"
+ }
+ ],
+ "הפסק": [
+ {
+ "word_nikkud": "הֶפְסֵק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3512-hefsek",
+ "gender": "masculine"
+ }
+ ],
+ "הפסקים": [
+ {
+ "word_nikkud": "הֶפְסֵק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3512-hefsek",
+ "gender": "masculine"
+ }
+ ],
+ "הפסק־": [
+ {
+ "word_nikkud": "הֶפְסֵק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3512-hefsek",
+ "gender": "masculine"
+ }
+ ],
+ "הפסקי־": [
+ {
+ "word_nikkud": "הֶפְסֵק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3512-hefsek",
+ "gender": "masculine"
+ }
+ ],
+ "פסיק": [
+ {
+ "word_nikkud": "פְּסִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4460-psik",
+ "gender": "masculine"
+ }
+ ],
+ "פסיקים": [
+ {
+ "word_nikkud": "פְּסִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4460-psik",
+ "gender": "masculine"
+ }
+ ],
+ "פסיק־": [
+ {
+ "word_nikkud": "פְּסִיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4460-psik",
+ "gender": "masculine"
+ }
+ ],
+ "פסיקי־": [
+ {
+ "word_nikkud": "פְּסִיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4460-psik",
+ "gender": "masculine"
+ }
+ ],
+ "פסק": [
+ {
+ "word_nikkud": "פֶּסֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4462-pesek",
+ "gender": "masculine"
+ }
+ ],
+ "פסקים": [
+ {
+ "word_nikkud": "פֶּסֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4462-pesek",
+ "gender": "masculine"
+ }
+ ],
+ "פסק־": [
+ {
+ "word_nikkud": "פֶּסֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4462-pesek",
+ "gender": "masculine"
+ }
+ ],
+ "פסקי־": [
+ {
+ "word_nikkud": "פֶּסֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4462-pesek",
+ "gender": "masculine"
+ }
+ ],
+ "מפסק": [
+ {
+ "word_nikkud": "מַפְסֵק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4801-mafsek",
+ "gender": "masculine"
+ }
+ ],
+ "מפסקים": [
+ {
+ "word_nikkud": "מַפְסֵק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4801-mafsek",
+ "gender": "masculine"
+ }
+ ],
+ "מפסק־": [
+ {
+ "word_nikkud": "מַפְסֵק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4801-mafsek",
+ "gender": "masculine"
+ }
+ ],
+ "מפסקי־": [
+ {
+ "word_nikkud": "מַפְסֵק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4801-mafsek",
+ "gender": "masculine"
+ }
+ ],
+ "פסוק": [
+ {
+ "word_nikkud": "פָּסוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7834-pasuk",
+ "gender": "masculine"
+ }
+ ],
+ "פסוקים": [
+ {
+ "word_nikkud": "פָּסוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7834-pasuk",
+ "gender": "masculine"
+ }
+ ],
+ "פסוק־": [
+ {
+ "word_nikkud": "פָּסוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7834-pasuk",
+ "gender": "masculine"
+ }
+ ],
+ "פסוקי־": [
+ {
+ "word_nikkud": "פָּסוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7834-pasuk",
+ "gender": "masculine"
+ }
+ ],
+ "פסקה": [
+ {
+ "word_nikkud": "פִּסְקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5955-piska",
+ "gender": "feminine"
+ }
+ ],
+ "פסקות": [
+ {
+ "word_nikkud": "פִּסְקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5955-piska",
+ "gender": "feminine"
+ }
+ ],
+ "פסקת־": [
+ {
+ "word_nikkud": "פִּסְקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5955-piska",
+ "gender": "feminine"
+ }
+ ],
+ "פסקות־": [
+ {
+ "word_nikkud": "פִּסְקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5955-piska",
+ "gender": "feminine"
+ }
+ ],
+ "פעוט": [
+ {
+ "word_nikkud": "פָּעוֹט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3465-paot",
+ "gender": "masculine"
+ }
+ ],
+ "פעוטות": [
+ {
+ "word_nikkud": "פָּעוֹט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3465-paot",
+ "gender": "masculine"
+ }
+ ],
+ "פעוט־": [
+ {
+ "word_nikkud": "פָּעוֹט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3465-paot",
+ "gender": "masculine"
+ }
+ ],
+ "פעוטות־": [
+ {
+ "word_nikkud": "פָּעוֹט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3465-paot",
+ "gender": "masculine"
+ }
+ ],
+ "התפעלות": [
+ {
+ "word_nikkud": "הִתְפַּעֲלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7678-hitpaalut",
+ "gender": "feminine"
+ }
+ ],
+ "התפעלויות": [
+ {
+ "word_nikkud": "הִתְפַּעֲלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7678-hitpaalut",
+ "gender": "feminine"
+ }
+ ],
+ "התפעלות־": [
+ {
+ "word_nikkud": "הִתְפַּעֲלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7678-hitpaalut",
+ "gender": "feminine"
+ }
+ ],
+ "התפעלויות־": [
+ {
+ "word_nikkud": "הִתְפַּעֲלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7678-hitpaalut",
+ "gender": "feminine"
+ }
+ ],
+ "פעילות": [
+ {
+ "word_nikkud": "פְּעִילוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5300-peilut",
+ "gender": "feminine"
+ }
+ ],
+ "פעילויות": [
+ {
+ "word_nikkud": "פְּעִילוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5300-peilut",
+ "gender": "feminine"
+ }
+ ],
+ "פעילות־": [
+ {
+ "word_nikkud": "פְּעִילוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5300-peilut",
+ "gender": "feminine"
+ }
+ ],
+ "פעילויות־": [
+ {
+ "word_nikkud": "פְּעִילוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5300-peilut",
+ "gender": "feminine"
+ }
+ ],
+ "פועל": [
+ {
+ "word_nikkud": "פֹּעַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2660-poal",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "פּוֹעֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3800-poel",
+ "gender": "masculine"
+ }
+ ],
+ "פעלים": [
+ {
+ "word_nikkud": "פֹּעַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2660-poal",
+ "gender": "masculine"
+ }
+ ],
+ "פועל־": [
+ {
+ "word_nikkud": "פֹּעַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2660-poal",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "פּוֹעֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3800-poel",
+ "gender": "masculine"
+ }
+ ],
+ "פעלי־": [
+ {
+ "word_nikkud": "פֹּעַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2660-poal",
+ "gender": "masculine"
+ }
+ ],
+ "פעולה": [
+ {
+ "word_nikkud": "פְּעֻלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6026-peula",
+ "gender": "feminine"
+ }
+ ],
+ "פעולות": [
+ {
+ "word_nikkud": "פְּעֻלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6026-peula",
+ "gender": "feminine"
+ }
+ ],
+ "פעולת־": [
+ {
+ "word_nikkud": "פְּעֻלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6026-peula",
+ "gender": "feminine"
+ }
+ ],
+ "פעולות־": [
+ {
+ "word_nikkud": "פְּעֻלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6026-peula",
+ "gender": "feminine"
+ }
+ ],
+ "מפעל": [
+ {
+ "word_nikkud": "מִפְעָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3164-mifal",
+ "gender": "masculine"
+ }
+ ],
+ "מפעלים": [
+ {
+ "word_nikkud": "מִפְעָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3164-mifal",
+ "gender": "masculine"
+ }
+ ],
+ "מפעל־": [
+ {
+ "word_nikkud": "מִפְעָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3164-mifal",
+ "gender": "masculine"
+ }
+ ],
+ "מפעלי־": [
+ {
+ "word_nikkud": "מִפְעָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3164-mifal",
+ "gender": "masculine"
+ }
+ ],
+ "פועלים": [
+ {
+ "word_nikkud": "פּוֹעֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3800-poel",
+ "gender": "masculine"
+ }
+ ],
+ "פועלי־": [
+ {
+ "word_nikkud": "פּוֹעֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3800-poel",
+ "gender": "masculine"
+ }
+ ],
+ "פעיל": [
+ {
+ "word_nikkud": "פָּעִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3144-pail",
+ "gender": "masculine"
+ }
+ ],
+ "פעיל־": [
+ {
+ "word_nikkud": "פָּעִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3144-pail",
+ "gender": "masculine"
+ }
+ ],
+ "פעמון": [
+ {
+ "word_nikkud": "פַּעֲמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5886-paamon",
+ "gender": "masculine"
+ }
+ ],
+ "פעמונים": [
+ {
+ "word_nikkud": "פַּעֲמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5886-paamon",
+ "gender": "masculine"
+ }
+ ],
+ "פעמון־": [
+ {
+ "word_nikkud": "פַּעֲמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5886-paamon",
+ "gender": "masculine"
+ }
+ ],
+ "פעמוני־": [
+ {
+ "word_nikkud": "פַּעֲמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5886-paamon",
+ "gender": "masculine"
+ }
+ ],
+ "פעם": [
+ {
+ "word_nikkud": "פַּעַם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6082-paam",
+ "gender": "feminine"
+ }
+ ],
+ "פעמים": [
+ {
+ "word_nikkud": "פַּעַם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6082-paam",
+ "gender": "feminine"
+ }
+ ],
+ "פעם־": [
+ {
+ "word_nikkud": "פַּעַם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6082-paam",
+ "gender": "feminine"
+ }
+ ],
+ "פעמי־": [
+ {
+ "word_nikkud": "פַּעַם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6082-paam",
+ "gender": "feminine"
+ }
+ ],
+ "פעימה": [
+ {
+ "word_nikkud": "פְּעִימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8872-peima",
+ "gender": "feminine"
+ }
+ ],
+ "פעימות": [
+ {
+ "word_nikkud": "פְּעִימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8872-peima",
+ "gender": "feminine"
+ }
+ ],
+ "פעימת־": [
+ {
+ "word_nikkud": "פְּעִימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8872-peima",
+ "gender": "feminine"
+ }
+ ],
+ "פעימות־": [
+ {
+ "word_nikkud": "פְּעִימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8872-peima",
+ "gender": "feminine"
+ }
+ ],
+ "פענוח": [
+ {
+ "word_nikkud": "פִּעְנוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7455-pianuach",
+ "gender": "masculine"
+ }
+ ],
+ "פענוחים": [
+ {
+ "word_nikkud": "פִּעְנוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7455-pianuach",
+ "gender": "masculine"
+ }
+ ],
+ "פענוח־": [
+ {
+ "word_nikkud": "פִּעְנוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7455-pianuach",
+ "gender": "masculine"
+ }
+ ],
+ "פענוחי־": [
+ {
+ "word_nikkud": "פִּעְנוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7455-pianuach",
+ "gender": "masculine"
+ }
+ ],
+ "פער": [
+ {
+ "word_nikkud": "פַּעַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5675-paar",
+ "gender": "masculine"
+ }
+ ],
+ "פערים": [
+ {
+ "word_nikkud": "פַּעַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5675-paar",
+ "gender": "masculine"
+ }
+ ],
+ "פער־": [
+ {
+ "word_nikkud": "פַּעַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5675-paar",
+ "gender": "masculine"
+ }
+ ],
+ "פערי־": [
+ {
+ "word_nikkud": "פַּעַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5675-paar",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוח": [
+ {
+ "word_nikkud": "פִּצּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7743-pitzuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוחים": [
+ {
+ "word_nikkud": "פִּצּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7743-pitzuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוח־": [
+ {
+ "word_nikkud": "פִּצּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7743-pitzuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוחי־": [
+ {
+ "word_nikkud": "פִּצּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7743-pitzuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוי": [
+ {
+ "word_nikkud": "פִּצּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2992-pitzuy",
+ "gender": "masculine"
+ }
+ ],
+ "פיצויים": [
+ {
+ "word_nikkud": "פִּצּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2992-pitzuy",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוי־": [
+ {
+ "word_nikkud": "פִּצּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2992-pitzuy",
+ "gender": "masculine"
+ }
+ ],
+ "פיצויי־": [
+ {
+ "word_nikkud": "פִּצּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2992-pitzuy",
+ "gender": "masculine"
+ }
+ ],
+ "פיצול": [
+ {
+ "word_nikkud": "פִּצּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7714-pitzul",
+ "gender": "masculine"
+ }
+ ],
+ "פיצולים": [
+ {
+ "word_nikkud": "פִּצּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7714-pitzul",
+ "gender": "masculine"
+ }
+ ],
+ "פיצול־": [
+ {
+ "word_nikkud": "פִּצּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7714-pitzul",
+ "gender": "masculine"
+ }
+ ],
+ "פיצולי־": [
+ {
+ "word_nikkud": "פִּצּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7714-pitzul",
+ "gender": "masculine"
+ }
+ ],
+ "פצע": [
+ {
+ "word_nikkud": "פֶּצַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8669-petza",
+ "gender": "masculine"
+ }
+ ],
+ "פצעים": [
+ {
+ "word_nikkud": "פֶּצַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8669-petza",
+ "gender": "masculine"
+ }
+ ],
+ "פצע־": [
+ {
+ "word_nikkud": "פֶּצַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8669-petza",
+ "gender": "masculine"
+ }
+ ],
+ "פצעי־": [
+ {
+ "word_nikkud": "פֶּצַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8669-petza",
+ "gender": "masculine"
+ }
+ ],
+ "פציעה": [
+ {
+ "word_nikkud": "פְּצִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6434-ptzia",
+ "gender": "feminine"
+ }
+ ],
+ "פציעות": [
+ {
+ "word_nikkud": "פְּצִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6434-ptzia",
+ "gender": "feminine"
+ }
+ ],
+ "פציעת־": [
+ {
+ "word_nikkud": "פְּצִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6434-ptzia",
+ "gender": "feminine"
+ }
+ ],
+ "פציעות־": [
+ {
+ "word_nikkud": "פְּצִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6434-ptzia",
+ "gender": "feminine"
+ }
+ ],
+ "פיצוץ": [
+ {
+ "word_nikkud": "פִּצּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7245-pitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוצים": [
+ {
+ "word_nikkud": "פִּצּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7245-pitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוץ־": [
+ {
+ "word_nikkud": "פִּצּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7245-pitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "פיצוצי־": [
+ {
+ "word_nikkud": "פִּצּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7245-pitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "פצצה": [
+ {
+ "word_nikkud": "פְּצָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2856-ptzatza",
+ "gender": "feminine"
+ }
+ ],
+ "פצצות": [
+ {
+ "word_nikkud": "פְּצָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2856-ptzatza",
+ "gender": "feminine"
+ }
+ ],
+ "פצצת־": [
+ {
+ "word_nikkud": "פְּצָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2856-ptzatza",
+ "gender": "feminine"
+ }
+ ],
+ "פצצות־": [
+ {
+ "word_nikkud": "פְּצָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2856-ptzatza",
+ "gender": "feminine"
+ }
+ ],
+ "פקידות": [
+ {
+ "word_nikkud": "פְּקִידוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7147-pkidut",
+ "gender": "feminine"
+ }
+ ],
+ "פקידויות": [
+ {
+ "word_nikkud": "פְּקִידוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7147-pkidut",
+ "gender": "feminine"
+ }
+ ],
+ "פקידות־": [
+ {
+ "word_nikkud": "פְּקִידוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7147-pkidut",
+ "gender": "feminine"
+ }
+ ],
+ "פקידויות־": [
+ {
+ "word_nikkud": "פְּקִידוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7147-pkidut",
+ "gender": "feminine"
+ }
+ ],
+ "פקודה": [
+ {
+ "word_nikkud": "פְּקֻדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2865-pkuda",
+ "gender": "feminine"
+ }
+ ],
+ "פקודות": [
+ {
+ "word_nikkud": "פְּקֻדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2865-pkuda",
+ "gender": "feminine"
+ }
+ ],
+ "פקודת־": [
+ {
+ "word_nikkud": "פְּקֻדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2865-pkuda",
+ "gender": "feminine"
+ }
+ ],
+ "פקודות־": [
+ {
+ "word_nikkud": "פְּקֻדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2865-pkuda",
+ "gender": "feminine"
+ }
+ ],
+ "תפקיד": [
+ {
+ "word_nikkud": "תַּפְקִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3614-tafkid",
+ "gender": "masculine"
+ }
+ ],
+ "תפקידים": [
+ {
+ "word_nikkud": "תַּפְקִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3614-tafkid",
+ "gender": "masculine"
+ }
+ ],
+ "תפקיד־": [
+ {
+ "word_nikkud": "תַּפְקִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3614-tafkid",
+ "gender": "masculine"
+ }
+ ],
+ "תפקידי־": [
+ {
+ "word_nikkud": "תַּפְקִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3614-tafkid",
+ "gender": "masculine"
+ }
+ ],
+ "פיקדון": [
+ {
+ "word_nikkud": "פִּקָּדוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7816-pikadon",
+ "gender": "masculine"
+ }
+ ],
+ "פיקדונות": [
+ {
+ "word_nikkud": "פִּקָּדוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7816-pikadon",
+ "gender": "masculine"
+ }
+ ],
+ "פיקדון־": [
+ {
+ "word_nikkud": "פִּקָּדוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7816-pikadon",
+ "gender": "masculine"
+ }
+ ],
+ "פיקדונות־": [
+ {
+ "word_nikkud": "פִּקָּדוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7816-pikadon",
+ "gender": "masculine"
+ }
+ ],
+ "פקיד": [
+ {
+ "word_nikkud": "פָּקִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6829-pakid",
+ "gender": "masculine"
+ }
+ ],
+ "פקידים": [
+ {
+ "word_nikkud": "פָּקִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6829-pakid",
+ "gender": "masculine"
+ }
+ ],
+ "פקיד־": [
+ {
+ "word_nikkud": "פָּקִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6829-pakid",
+ "gender": "masculine"
+ }
+ ],
+ "פקידי־": [
+ {
+ "word_nikkud": "פָּקִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6829-pakid",
+ "gender": "masculine"
+ }
+ ],
+ "מפקד": [
+ {
+ "word_nikkud": "מִפְקָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6862-mifkad",
+ "gender": "masculine"
+ }
+ ],
+ "מפקדים": [
+ {
+ "word_nikkud": "מִפְקָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6862-mifkad",
+ "gender": "masculine"
+ }
+ ],
+ "מפקד־": [
+ {
+ "word_nikkud": "מִפְקָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6862-mifkad",
+ "gender": "masculine"
+ }
+ ],
+ "מפקדי־": [
+ {
+ "word_nikkud": "מִפְקָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6862-mifkad",
+ "gender": "masculine"
+ }
+ ],
+ "פקולטה": [
+ {
+ "word_nikkud": "פָקוּלְטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6576-fakulta",
+ "gender": "feminine"
+ }
+ ],
+ "פקולטות": [
+ {
+ "word_nikkud": "פָקוּלְטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6576-fakulta",
+ "gender": "feminine"
+ }
+ ],
+ "פקולטת־": [
+ {
+ "word_nikkud": "פָקוּלְטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6576-fakulta",
+ "gender": "feminine"
+ }
+ ],
+ "פקולטות־": [
+ {
+ "word_nikkud": "פָקוּלְטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6576-fakulta",
+ "gender": "feminine"
+ }
+ ],
+ "פיקוח": [
+ {
+ "word_nikkud": "פִּקּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4468-pikuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיקוחים": [
+ {
+ "word_nikkud": "פִּקּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4468-pikuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיקוח־": [
+ {
+ "word_nikkud": "פִּקּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4468-pikuach",
+ "gender": "masculine"
+ }
+ ],
+ "פיקוחי־": [
+ {
+ "word_nikkud": "פִּקּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4468-pikuach",
+ "gender": "masculine"
+ }
+ ],
+ "מפקח": [
+ {
+ "word_nikkud": "מְפַקֵּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8963-mefakeach",
+ "gender": "masculine"
+ }
+ ],
+ "מפקחים": [
+ {
+ "word_nikkud": "מְפַקֵּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8963-mefakeach",
+ "gender": "masculine"
+ }
+ ],
+ "מפקח־": [
+ {
+ "word_nikkud": "מְפַקֵּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8963-mefakeach",
+ "gender": "masculine"
+ }
+ ],
+ "מפקחי־": [
+ {
+ "word_nikkud": "מְפַקֵּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8963-mefakeach",
+ "gender": "masculine"
+ }
+ ],
+ "פקס": [
+ {
+ "word_nikkud": "פַקְס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7683-faks",
+ "gender": "masculine"
+ }
+ ],
+ "פקסים": [
+ {
+ "word_nikkud": "פַקְס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7683-faks",
+ "gender": "masculine"
+ }
+ ],
+ "פקס־": [
+ {
+ "word_nikkud": "פַקְס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7683-faks",
+ "gender": "masculine"
+ }
+ ],
+ "פקסי־": [
+ {
+ "word_nikkud": "פַקְס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7683-faks",
+ "gender": "masculine"
+ }
+ ],
+ "פקיעה": [
+ {
+ "word_nikkud": "פְּקִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9165-pkia",
+ "gender": "feminine"
+ }
+ ],
+ "פקיעות": [
+ {
+ "word_nikkud": "פְּקִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9165-pkia",
+ "gender": "feminine"
+ }
+ ],
+ "פקיעת־": [
+ {
+ "word_nikkud": "פְּקִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9165-pkia",
+ "gender": "feminine"
+ }
+ ],
+ "פקיעות־": [
+ {
+ "word_nikkud": "פְּקִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9165-pkia",
+ "gender": "feminine"
+ }
+ ],
+ "פקפוק": [
+ {
+ "word_nikkud": "פִּקְפּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6625-pikpuk",
+ "gender": "masculine"
+ }
+ ],
+ "פקפוקים": [
+ {
+ "word_nikkud": "פִּקְפּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6625-pikpuk",
+ "gender": "masculine"
+ }
+ ],
+ "פקפוק־": [
+ {
+ "word_nikkud": "פִּקְפּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6625-pikpuk",
+ "gender": "masculine"
+ }
+ ],
+ "פקפוקי־": [
+ {
+ "word_nikkud": "פִּקְפּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6625-pikpuk",
+ "gender": "masculine"
+ }
+ ],
+ "פיקה": [
+ {
+ "word_nikkud": "פִּקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5826-pika",
+ "gender": "feminine"
+ }
+ ],
+ "פיקות": [
+ {
+ "word_nikkud": "פִּקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5826-pika",
+ "gender": "feminine"
+ }
+ ],
+ "פיקת־": [
+ {
+ "word_nikkud": "פִּקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5826-pika",
+ "gender": "feminine"
+ }
+ ],
+ "פיקות־": [
+ {
+ "word_nikkud": "פִּקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5826-pika",
+ "gender": "feminine"
+ }
+ ],
+ "פקקת": [
+ {
+ "word_nikkud": "פַּקֶּקֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3296-pakeket",
+ "gender": "feminine"
+ }
+ ],
+ "פקקת־": [
+ {
+ "word_nikkud": "פַּקֶּקֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3296-pakeket",
+ "gender": "feminine"
+ }
+ ],
+ "פקק": [
+ {
+ "word_nikkud": "פְּקָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3302-pkak",
+ "gender": "masculine"
+ }
+ ],
+ "פקקים": [
+ {
+ "word_nikkud": "פְּקָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3302-pkak",
+ "gender": "masculine"
+ }
+ ],
+ "פקק־": [
+ {
+ "word_nikkud": "פְּקָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3302-pkak",
+ "gender": "masculine"
+ }
+ ],
+ "פקקי־": [
+ {
+ "word_nikkud": "פְּקָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3302-pkak",
+ "gender": "masculine"
+ }
+ ],
+ "פר": [
+ {
+ "word_nikkud": "פַּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5798-par",
+ "gender": "masculine"
+ }
+ ],
+ "פרים": [
+ {
+ "word_nikkud": "פַּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5798-par",
+ "gender": "masculine"
+ }
+ ],
+ "פר־": [
+ {
+ "word_nikkud": "פַּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5798-par",
+ "gender": "masculine"
+ }
+ ],
+ "פרי־": [
+ {
+ "word_nikkud": "פַּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5798-par",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "פְּרִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5943-pri",
+ "gender": "masculine"
+ }
+ ],
+ "פרא": [
+ {
+ "word_nikkud": "פֶּרֶא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6969-pere",
+ "gender": "masculine"
+ }
+ ],
+ "פראים": [
+ {
+ "word_nikkud": "פֶּרֶא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6969-pere",
+ "gender": "masculine"
+ }
+ ],
+ "פרא־": [
+ {
+ "word_nikkud": "פֶּרֶא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6969-pere",
+ "gender": "masculine"
+ }
+ ],
+ "פראי־": [
+ {
+ "word_nikkud": "פֶּרֶא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6969-pere",
+ "gender": "masculine"
+ }
+ ],
+ "פרג": [
+ {
+ "word_nikkud": "פָּרָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8324-parag",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "פָּרָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8324-parag",
+ "gender": "masculine"
+ }
+ ],
+ "פרגים": [
+ {
+ "word_nikkud": "פָּרָג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8324-parag",
+ "gender": "masculine"
+ }
+ ],
+ "פרג־": [
+ {
+ "word_nikkud": "פָּרָג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8324-parag",
+ "gender": "masculine"
+ }
+ ],
+ "פרגי־": [
+ {
+ "word_nikkud": "פָּרָג",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8324-parag",
+ "gender": "masculine"
+ }
+ ],
+ "פרגולה": [
+ {
+ "word_nikkud": "פֶּרְגּוֹלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6665-pergola",
+ "gender": ""
+ }
+ ],
+ "פרגולות": [
+ {
+ "word_nikkud": "פֶּרְגּוֹלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6665-pergola",
+ "gender": ""
+ }
+ ],
+ "פרגולת־": [
+ {
+ "word_nikkud": "פֶּרְגּוֹלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6665-pergola",
+ "gender": ""
+ }
+ ],
+ "פרגולות־": [
+ {
+ "word_nikkud": "פֶּרְגּוֹלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6665-pergola",
+ "gender": ""
+ }
+ ],
+ "פירוד": [
+ {
+ "word_nikkud": "פֵּרוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7654-perud",
+ "gender": "masculine"
+ }
+ ],
+ "פירודים": [
+ {
+ "word_nikkud": "פֵּרוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7654-perud",
+ "gender": "masculine"
+ }
+ ],
+ "פירוד־": [
+ {
+ "word_nikkud": "פֵּרוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7654-perud",
+ "gender": "masculine"
+ }
+ ],
+ "פירודי־": [
+ {
+ "word_nikkud": "פֵּרוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7654-perud",
+ "gender": "masculine"
+ }
+ ],
+ "פרידה": [
+ {
+ "word_nikkud": "פְּרֵדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2842-preda",
+ "gender": "feminine"
+ }
+ ],
+ "פרידות": [
+ {
+ "word_nikkud": "פְּרֵדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2842-preda",
+ "gender": "feminine"
+ }
+ ],
+ "פרידת־": [
+ {
+ "word_nikkud": "פְּרֵדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2842-preda",
+ "gender": "feminine"
+ }
+ ],
+ "פרידות־": [
+ {
+ "word_nikkud": "פְּרֵדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2842-preda",
+ "gender": "feminine"
+ }
+ ],
+ "הפרדה": [
+ {
+ "word_nikkud": "הַפְרָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2899-hafrada",
+ "gender": "feminine"
+ }
+ ],
+ "הפרדת־": [
+ {
+ "word_nikkud": "הַפְרָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2899-hafrada",
+ "gender": "feminine"
+ }
+ ],
+ "היפרדות": [
+ {
+ "word_nikkud": "הִפָּרְדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9189-hipardut",
+ "gender": "feminine"
+ }
+ ],
+ "היפרדויות": [
+ {
+ "word_nikkud": "הִפָּרְדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9189-hipardut",
+ "gender": "feminine"
+ }
+ ],
+ "היפרדות־": [
+ {
+ "word_nikkud": "הִפָּרְדוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9189-hipardut",
+ "gender": "feminine"
+ }
+ ],
+ "היפרדויות־": [
+ {
+ "word_nikkud": "הִפָּרְדוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9189-hipardut",
+ "gender": "feminine"
+ }
+ ],
+ "פרד": [
+ {
+ "word_nikkud": "פֶּרֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6479-pered",
+ "gender": "masculine"
+ }
+ ],
+ "פרדים": [
+ {
+ "word_nikkud": "פֶּרֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6479-pered",
+ "gender": "masculine"
+ }
+ ],
+ "פרד־": [
+ {
+ "word_nikkud": "פֶּרֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6479-pered",
+ "gender": "masculine"
+ }
+ ],
+ "פרדי־": [
+ {
+ "word_nikkud": "פֶּרֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6479-pered",
+ "gender": "masculine"
+ }
+ ],
+ "פרדס": [
+ {
+ "word_nikkud": "פַּרְדֵּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7479-pardes",
+ "gender": ""
+ }
+ ],
+ "פרדסים": [
+ {
+ "word_nikkud": "פַּרְדֵּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7479-pardes",
+ "gender": ""
+ }
+ ],
+ "פרדס־": [
+ {
+ "word_nikkud": "פַּרְדֵּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7479-pardes",
+ "gender": ""
+ }
+ ],
+ "פרדסי־": [
+ {
+ "word_nikkud": "פַּרְדֵּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7479-pardes",
+ "gender": ""
+ }
+ ],
+ "פרה": [
+ {
+ "word_nikkud": "פָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5799-para",
+ "gender": "feminine"
+ }
+ ],
+ "פרות": [
+ {
+ "word_nikkud": "פָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5799-para",
+ "gender": "feminine"
+ }
+ ],
+ "פרת־": [
+ {
+ "word_nikkud": "פָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5799-para",
+ "gender": "feminine"
+ }
+ ],
+ "פרות־": [
+ {
+ "word_nikkud": "פָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5799-para",
+ "gender": "feminine"
+ }
+ ],
+ "פרווה": [
+ {
+ "word_nikkud": "פַּרְוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8895-parva",
+ "gender": "feminine"
+ }
+ ],
+ "פרוות": [
+ {
+ "word_nikkud": "פַּרְוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8895-parva",
+ "gender": "feminine"
+ }
+ ],
+ "פרוות־": [
+ {
+ "word_nikkud": "פַּרְוָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8895-parva",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "פַּרְוָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8895-parva",
+ "gender": "feminine"
+ }
+ ],
+ "פירור": [
+ {
+ "word_nikkud": "פֵּרוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6723-perur",
+ "gender": "masculine"
+ }
+ ],
+ "פירורים": [
+ {
+ "word_nikkud": "פֵּרוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6723-perur",
+ "gender": "masculine"
+ }
+ ],
+ "פירור־": [
+ {
+ "word_nikkud": "פֵּרוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6723-perur",
+ "gender": "masculine"
+ }
+ ],
+ "פירורי־": [
+ {
+ "word_nikkud": "פֵּרוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6723-perur",
+ "gender": "masculine"
+ }
+ ],
+ "פרוותי": [
+ {
+ "word_nikkud": "פַּרְוָתִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8896-parvati",
+ "gender": "masculine"
+ }
+ ],
+ "פרוותיים": [
+ {
+ "word_nikkud": "פַּרְוָתִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8896-parvati",
+ "gender": "masculine"
+ }
+ ],
+ "פרוותי־": [
+ {
+ "word_nikkud": "פַּרְוָתִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8896-parvati",
+ "gender": "masculine"
+ }
+ ],
+ "פרוותיי־": [
+ {
+ "word_nikkud": "פַּרְוָתִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8896-parvati",
+ "gender": "masculine"
+ }
+ ],
+ "פרוזדור": [
+ {
+ "word_nikkud": "פְּרוֹזְדּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8060-prozdor",
+ "gender": "masculine"
+ }
+ ],
+ "פרוזדורים": [
+ {
+ "word_nikkud": "פְּרוֹזְדּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8060-prozdor",
+ "gender": "masculine"
+ }
+ ],
+ "פרוזדור־": [
+ {
+ "word_nikkud": "פְּרוֹזְדּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8060-prozdor",
+ "gender": "masculine"
+ }
+ ],
+ "פרוזדורי־": [
+ {
+ "word_nikkud": "פְּרוֹזְדּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8060-prozdor",
+ "gender": "masculine"
+ }
+ ],
+ "פרוטקציה": [
+ {
+ "word_nikkud": "פְּרוֹטֶקְצְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7949-protektzya",
+ "gender": ""
+ }
+ ],
+ "פרוטקציות": [
+ {
+ "word_nikkud": "פְּרוֹטֶקְצְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7949-protektzya",
+ "gender": ""
+ }
+ ],
+ "פרוטקציית־": [
+ {
+ "word_nikkud": "פְּרוֹטֶקְצְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7949-protektzya",
+ "gender": ""
+ }
+ ],
+ "פרוטקציות־": [
+ {
+ "word_nikkud": "פְּרוֹטֶקְצְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7949-protektzya",
+ "gender": ""
+ }
+ ],
+ "פרויקט": [
+ {
+ "word_nikkud": "פְּרוֹיֶקְט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7008-proyekt",
+ "gender": "masculine"
+ }
+ ],
+ "פרויקטים": [
+ {
+ "word_nikkud": "פְּרוֹיֶקְט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7008-proyekt",
+ "gender": "masculine"
+ }
+ ],
+ "פרויקט־": [
+ {
+ "word_nikkud": "פְּרוֹיֶקְט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7008-proyekt",
+ "gender": "masculine"
+ }
+ ],
+ "פרויקטי־": [
+ {
+ "word_nikkud": "פְּרוֹיֶקְט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7008-proyekt",
+ "gender": "masculine"
+ }
+ ],
+ "פירוק": [
+ {
+ "word_nikkud": "פֵּרוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6666-peruk",
+ "gender": "masculine"
+ }
+ ],
+ "פירוקים": [
+ {
+ "word_nikkud": "פֵּרוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6666-peruk",
+ "gender": "masculine"
+ }
+ ],
+ "פירוק־": [
+ {
+ "word_nikkud": "פֵּרוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6666-peruk",
+ "gender": "masculine"
+ }
+ ],
+ "פירוקי־": [
+ {
+ "word_nikkud": "פֵּרוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6666-peruk",
+ "gender": "masculine"
+ }
+ ],
+ "פרזול": [
+ {
+ "word_nikkud": "פִּרְזוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6547-pirzul",
+ "gender": "masculine"
+ }
+ ],
+ "פרזולים": [
+ {
+ "word_nikkud": "פִּרְזוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6547-pirzul",
+ "gender": "masculine"
+ }
+ ],
+ "פרזול־": [
+ {
+ "word_nikkud": "פִּרְזוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6547-pirzul",
+ "gender": "masculine"
+ }
+ ],
+ "פרזולי־": [
+ {
+ "word_nikkud": "פִּרְזוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6547-pirzul",
+ "gender": "masculine"
+ }
+ ],
+ "פרח": [
+ {
+ "word_nikkud": "פֶּרַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6071-perach",
+ "gender": "masculine"
+ }
+ ],
+ "פרחים": [
+ {
+ "word_nikkud": "פֶּרַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6071-perach",
+ "gender": "masculine"
+ }
+ ],
+ "פרח־": [
+ {
+ "word_nikkud": "פֶּרַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6071-perach",
+ "gender": "masculine"
+ }
+ ],
+ "פרחי־": [
+ {
+ "word_nikkud": "פֶּרַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6071-perach",
+ "gender": "masculine"
+ }
+ ],
+ "פריחה": [
+ {
+ "word_nikkud": "פְּרִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4258-pricha",
+ "gender": "feminine"
+ }
+ ],
+ "פריחות": [
+ {
+ "word_nikkud": "פְּרִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4258-pricha",
+ "gender": "feminine"
+ }
+ ],
+ "פריחת־": [
+ {
+ "word_nikkud": "פְּרִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4258-pricha",
+ "gender": "feminine"
+ }
+ ],
+ "פריחות־": [
+ {
+ "word_nikkud": "פְּרִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4258-pricha",
+ "gender": "feminine"
+ }
+ ],
+ "אפרוח": [
+ {
+ "word_nikkud": "אֶפְרוֹחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6295-efroach",
+ "gender": ""
+ }
+ ],
+ "אפרוחים": [
+ {
+ "word_nikkud": "אֶפְרוֹחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6295-efroach",
+ "gender": ""
+ }
+ ],
+ "אפרוח־": [
+ {
+ "word_nikkud": "אֶפְרוֹחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6295-efroach",
+ "gender": ""
+ }
+ ],
+ "אפרוחי־": [
+ {
+ "word_nikkud": "אֶפְרוֹחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6295-efroach",
+ "gender": ""
+ }
+ ],
+ "תפריט": [
+ {
+ "word_nikkud": "תַּפְרִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5932-tafrit",
+ "gender": "masculine"
+ }
+ ],
+ "תפריטים": [
+ {
+ "word_nikkud": "תַּפְרִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5932-tafrit",
+ "gender": "masculine"
+ }
+ ],
+ "תפריט־": [
+ {
+ "word_nikkud": "תַּפְרִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5932-tafrit",
+ "gender": "masculine"
+ }
+ ],
+ "תפריטי־": [
+ {
+ "word_nikkud": "תַּפְרִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5932-tafrit",
+ "gender": "masculine"
+ }
+ ],
+ "פריט": [
+ {
+ "word_nikkud": "פְּרִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5931-prit",
+ "gender": "masculine"
+ }
+ ],
+ "פריטים": [
+ {
+ "word_nikkud": "פְּרִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5931-prit",
+ "gender": "masculine"
+ }
+ ],
+ "פריט־": [
+ {
+ "word_nikkud": "פְּרִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5931-prit",
+ "gender": "masculine"
+ }
+ ],
+ "פריטי־": [
+ {
+ "word_nikkud": "פְּרִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5931-prit",
+ "gender": "masculine"
+ }
+ ],
+ "פירוט": [
+ {
+ "word_nikkud": "פֵּרוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8319-perut",
+ "gender": "masculine"
+ }
+ ],
+ "פירוטים": [
+ {
+ "word_nikkud": "פֵּרוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8319-perut",
+ "gender": "masculine"
+ }
+ ],
+ "פירוט־": [
+ {
+ "word_nikkud": "פֵּרוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8319-perut",
+ "gender": "masculine"
+ }
+ ],
+ "פירוטי־": [
+ {
+ "word_nikkud": "פֵּרוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8319-perut",
+ "gender": "masculine"
+ }
+ ],
+ "פרט": [
+ {
+ "word_nikkud": "פְּרָט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3053-prat",
+ "gender": "masculine"
+ }
+ ],
+ "פרטים": [
+ {
+ "word_nikkud": "פְּרָט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3053-prat",
+ "gender": "masculine"
+ }
+ ],
+ "פרט־": [
+ {
+ "word_nikkud": "פְּרָט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3053-prat",
+ "gender": "masculine"
+ }
+ ],
+ "פרטי־": [
+ {
+ "word_nikkud": "פְּרָט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3053-prat",
+ "gender": "masculine"
+ }
+ ],
+ "הפרטה": [
+ {
+ "word_nikkud": "הַפְרָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4546-hafrata",
+ "gender": "feminine"
+ }
+ ],
+ "הפרטות": [
+ {
+ "word_nikkud": "הַפְרָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4546-hafrata",
+ "gender": "feminine"
+ }
+ ],
+ "הפרטת־": [
+ {
+ "word_nikkud": "הַפְרָטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4546-hafrata",
+ "gender": "feminine"
+ }
+ ],
+ "הפרטות־": [
+ {
+ "word_nikkud": "הַפְרָטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4546-hafrata",
+ "gender": "feminine"
+ }
+ ],
+ "מפרט": [
+ {
+ "word_nikkud": "מַפְרֵט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8477-mafret",
+ "gender": "masculine"
+ }
+ ],
+ "מפרטים": [
+ {
+ "word_nikkud": "מַפְרֵט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8477-mafret",
+ "gender": "masculine"
+ }
+ ],
+ "מפרט־": [
+ {
+ "word_nikkud": "מַפְרֵט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8477-mafret",
+ "gender": "masculine"
+ }
+ ],
+ "מפרטי־": [
+ {
+ "word_nikkud": "מַפְרֵט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8477-mafret",
+ "gender": "masculine"
+ }
+ ],
+ "הפריה": [
+ {
+ "word_nikkud": "הַפְרָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2900-hafraya",
+ "gender": "feminine"
+ }
+ ],
+ "הפריות": [
+ {
+ "word_nikkud": "הַפְרָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2900-hafraya",
+ "gender": "feminine"
+ }
+ ],
+ "הפריית־": [
+ {
+ "word_nikkud": "הַפְרָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2900-hafraya",
+ "gender": "feminine"
+ }
+ ],
+ "הפריות־": [
+ {
+ "word_nikkud": "הַפְרָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2900-hafraya",
+ "gender": "feminine"
+ }
+ ],
+ "פריון": [
+ {
+ "word_nikkud": "פִּרְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3589-piryon",
+ "gender": "masculine"
+ }
+ ],
+ "פריונות": [
+ {
+ "word_nikkud": "פִּרְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3589-piryon",
+ "gender": "masculine"
+ }
+ ],
+ "פריון־": [
+ {
+ "word_nikkud": "פִּרְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3589-piryon",
+ "gender": "masculine"
+ }
+ ],
+ "פריונות־": [
+ {
+ "word_nikkud": "פִּרְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3589-piryon",
+ "gender": "masculine"
+ }
+ ],
+ "פרי": [
+ {
+ "word_nikkud": "פְּרִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5943-pri",
+ "gender": "masculine"
+ }
+ ],
+ "פירות": [
+ {
+ "word_nikkud": "פְּרִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5943-pri",
+ "gender": "masculine"
+ }
+ ],
+ "פירות־": [
+ {
+ "word_nikkud": "פְּרִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5943-pri",
+ "gender": "masculine"
+ }
+ ],
+ "פרי יער": [
+ {
+ "word_nikkud": "פְּרִי יַעַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9169-pri-yaar",
+ "gender": ""
+ }
+ ],
+ "פירות יער": [
+ {
+ "word_nikkud": "פְּרִי יַעַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9169-pri-yaar",
+ "gender": ""
+ }
+ ],
+ "פרך": [
+ {
+ "word_nikkud": "פֶּרֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4545-perech",
+ "gender": "masculine"
+ }
+ ],
+ "פרך־": [
+ {
+ "word_nikkud": "פֶּרֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4545-perech",
+ "gender": "masculine"
+ }
+ ],
+ "פרם": [
+ {
+ "word_nikkud": "פֶּרֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3172-perem",
+ "gender": "masculine"
+ }
+ ],
+ "פרמים": [
+ {
+ "word_nikkud": "פֶּרֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3172-perem",
+ "gender": "masculine"
+ }
+ ],
+ "פרם־": [
+ {
+ "word_nikkud": "פֶּרֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3172-perem",
+ "gender": "masculine"
+ }
+ ],
+ "פרמי־": [
+ {
+ "word_nikkud": "פֶּרֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3172-perem",
+ "gender": "masculine"
+ }
+ ],
+ "פרנסה": [
+ {
+ "word_nikkud": "פַּרְנָסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5696-parnasa",
+ "gender": "feminine"
+ }
+ ],
+ "פרנסות": [
+ {
+ "word_nikkud": "פַּרְנָסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5696-parnasa",
+ "gender": "feminine"
+ }
+ ],
+ "פרנסת־": [
+ {
+ "word_nikkud": "פַּרְנָסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5696-parnasa",
+ "gender": "feminine"
+ }
+ ],
+ "פרנסות־": [
+ {
+ "word_nikkud": "פַּרְנָסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5696-parnasa",
+ "gender": "feminine"
+ }
+ ],
+ "פרנס": [
+ {
+ "word_nikkud": "פַּרְנָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5697-parnas",
+ "gender": "masculine"
+ }
+ ],
+ "פרנסים": [
+ {
+ "word_nikkud": "פַּרְנָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5697-parnas",
+ "gender": "masculine"
+ }
+ ],
+ "פרנס־": [
+ {
+ "word_nikkud": "פַּרְנָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5697-parnas",
+ "gender": "masculine"
+ }
+ ],
+ "פרנסי־": [
+ {
+ "word_nikkud": "פַּרְנָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5697-parnas",
+ "gender": "masculine"
+ }
+ ],
+ "התפרסות": [
+ {
+ "word_nikkud": "הִתְפָּרְסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8480-hitparsut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרסויות": [
+ {
+ "word_nikkud": "הִתְפָּרְסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8480-hitparsut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרסות־": [
+ {
+ "word_nikkud": "הִתְפָּרְסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8480-hitparsut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרסויות־": [
+ {
+ "word_nikkud": "הִתְפָּרְסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8480-hitparsut",
+ "gender": "feminine"
+ }
+ ],
+ "פרס": [
+ {
+ "word_nikkud": "פְּרָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4897-pras",
+ "gender": "masculine"
+ }
+ ],
+ "פרסים": [
+ {
+ "word_nikkud": "פְּרָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4897-pras",
+ "gender": "masculine"
+ }
+ ],
+ "פרס־": [
+ {
+ "word_nikkud": "פְּרָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4897-pras",
+ "gender": "masculine"
+ }
+ ],
+ "פרסי־": [
+ {
+ "word_nikkud": "פְּרָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4897-pras",
+ "gender": "masculine"
+ }
+ ],
+ "פריסה": [
+ {
+ "word_nikkud": "פְּרִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6165-prisa",
+ "gender": "feminine"
+ }
+ ],
+ "פריסות": [
+ {
+ "word_nikkud": "פְּרִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6165-prisa",
+ "gender": "feminine"
+ }
+ ],
+ "פריסת־": [
+ {
+ "word_nikkud": "פְּרִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6165-prisa",
+ "gender": "feminine"
+ }
+ ],
+ "פריסות־": [
+ {
+ "word_nikkud": "פְּרִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6165-prisa",
+ "gender": "feminine"
+ }
+ ],
+ "פרוסה": [
+ {
+ "word_nikkud": "פְּרוּסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7280-prusa",
+ "gender": "feminine"
+ }
+ ],
+ "פרוסות": [
+ {
+ "word_nikkud": "פְּרוּסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7280-prusa",
+ "gender": "feminine"
+ }
+ ],
+ "פרוסת־": [
+ {
+ "word_nikkud": "פְּרוּסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7280-prusa",
+ "gender": "feminine"
+ }
+ ],
+ "פרוסות־": [
+ {
+ "word_nikkud": "פְּרוּסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7280-prusa",
+ "gender": "feminine"
+ }
+ ],
+ "פרסום": [
+ {
+ "word_nikkud": "פִּרְסוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4634-pirsum",
+ "gender": "masculine"
+ }
+ ],
+ "פרסומים": [
+ {
+ "word_nikkud": "פִּרְסוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4634-pirsum",
+ "gender": "masculine"
+ }
+ ],
+ "פרסום־": [
+ {
+ "word_nikkud": "פִּרְסוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4634-pirsum",
+ "gender": "masculine"
+ }
+ ],
+ "פרסומי־": [
+ {
+ "word_nikkud": "פִּרְסוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4634-pirsum",
+ "gender": "masculine"
+ }
+ ],
+ "פרסומת": [
+ {
+ "word_nikkud": "פִּרְסֹמֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4635-pirsomet",
+ "gender": "feminine"
+ }
+ ],
+ "פרסומות": [
+ {
+ "word_nikkud": "פִּרְסֹמֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4635-pirsomet",
+ "gender": "feminine"
+ }
+ ],
+ "פרסומת־": [
+ {
+ "word_nikkud": "פִּרְסֹמֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4635-pirsomet",
+ "gender": "feminine"
+ }
+ ],
+ "פרסומות־": [
+ {
+ "word_nikkud": "פִּרְסֹמֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4635-pirsomet",
+ "gender": "feminine"
+ }
+ ],
+ "התפרעות": [
+ {
+ "word_nikkud": "הִתְפָּרְעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7717-hitparut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרעויות": [
+ {
+ "word_nikkud": "הִתְפָּרְעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7717-hitparut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרעות־": [
+ {
+ "word_nikkud": "הִתְפָּרְעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7717-hitparut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרעויות־": [
+ {
+ "word_nikkud": "הִתְפָּרְעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7717-hitparut",
+ "gender": "feminine"
+ }
+ ],
+ "הפרעה": [
+ {
+ "word_nikkud": "הַפְרָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8496-hafraa",
+ "gender": "feminine"
+ }
+ ],
+ "הפרעות": [
+ {
+ "word_nikkud": "הַפְרָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8496-hafraa",
+ "gender": "feminine"
+ }
+ ],
+ "הפרעת־": [
+ {
+ "word_nikkud": "הַפְרָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8496-hafraa",
+ "gender": "feminine"
+ }
+ ],
+ "הפרעות־": [
+ {
+ "word_nikkud": "הַפְרָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8496-hafraa",
+ "gender": "feminine"
+ }
+ ],
+ "פרעות": [
+ {
+ "word_nikkud": "פְּרָעוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9181-praot",
+ "gender": "feminine"
+ }
+ ],
+ "פרעות־": [
+ {
+ "word_nikkud": "פְּרָעוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9181-praot",
+ "gender": "feminine"
+ }
+ ],
+ "פורע": [
+ {
+ "word_nikkud": "פּוֹרֵעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7242-porea",
+ "gender": "masculine"
+ }
+ ],
+ "פורעים": [
+ {
+ "word_nikkud": "פּוֹרֵעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7242-porea",
+ "gender": "masculine"
+ }
+ ],
+ "פורע־": [
+ {
+ "word_nikkud": "פּוֹרֵעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7242-porea",
+ "gender": "masculine"
+ }
+ ],
+ "פורעי־": [
+ {
+ "word_nikkud": "פּוֹרֵעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7242-porea",
+ "gender": "masculine"
+ }
+ ],
+ "פרעוש": [
+ {
+ "word_nikkud": "פַּרְעוֹשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7758-parosh",
+ "gender": "masculine"
+ }
+ ],
+ "פרעושים": [
+ {
+ "word_nikkud": "פַּרְעוֹשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7758-parosh",
+ "gender": "masculine"
+ }
+ ],
+ "פרעוש־": [
+ {
+ "word_nikkud": "פַּרְעוֹשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7758-parosh",
+ "gender": "masculine"
+ }
+ ],
+ "פרעושי־": [
+ {
+ "word_nikkud": "פַּרְעוֹשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7758-parosh",
+ "gender": "masculine"
+ }
+ ],
+ "פרפר": [
+ {
+ "word_nikkud": "פַּרְפָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3787-parpar",
+ "gender": "masculine"
+ }
+ ],
+ "פרפרים": [
+ {
+ "word_nikkud": "פַּרְפָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3787-parpar",
+ "gender": "masculine"
+ }
+ ],
+ "פרפר־": [
+ {
+ "word_nikkud": "פַּרְפָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3787-parpar",
+ "gender": "masculine"
+ }
+ ],
+ "פרפרי־": [
+ {
+ "word_nikkud": "פַּרְפָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3787-parpar",
+ "gender": "masculine"
+ }
+ ],
+ "מפרץ": [
+ {
+ "word_nikkud": "מִפְרָץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3545-mifratz",
+ "gender": "masculine"
+ }
+ ],
+ "מפרצים": [
+ {
+ "word_nikkud": "מִפְרָץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3545-mifratz",
+ "gender": "masculine"
+ }
+ ],
+ "מפרץ־": [
+ {
+ "word_nikkud": "מִפְרָץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3545-mifratz",
+ "gender": "masculine"
+ }
+ ],
+ "מפרצי־": [
+ {
+ "word_nikkud": "מִפְרָץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3545-mifratz",
+ "gender": "masculine"
+ }
+ ],
+ "פריצה": [
+ {
+ "word_nikkud": "פְּרִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4013-pritza",
+ "gender": "feminine"
+ }
+ ],
+ "פריצות": [
+ {
+ "word_nikkud": "פְּרִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4013-pritza",
+ "gender": "feminine"
+ }
+ ],
+ "פריצת־": [
+ {
+ "word_nikkud": "פְּרִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4013-pritza",
+ "gender": "feminine"
+ }
+ ],
+ "פריצות־": [
+ {
+ "word_nikkud": "פְּרִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4013-pritza",
+ "gender": "feminine"
+ }
+ ],
+ "פרץ": [
+ {
+ "word_nikkud": "פֶּרֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5066-peretz",
+ "gender": "masculine"
+ }
+ ],
+ "פרצים": [
+ {
+ "word_nikkud": "פֶּרֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5066-peretz",
+ "gender": "masculine"
+ }
+ ],
+ "פרץ־": [
+ {
+ "word_nikkud": "פֶּרֶץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5066-peretz",
+ "gender": "masculine"
+ }
+ ],
+ "פרצי־": [
+ {
+ "word_nikkud": "פֶּרֶץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5066-peretz",
+ "gender": "masculine"
+ }
+ ],
+ "התפרצות": [
+ {
+ "word_nikkud": "הִתְפָּרְצוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7347-hitpartzut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרצויות": [
+ {
+ "word_nikkud": "הִתְפָּרְצוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7347-hitpartzut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרצות־": [
+ {
+ "word_nikkud": "הִתְפָּרְצוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7347-hitpartzut",
+ "gender": "feminine"
+ }
+ ],
+ "התפרצויות־": [
+ {
+ "word_nikkud": "הִתְפָּרְצוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7347-hitpartzut",
+ "gender": "feminine"
+ }
+ ],
+ "פרצוף": [
+ {
+ "word_nikkud": "פַּרְצוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6172-partzuf",
+ "gender": "masculine"
+ }
+ ],
+ "פרצופים": [
+ {
+ "word_nikkud": "פַּרְצוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6172-partzuf",
+ "gender": "masculine"
+ }
+ ],
+ "פרצוף־": [
+ {
+ "word_nikkud": "פַּרְצוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6172-partzuf",
+ "gender": "masculine"
+ }
+ ],
+ "פרצופי־": [
+ {
+ "word_nikkud": "פַּרְצוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6172-partzuf",
+ "gender": "masculine"
+ }
+ ],
+ "פרק": [
+ {
+ "word_nikkud": "פֶּרֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6079-perek",
+ "gender": "masculine"
+ }
+ ],
+ "פרקים": [
+ {
+ "word_nikkud": "פֶּרֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6079-perek",
+ "gender": "masculine"
+ }
+ ],
+ "פרק־": [
+ {
+ "word_nikkud": "פֶּרֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6079-perek",
+ "gender": "masculine"
+ }
+ ],
+ "פרקי־": [
+ {
+ "word_nikkud": "פֶּרֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6079-perek",
+ "gender": "masculine"
+ }
+ ],
+ "מפרק": [
+ {
+ "word_nikkud": "מִפְרָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3710-mifrak",
+ "gender": "masculine"
+ }
+ ],
+ "מפרקים": [
+ {
+ "word_nikkud": "מִפְרָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3710-mifrak",
+ "gender": "masculine"
+ }
+ ],
+ "מפרק־": [
+ {
+ "word_nikkud": "מִפְרָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3710-mifrak",
+ "gender": "masculine"
+ }
+ ],
+ "מפרקי־": [
+ {
+ "word_nikkud": "מִפְרָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3710-mifrak",
+ "gender": "masculine"
+ }
+ ],
+ "פריקה": [
+ {
+ "word_nikkud": "פְּרִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9258-prika",
+ "gender": "feminine"
+ }
+ ],
+ "פריקות": [
+ {
+ "word_nikkud": "פְּרִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9258-prika",
+ "gender": "feminine"
+ }
+ ],
+ "פריקת־": [
+ {
+ "word_nikkud": "פְּרִיקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9258-prika",
+ "gender": "feminine"
+ }
+ ],
+ "פריקות־": [
+ {
+ "word_nikkud": "פְּרִיקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9258-prika",
+ "gender": "feminine"
+ }
+ ],
+ "פרקליט": [
+ {
+ "word_nikkud": "פְּרַקְלִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3714-praklit",
+ "gender": "masculine"
+ }
+ ],
+ "פרקליטים": [
+ {
+ "word_nikkud": "פְּרַקְלִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3714-praklit",
+ "gender": "masculine"
+ }
+ ],
+ "פרקליט־": [
+ {
+ "word_nikkud": "פְּרַקְלִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3714-praklit",
+ "gender": "masculine"
+ }
+ ],
+ "פרקליטי־": [
+ {
+ "word_nikkud": "פְּרַקְלִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3714-praklit",
+ "gender": "masculine"
+ }
+ ],
+ "פרקליטות": [
+ {
+ "word_nikkud": "פְּרַקְלִיטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9077-praklitut",
+ "gender": "feminine"
+ }
+ ],
+ "פרקליטויות": [
+ {
+ "word_nikkud": "פְּרַקְלִיטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9077-praklitut",
+ "gender": "feminine"
+ }
+ ],
+ "פרקליטות־": [
+ {
+ "word_nikkud": "פְּרַקְלִיטוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9077-praklitut",
+ "gender": "feminine"
+ }
+ ],
+ "פרקליטויות־": [
+ {
+ "word_nikkud": "פְּרַקְלִיטוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9077-praklitut",
+ "gender": "feminine"
+ }
+ ],
+ "התפוררות": [
+ {
+ "word_nikkud": "הִתְפּוֹרְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "1607-hitporerut",
+ "gender": "feminine"
+ }
+ ],
+ "התפוררויות": [
+ {
+ "word_nikkud": "הִתְפּוֹרְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "1607-hitporerut",
+ "gender": "feminine"
+ }
+ ],
+ "התפוררות־": [
+ {
+ "word_nikkud": "הִתְפּוֹרְרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "1607-hitporerut",
+ "gender": "feminine"
+ }
+ ],
+ "התפוררויות־": [
+ {
+ "word_nikkud": "הִתְפּוֹרְרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "1607-hitporerut",
+ "gender": "feminine"
+ }
+ ],
+ "הפרה": [
+ {
+ "word_nikkud": "הֲפָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3292-hafara",
+ "gender": "feminine"
+ }
+ ],
+ "הפרות": [
+ {
+ "word_nikkud": "הֲפָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3292-hafara",
+ "gender": "feminine"
+ }
+ ],
+ "הפרת־": [
+ {
+ "word_nikkud": "הֲפָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3292-hafara",
+ "gender": "feminine"
+ }
+ ],
+ "הפרות־": [
+ {
+ "word_nikkud": "הֲפָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3292-hafara",
+ "gender": "feminine"
+ }
+ ],
+ "פרישות": [
+ {
+ "word_nikkud": "פְּרִישׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7613-prishut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "פְּרִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8799-prisha",
+ "gender": "feminine"
+ }
+ ],
+ "פרישויות": [
+ {
+ "word_nikkud": "פְּרִישׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7613-prishut",
+ "gender": "feminine"
+ }
+ ],
+ "פרישות־": [
+ {
+ "word_nikkud": "פְּרִישׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7613-prishut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "פְּרִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8799-prisha",
+ "gender": "feminine"
+ }
+ ],
+ "פרישויות־": [
+ {
+ "word_nikkud": "פְּרִישׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7613-prishut",
+ "gender": "feminine"
+ }
+ ],
+ "פירוש": [
+ {
+ "word_nikkud": "פֵּרוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5855-perush",
+ "gender": "masculine"
+ }
+ ],
+ "פירושים": [
+ {
+ "word_nikkud": "פֵּרוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5855-perush",
+ "gender": "masculine"
+ }
+ ],
+ "פירוש־": [
+ {
+ "word_nikkud": "פֵּרוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5855-perush",
+ "gender": "masculine"
+ }
+ ],
+ "פירושי־": [
+ {
+ "word_nikkud": "פֵּרוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5855-perush",
+ "gender": "masculine"
+ }
+ ],
+ "פרש": [
+ {
+ "word_nikkud": "פֶּרֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8415-peresh",
+ "gender": "masculine"
+ }
+ ],
+ "פרש־": [
+ {
+ "word_nikkud": "פֶּרֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8415-peresh",
+ "gender": "masculine"
+ }
+ ],
+ "הפרש": [
+ {
+ "word_nikkud": "הֶפְרֵשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2937-hefresh",
+ "gender": "masculine"
+ }
+ ],
+ "הפרשים": [
+ {
+ "word_nikkud": "הֶפְרֵשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2937-hefresh",
+ "gender": "masculine"
+ }
+ ],
+ "הפרש־": [
+ {
+ "word_nikkud": "הֶפְרֵשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2937-hefresh",
+ "gender": "masculine"
+ }
+ ],
+ "הפרשי־": [
+ {
+ "word_nikkud": "הֶפְרֵשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2937-hefresh",
+ "gender": "masculine"
+ }
+ ],
+ "מפרש": [
+ {
+ "word_nikkud": "מִפְרָשׂ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3916-mifras",
+ "gender": "masculine"
+ }
+ ],
+ "מפרשים": [
+ {
+ "word_nikkud": "מִפְרָשׂ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3916-mifras",
+ "gender": "masculine"
+ }
+ ],
+ "מפרש־": [
+ {
+ "word_nikkud": "מִפְרָשׂ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3916-mifras",
+ "gender": "masculine"
+ }
+ ],
+ "מפרשי־": [
+ {
+ "word_nikkud": "מִפְרָשׂ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3916-mifras",
+ "gender": "masculine"
+ }
+ ],
+ "פרשנות": [
+ {
+ "word_nikkud": "פַּרְשָׁנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6822-parshanut",
+ "gender": "feminine"
+ }
+ ],
+ "פרשנויות": [
+ {
+ "word_nikkud": "פַּרְשָׁנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6822-parshanut",
+ "gender": "feminine"
+ }
+ ],
+ "פרשנות־": [
+ {
+ "word_nikkud": "פַּרְשָׁנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6822-parshanut",
+ "gender": "feminine"
+ }
+ ],
+ "פרשנויות־": [
+ {
+ "word_nikkud": "פַּרְשָׁנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6822-parshanut",
+ "gender": "feminine"
+ }
+ ],
+ "הפרשה": [
+ {
+ "word_nikkud": "הַפְרָשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7827-hafrasha",
+ "gender": "feminine"
+ }
+ ],
+ "הפרשות": [
+ {
+ "word_nikkud": "הַפְרָשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7827-hafrasha",
+ "gender": "feminine"
+ }
+ ],
+ "הפרשת־": [
+ {
+ "word_nikkud": "הַפְרָשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7827-hafrasha",
+ "gender": "feminine"
+ }
+ ],
+ "הפרשות־": [
+ {
+ "word_nikkud": "הַפְרָשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7827-hafrasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרישה": [
+ {
+ "word_nikkud": "פְּרִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8799-prisha",
+ "gender": "feminine"
+ }
+ ],
+ "פרישת־": [
+ {
+ "word_nikkud": "פְּרִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8799-prisha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשה": [
+ {
+ "word_nikkud": "פָּרָשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8125-parasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשות": [
+ {
+ "word_nikkud": "פָּרָשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8125-parasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשיות": [
+ {
+ "word_nikkud": "פָּרָשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8125-parasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשת־": [
+ {
+ "word_nikkud": "פָּרָשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8125-parasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשות־": [
+ {
+ "word_nikkud": "פָּרָשָׁה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8125-parasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשיות־": [
+ {
+ "word_nikkud": "פָּרָשָׁה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8125-parasha",
+ "gender": "feminine"
+ }
+ ],
+ "פרשן": [
+ {
+ "word_nikkud": "פַּרְשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6821-parshan",
+ "gender": "masculine"
+ }
+ ],
+ "פרשנים": [
+ {
+ "word_nikkud": "פַּרְשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6821-parshan",
+ "gender": "masculine"
+ }
+ ],
+ "פרשן־": [
+ {
+ "word_nikkud": "פַּרְשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6821-parshan",
+ "gender": "masculine"
+ }
+ ],
+ "פרשני־": [
+ {
+ "word_nikkud": "פַּרְשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6821-parshan",
+ "gender": "masculine"
+ }
+ ],
+ "הפשטה": [
+ {
+ "word_nikkud": "הַפְשָׁטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2474-hafshata",
+ "gender": "feminine"
+ }
+ ],
+ "הפשטות": [
+ {
+ "word_nikkud": "הַפְשָׁטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2474-hafshata",
+ "gender": "feminine"
+ }
+ ],
+ "הפשטת־": [
+ {
+ "word_nikkud": "הַפְשָׁטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2474-hafshata",
+ "gender": "feminine"
+ }
+ ],
+ "הפשטות־": [
+ {
+ "word_nikkud": "הַפְשָׁטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2474-hafshata",
+ "gender": "feminine"
+ }
+ ],
+ "התפשטות": [
+ {
+ "word_nikkud": "הִתְפַּשְּׁטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7260-hitpashtut",
+ "gender": "feminine"
+ }
+ ],
+ "התפשטויות": [
+ {
+ "word_nikkud": "הִתְפַּשְּׁטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7260-hitpashtut",
+ "gender": "feminine"
+ }
+ ],
+ "התפשטות־": [
+ {
+ "word_nikkud": "הִתְפַּשְּׁטוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7260-hitpashtut",
+ "gender": "feminine"
+ }
+ ],
+ "התפשטויות־": [
+ {
+ "word_nikkud": "הִתְפַּשְּׁטוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7260-hitpashtut",
+ "gender": "feminine"
+ }
+ ],
+ "פשיטה": [
+ {
+ "word_nikkud": "פְּשִׁיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7429-pshita",
+ "gender": "feminine"
+ }
+ ],
+ "פשיטות": [
+ {
+ "word_nikkud": "פְּשִׁיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7429-pshita",
+ "gender": "feminine"
+ }
+ ],
+ "פשיטת־": [
+ {
+ "word_nikkud": "פְּשִׁיטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7429-pshita",
+ "gender": "feminine"
+ }
+ ],
+ "פשיטות־": [
+ {
+ "word_nikkud": "פְּשִׁיטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7429-pshita",
+ "gender": "feminine"
+ }
+ ],
+ "פשע": [
+ {
+ "word_nikkud": "פֶּשַׁע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7534-pesha",
+ "gender": "masculine"
+ }
+ ],
+ "פשעים": [
+ {
+ "word_nikkud": "פֶּשַׁע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7534-pesha",
+ "gender": "masculine"
+ }
+ ],
+ "פשע־": [
+ {
+ "word_nikkud": "פֶּשַׁע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7534-pesha",
+ "gender": "masculine"
+ }
+ ],
+ "פשעי־": [
+ {
+ "word_nikkud": "פֶּשַׁע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7534-pesha",
+ "gender": "masculine"
+ }
+ ],
+ "פשיעה": [
+ {
+ "word_nikkud": "פְּשִׁיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8398-pshia",
+ "gender": "feminine"
+ }
+ ],
+ "פשיעות": [
+ {
+ "word_nikkud": "פְּשִׁיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8398-pshia",
+ "gender": "feminine"
+ }
+ ],
+ "פשיעת־": [
+ {
+ "word_nikkud": "פְּשִׁיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8398-pshia",
+ "gender": "feminine"
+ }
+ ],
+ "פשיעות־": [
+ {
+ "word_nikkud": "פְּשִׁיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8398-pshia",
+ "gender": "feminine"
+ }
+ ],
+ "פשפש": [
+ {
+ "word_nikkud": "פִּשְׁפֵּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5997-pishpesh",
+ "gender": "masculine"
+ }
+ ],
+ "פשפשים": [
+ {
+ "word_nikkud": "פִּשְׁפֵּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5997-pishpesh",
+ "gender": "masculine"
+ }
+ ],
+ "פשפש־": [
+ {
+ "word_nikkud": "פִּשְׁפֵּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5997-pishpesh",
+ "gender": "masculine"
+ }
+ ],
+ "פשפשי־": [
+ {
+ "word_nikkud": "פִּשְׁפֵּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5997-pishpesh",
+ "gender": "masculine"
+ }
+ ],
+ "פישוק": [
+ {
+ "word_nikkud": "פִּשּׂוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9057-pisuk",
+ "gender": "masculine"
+ }
+ ],
+ "פישוקים": [
+ {
+ "word_nikkud": "פִּשּׂוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9057-pisuk",
+ "gender": "masculine"
+ }
+ ],
+ "פישוק־": [
+ {
+ "word_nikkud": "פִּשּׂוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9057-pisuk",
+ "gender": "masculine"
+ }
+ ],
+ "פישוקי־": [
+ {
+ "word_nikkud": "פִּשּׂוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9057-pisuk",
+ "gender": "masculine"
+ }
+ ],
+ "פשרה": [
+ {
+ "word_nikkud": "פְּשָׁרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2857-pshara",
+ "gender": "feminine"
+ }
+ ],
+ "פשרות": [
+ {
+ "word_nikkud": "פְּשָׁרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2857-pshara",
+ "gender": "feminine"
+ }
+ ],
+ "פשרת־": [
+ {
+ "word_nikkud": "פְּשָׁרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2857-pshara",
+ "gender": "feminine"
+ }
+ ],
+ "פשרות־": [
+ {
+ "word_nikkud": "פְּשָׁרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2857-pshara",
+ "gender": "feminine"
+ }
+ ],
+ "פשר": [
+ {
+ "word_nikkud": "פֵּשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6919-pesher",
+ "gender": "masculine"
+ }
+ ],
+ "פשרים": [
+ {
+ "word_nikkud": "פֵּשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6919-pesher",
+ "gender": "masculine"
+ }
+ ],
+ "פשר־": [
+ {
+ "word_nikkud": "פֵּשֶׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6919-pesher",
+ "gender": "masculine"
+ }
+ ],
+ "פשרי־": [
+ {
+ "word_nikkud": "פֵּשֶׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6919-pesher",
+ "gender": "masculine"
+ }
+ ],
+ "פשתה": [
+ {
+ "word_nikkud": "פִּשְׁתָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8805-pishta",
+ "gender": "feminine"
+ }
+ ],
+ "פשתים": [
+ {
+ "word_nikkud": "פִּשְׁתָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8805-pishta",
+ "gender": "feminine"
+ }
+ ],
+ "פשתת־": [
+ {
+ "word_nikkud": "פִּשְׁתָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8805-pishta",
+ "gender": "feminine"
+ }
+ ],
+ "פשתי־": [
+ {
+ "word_nikkud": "פִּשְׁתָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8805-pishta",
+ "gender": "feminine"
+ }
+ ],
+ "פשתן": [
+ {
+ "word_nikkud": "פִּשְׁתָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8806-pishtan",
+ "gender": "masculine"
+ }
+ ],
+ "פשתן־": [
+ {
+ "word_nikkud": "פִּשְׁתָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8806-pishtan",
+ "gender": "masculine"
+ }
+ ],
+ "פתגם": [
+ {
+ "word_nikkud": "פִּתְגָּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7473-pitgam",
+ "gender": ""
+ }
+ ],
+ "פתגמים": [
+ {
+ "word_nikkud": "פִּתְגָּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7473-pitgam",
+ "gender": ""
+ }
+ ],
+ "פתגם־": [
+ {
+ "word_nikkud": "פִּתְגָּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7473-pitgam",
+ "gender": ""
+ }
+ ],
+ "פתגמי־": [
+ {
+ "word_nikkud": "פִּתְגָּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7473-pitgam",
+ "gender": ""
+ }
+ ],
+ "התפתחות": [
+ {
+ "word_nikkud": "הִתְפַּתְּחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5915-hitpatchut",
+ "gender": "feminine"
+ }
+ ],
+ "התפתחויות": [
+ {
+ "word_nikkud": "הִתְפַּתְּחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5915-hitpatchut",
+ "gender": "feminine"
+ }
+ ],
+ "התפתחות־": [
+ {
+ "word_nikkud": "הִתְפַּתְּחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5915-hitpatchut",
+ "gender": "feminine"
+ }
+ ],
+ "התפתחויות־": [
+ {
+ "word_nikkud": "הִתְפַּתְּחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5915-hitpatchut",
+ "gender": "feminine"
+ }
+ ],
+ "פיתוח": [
+ {
+ "word_nikkud": "פִּתּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5591-pituach",
+ "gender": "masculine"
+ }
+ ],
+ "פיתוחים": [
+ {
+ "word_nikkud": "פִּתּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5591-pituach",
+ "gender": "masculine"
+ }
+ ],
+ "פיתוח־": [
+ {
+ "word_nikkud": "פִּתּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5591-pituach",
+ "gender": "masculine"
+ }
+ ],
+ "פיתוחי־": [
+ {
+ "word_nikkud": "פִּתּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5591-pituach",
+ "gender": "masculine"
+ }
+ ],
+ "פתח": [
+ {
+ "word_nikkud": "פֶּתַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5492-petach",
+ "gender": "masculine"
+ }
+ ],
+ "פתחים": [
+ {
+ "word_nikkud": "פֶּתַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5492-petach",
+ "gender": "masculine"
+ }
+ ],
+ "פתח־": [
+ {
+ "word_nikkud": "פֶּתַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5492-petach",
+ "gender": "masculine"
+ }
+ ],
+ "פתחי־": [
+ {
+ "word_nikkud": "פֶּתַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5492-petach",
+ "gender": "masculine"
+ }
+ ],
+ "פתיחה": [
+ {
+ "word_nikkud": "פְּתִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2835-pticha",
+ "gender": "feminine"
+ }
+ ],
+ "פתיחות": [
+ {
+ "word_nikkud": "פְּתִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2835-pticha",
+ "gender": "feminine"
+ }
+ ],
+ "פתיחת־": [
+ {
+ "word_nikkud": "פְּתִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2835-pticha",
+ "gender": "feminine"
+ }
+ ],
+ "פתיחות־": [
+ {
+ "word_nikkud": "פְּתִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2835-pticha",
+ "gender": "feminine"
+ }
+ ],
+ "מפתח": [
+ {
+ "word_nikkud": "מַפְתֵּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3521-mafteach",
+ "gender": "masculine"
+ }
+ ],
+ "מפתחות": [
+ {
+ "word_nikkud": "מַפְתֵּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3521-mafteach",
+ "gender": "masculine"
+ }
+ ],
+ "מפתח־": [
+ {
+ "word_nikkud": "מַפְתֵּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3521-mafteach",
+ "gender": "masculine"
+ }
+ ],
+ "מפתחות־": [
+ {
+ "word_nikkud": "מַפְתֵּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3521-mafteach",
+ "gender": "masculine"
+ }
+ ],
+ "פיתוי": [
+ {
+ "word_nikkud": "פִּתּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3913-pituy",
+ "gender": "masculine"
+ }
+ ],
+ "פיתויים": [
+ {
+ "word_nikkud": "פִּתּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3913-pituy",
+ "gender": "masculine"
+ }
+ ],
+ "פיתוי־": [
+ {
+ "word_nikkud": "פִּתּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3913-pituy",
+ "gender": "masculine"
+ }
+ ],
+ "פיתויי־": [
+ {
+ "word_nikkud": "פִּתּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3913-pituy",
+ "gender": "masculine"
+ }
+ ],
+ "פיתיון": [
+ {
+ "word_nikkud": "פִּתָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3903-pitayon",
+ "gender": "masculine"
+ }
+ ],
+ "פיתיונות": [
+ {
+ "word_nikkud": "פִּתָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3903-pitayon",
+ "gender": "masculine"
+ }
+ ],
+ "פיתיון־": [
+ {
+ "word_nikkud": "פִּתָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3903-pitayon",
+ "gender": "masculine"
+ }
+ ],
+ "פיתיונות־": [
+ {
+ "word_nikkud": "פִּתָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3903-pitayon",
+ "gender": "masculine"
+ }
+ ],
+ "פיתול": [
+ {
+ "word_nikkud": "פִּתּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5294-pitul",
+ "gender": "masculine"
+ }
+ ],
+ "פיתולים": [
+ {
+ "word_nikkud": "פִּתּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5294-pitul",
+ "gender": "masculine"
+ }
+ ],
+ "פיתול־": [
+ {
+ "word_nikkud": "פִּתּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5294-pitul",
+ "gender": "masculine"
+ }
+ ],
+ "פיתולי־": [
+ {
+ "word_nikkud": "פִּתּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5294-pitul",
+ "gender": "masculine"
+ }
+ ],
+ "פתיל": [
+ {
+ "word_nikkud": "פְּתִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3837-ptil",
+ "gender": "masculine"
+ }
+ ],
+ "פתילים": [
+ {
+ "word_nikkud": "פְּתִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3837-ptil",
+ "gender": "masculine"
+ }
+ ],
+ "פתיל־": [
+ {
+ "word_nikkud": "פְּתִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3837-ptil",
+ "gender": "masculine"
+ }
+ ],
+ "פתילי־": [
+ {
+ "word_nikkud": "פְּתִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3837-ptil",
+ "gender": "masculine"
+ }
+ ],
+ "הפתעה": [
+ {
+ "word_nikkud": "הַפְתָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2901-haftaa",
+ "gender": "feminine"
+ }
+ ],
+ "הפתעות": [
+ {
+ "word_nikkud": "הַפְתָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2901-haftaa",
+ "gender": "feminine"
+ }
+ ],
+ "הפתעת־": [
+ {
+ "word_nikkud": "הַפְתָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2901-haftaa",
+ "gender": "feminine"
+ }
+ ],
+ "הפתעות־": [
+ {
+ "word_nikkud": "הַפְתָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2901-haftaa",
+ "gender": "feminine"
+ }
+ ],
+ "פתע": [
+ {
+ "word_nikkud": "פֶּתַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6311-peta",
+ "gender": "masculine"
+ }
+ ],
+ "פתעים": [
+ {
+ "word_nikkud": "פֶּתַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6311-peta",
+ "gender": "masculine"
+ }
+ ],
+ "פתע־": [
+ {
+ "word_nikkud": "פֶּתַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6311-peta",
+ "gender": "masculine"
+ }
+ ],
+ "פתעי־": [
+ {
+ "word_nikkud": "פֶּתַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6311-peta",
+ "gender": "masculine"
+ }
+ ],
+ "פתקית": [
+ {
+ "word_nikkud": "פִּתְקִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8843-pitkit",
+ "gender": "feminine"
+ }
+ ],
+ "פתקיות": [
+ {
+ "word_nikkud": "פִּתְקִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8843-pitkit",
+ "gender": "feminine"
+ }
+ ],
+ "פתקית־": [
+ {
+ "word_nikkud": "פִּתְקִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8843-pitkit",
+ "gender": "feminine"
+ }
+ ],
+ "פתקיות־": [
+ {
+ "word_nikkud": "פִּתְקִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8843-pitkit",
+ "gender": "feminine"
+ }
+ ],
+ "פתק": [
+ {
+ "word_nikkud": "פֶּתֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6425-petek",
+ "gender": "masculine"
+ }
+ ],
+ "פתקים": [
+ {
+ "word_nikkud": "פֶּתֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6425-petek",
+ "gender": "masculine"
+ }
+ ],
+ "פתק־": [
+ {
+ "word_nikkud": "פֶּתֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6425-petek",
+ "gender": "masculine"
+ }
+ ],
+ "פתקי־": [
+ {
+ "word_nikkud": "פֶּתֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6425-petek",
+ "gender": "masculine"
+ }
+ ],
+ "פתרון": [
+ {
+ "word_nikkud": "פִּתְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3590-pitron",
+ "gender": "masculine"
+ }
+ ],
+ "פיתרון": [
+ {
+ "word_nikkud": "פִּתְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3590-pitron",
+ "gender": "masculine"
+ }
+ ],
+ "פתרונות": [
+ {
+ "word_nikkud": "פִּתְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3590-pitron",
+ "gender": "masculine"
+ }
+ ],
+ "פתרון־": [
+ {
+ "word_nikkud": "פִּתְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3590-pitron",
+ "gender": "masculine"
+ }
+ ],
+ "פתרונות־": [
+ {
+ "word_nikkud": "פִּתְרוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3590-pitron",
+ "gender": "masculine"
+ }
+ ],
+ "פיתה": [
+ {
+ "word_nikkud": "פִּתָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5851-pita",
+ "gender": "feminine"
+ }
+ ],
+ "פיתות": [
+ {
+ "word_nikkud": "פִּתָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5851-pita",
+ "gender": "feminine"
+ }
+ ],
+ "פיתת־": [
+ {
+ "word_nikkud": "פִּתָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5851-pita",
+ "gender": "feminine"
+ }
+ ],
+ "פיתות־": [
+ {
+ "word_nikkud": "פִּתָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5851-pita",
+ "gender": "feminine"
+ }
+ ],
+ "פת": [
+ {
+ "word_nikkud": "פַּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3036-pat",
+ "gender": "masculine"
+ }
+ ],
+ "פיתים": [
+ {
+ "word_nikkud": "פַּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3036-pat",
+ "gender": "masculine"
+ }
+ ],
+ "פת־": [
+ {
+ "word_nikkud": "פַּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3036-pat",
+ "gender": "masculine"
+ }
+ ],
+ "פיתי־": [
+ {
+ "word_nikkud": "פַּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3036-pat",
+ "gender": "masculine"
+ }
+ ],
+ "צאן": [
+ {
+ "word_nikkud": "צֹאן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6851-tzon",
+ "gender": ""
+ }
+ ],
+ "צאן־": [
+ {
+ "word_nikkud": "צֹאן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6851-tzon",
+ "gender": ""
+ }
+ ],
+ "צאצא": [
+ {
+ "word_nikkud": "צֶאֱצָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5105-tzeetza",
+ "gender": "masculine"
+ }
+ ],
+ "צאצאים": [
+ {
+ "word_nikkud": "צֶאֱצָא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5105-tzeetza",
+ "gender": "masculine"
+ }
+ ],
+ "צאצא־": [
+ {
+ "word_nikkud": "צֶאֱצָא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5105-tzeetza",
+ "gender": "masculine"
+ }
+ ],
+ "צאצאי־": [
+ {
+ "word_nikkud": "צֶאֱצָא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5105-tzeetza",
+ "gender": "masculine"
+ }
+ ],
+ "צבא": [
+ {
+ "word_nikkud": "צָבָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4342-tzava",
+ "gender": "masculine"
+ }
+ ],
+ "צבאות": [
+ {
+ "word_nikkud": "צָבָא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4342-tzava",
+ "gender": "masculine"
+ }
+ ],
+ "צבא־": [
+ {
+ "word_nikkud": "צָבָא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4342-tzava",
+ "gender": "masculine"
+ }
+ ],
+ "צבאות־": [
+ {
+ "word_nikkud": "צָבָא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4342-tzava",
+ "gender": "masculine"
+ }
+ ],
+ "צב": [
+ {
+ "word_nikkud": "צָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5515-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "צבים": [
+ {
+ "word_nikkud": "צָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5515-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "צב־": [
+ {
+ "word_nikkud": "צָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5515-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "צבי־": [
+ {
+ "word_nikkud": "צָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5515-tzav",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "צְבִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9113-tzvi",
+ "gender": "masculine"
+ }
+ ],
+ "צביון": [
+ {
+ "word_nikkud": "צִבְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8053-tzivyon",
+ "gender": "masculine"
+ }
+ ],
+ "צביונים": [
+ {
+ "word_nikkud": "צִבְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8053-tzivyon",
+ "gender": "masculine"
+ }
+ ],
+ "צביון־": [
+ {
+ "word_nikkud": "צִבְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8053-tzivyon",
+ "gender": "masculine"
+ }
+ ],
+ "צביוני־": [
+ {
+ "word_nikkud": "צִבְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8053-tzivyon",
+ "gender": "masculine"
+ }
+ ],
+ "צבי": [
+ {
+ "word_nikkud": "צְבִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9113-tzvi",
+ "gender": "masculine"
+ }
+ ],
+ "צביים": [
+ {
+ "word_nikkud": "צְבִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9113-tzvi",
+ "gender": "masculine"
+ }
+ ],
+ "צביי־": [
+ {
+ "word_nikkud": "צְבִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9113-tzvi",
+ "gender": "masculine"
+ }
+ ],
+ "צבעוניות": [
+ {
+ "word_nikkud": "צִבְעוֹנִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8316-tzivoniyut",
+ "gender": "feminine"
+ }
+ ],
+ "צבעוניויות": [
+ {
+ "word_nikkud": "צִבְעוֹנִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8316-tzivoniyut",
+ "gender": "feminine"
+ }
+ ],
+ "צבעוניות־": [
+ {
+ "word_nikkud": "צִבְעוֹנִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8316-tzivoniyut",
+ "gender": "feminine"
+ }
+ ],
+ "צבעוניויות־": [
+ {
+ "word_nikkud": "צִבְעוֹנִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8316-tzivoniyut",
+ "gender": "feminine"
+ }
+ ],
+ "צבע": [
+ {
+ "word_nikkud": "צַבָּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3358-tzaba",
+ "gender": "masculine"
+ }
+ ],
+ "צבעים": [
+ {
+ "word_nikkud": "צַבָּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3358-tzaba",
+ "gender": "masculine"
+ }
+ ],
+ "צבע־": [
+ {
+ "word_nikkud": "צַבָּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3358-tzaba",
+ "gender": "masculine"
+ }
+ ],
+ "צבעי־": [
+ {
+ "word_nikkud": "צַבָּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3358-tzaba",
+ "gender": "masculine"
+ }
+ ],
+ "אצבע": [
+ {
+ "word_nikkud": "אֶצְבַּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4871-etzba",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "אֶצְבַּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4871-etzba",
+ "gender": "feminine"
+ }
+ ],
+ "אצבעות": [
+ {
+ "word_nikkud": "אֶצְבַּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4871-etzba",
+ "gender": "feminine"
+ }
+ ],
+ "אצבע־": [
+ {
+ "word_nikkud": "אֶצְבַּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4871-etzba",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "אֶצְבַּע",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4871-etzba",
+ "gender": "feminine"
+ }
+ ],
+ "אצבעות־": [
+ {
+ "word_nikkud": "אֶצְבַּע",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4871-etzba",
+ "gender": "feminine"
+ }
+ ],
+ "צבעוני": [
+ {
+ "word_nikkud": "צִבְעוֹנִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8848-tzivoni",
+ "gender": "masculine"
+ }
+ ],
+ "צבעוניים": [
+ {
+ "word_nikkud": "צִבְעוֹנִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8848-tzivoni",
+ "gender": "masculine"
+ }
+ ],
+ "צבעוני־": [
+ {
+ "word_nikkud": "צִבְעוֹנִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8848-tzivoni",
+ "gender": "masculine"
+ }
+ ],
+ "צבעוניי־": [
+ {
+ "word_nikkud": "צִבְעוֹנִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8848-tzivoni",
+ "gender": "masculine"
+ }
+ ],
+ "צבוע": [
+ {
+ "word_nikkud": "צָבוֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8529-tzavoa",
+ "gender": "masculine"
+ }
+ ],
+ "צבועים": [
+ {
+ "word_nikkud": "צָבוֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8529-tzavoa",
+ "gender": "masculine"
+ }
+ ],
+ "צבוע־": [
+ {
+ "word_nikkud": "צָבוֹעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8529-tzavoa",
+ "gender": "masculine"
+ }
+ ],
+ "צבועי־": [
+ {
+ "word_nikkud": "צָבוֹעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8529-tzavoa",
+ "gender": "masculine"
+ }
+ ],
+ "צביעה": [
+ {
+ "word_nikkud": "צְבִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7162-tzvia",
+ "gender": "feminine"
+ }
+ ],
+ "צביעות": [
+ {
+ "word_nikkud": "צְבִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7162-tzvia",
+ "gender": "feminine"
+ }
+ ],
+ "צביעת־": [
+ {
+ "word_nikkud": "צְבִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7162-tzvia",
+ "gender": "feminine"
+ }
+ ],
+ "צביעות־": [
+ {
+ "word_nikkud": "צְבִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7162-tzvia",
+ "gender": "feminine"
+ }
+ ],
+ "הצטברות": [
+ {
+ "word_nikkud": "הִצְטַבְּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8503-hitztabrut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטברויות": [
+ {
+ "word_nikkud": "הִצְטַבְּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8503-hitztabrut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטברות־": [
+ {
+ "word_nikkud": "הִצְטַבְּרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8503-hitztabrut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטברויות־": [
+ {
+ "word_nikkud": "הִצְטַבְּרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8503-hitztabrut",
+ "gender": "feminine"
+ }
+ ],
+ "ציבור": [
+ {
+ "word_nikkud": "צִבּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3734-tzibur",
+ "gender": "masculine"
+ }
+ ],
+ "ציבורים": [
+ {
+ "word_nikkud": "צִבּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3734-tzibur",
+ "gender": "masculine"
+ }
+ ],
+ "ציבור־": [
+ {
+ "word_nikkud": "צִבּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3734-tzibur",
+ "gender": "masculine"
+ }
+ ],
+ "ציבורי־": [
+ {
+ "word_nikkud": "צִבּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3734-tzibur",
+ "gender": "masculine"
+ }
+ ],
+ "מצבר": [
+ {
+ "word_nikkud": "מַצְבֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3513-matzber",
+ "gender": "masculine"
+ }
+ ],
+ "מצברים": [
+ {
+ "word_nikkud": "מַצְבֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3513-matzber",
+ "gender": "masculine"
+ }
+ ],
+ "מצבר־": [
+ {
+ "word_nikkud": "מַצְבֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3513-matzber",
+ "gender": "masculine"
+ }
+ ],
+ "מצברי־": [
+ {
+ "word_nikkud": "מַצְבֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3513-matzber",
+ "gender": "masculine"
+ }
+ ],
+ "צבת": [
+ {
+ "word_nikkud": "צְבָת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3498-tzvat",
+ "gender": "feminine"
+ }
+ ],
+ "צבתות": [
+ {
+ "word_nikkud": "צְבָת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3498-tzvat",
+ "gender": "feminine"
+ }
+ ],
+ "צבתים": [
+ {
+ "word_nikkud": "צְבָת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3498-tzvat",
+ "gender": "feminine"
+ }
+ ],
+ "צבת־": [
+ {
+ "word_nikkud": "צְבָת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3498-tzvat",
+ "gender": "feminine"
+ }
+ ],
+ "צבתות־": [
+ {
+ "word_nikkud": "צְבָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3498-tzvat",
+ "gender": "feminine"
+ }
+ ],
+ "צבתי־": [
+ {
+ "word_nikkud": "צְבָת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3498-tzvat",
+ "gender": "feminine"
+ }
+ ],
+ "צד": [
+ {
+ "word_nikkud": "צַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4903-tzad",
+ "gender": "masculine"
+ }
+ ],
+ "צדדים": [
+ {
+ "word_nikkud": "צַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4903-tzad",
+ "gender": "masculine"
+ }
+ ],
+ "צד־": [
+ {
+ "word_nikkud": "צַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4903-tzad",
+ "gender": "masculine"
+ }
+ ],
+ "צידי־": [
+ {
+ "word_nikkud": "צַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4903-tzad",
+ "gender": "masculine"
+ }
+ ],
+ "הצדעה": [
+ {
+ "word_nikkud": "הַצְדָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2902-hatzdaa",
+ "gender": "feminine"
+ }
+ ],
+ "הצדעות": [
+ {
+ "word_nikkud": "הַצְדָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2902-hatzdaa",
+ "gender": "feminine"
+ }
+ ],
+ "הצדעת־": [
+ {
+ "word_nikkud": "הַצְדָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2902-hatzdaa",
+ "gender": "feminine"
+ }
+ ],
+ "הצדעות־": [
+ {
+ "word_nikkud": "הַצְדָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2902-hatzdaa",
+ "gender": "feminine"
+ }
+ ],
+ "צדף": [
+ {
+ "word_nikkud": "צֶדֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8934-tzedef",
+ "gender": "masculine"
+ }
+ ],
+ "צדפים": [
+ {
+ "word_nikkud": "צֶדֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8934-tzedef",
+ "gender": "masculine"
+ }
+ ],
+ "צדף־": [
+ {
+ "word_nikkud": "צֶדֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8934-tzedef",
+ "gender": "masculine"
+ }
+ ],
+ "צדפי־": [
+ {
+ "word_nikkud": "צֶדֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8934-tzedef",
+ "gender": "masculine"
+ }
+ ],
+ "צדקה": [
+ {
+ "word_nikkud": "צְדָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2858-tzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "צדקות": [
+ {
+ "word_nikkud": "צְדָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2858-tzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "צדקת־": [
+ {
+ "word_nikkud": "צְדָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2858-tzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "צדקות־": [
+ {
+ "word_nikkud": "צְדָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2858-tzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצדקה": [
+ {
+ "word_nikkud": "הַצְדָּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2903-hatzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצדקות": [
+ {
+ "word_nikkud": "הַצְדָּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2903-hatzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצדקת־": [
+ {
+ "word_nikkud": "הַצְדָּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2903-hatzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצדקות־": [
+ {
+ "word_nikkud": "הַצְדָּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2903-hatzdaka",
+ "gender": "feminine"
+ }
+ ],
+ "צדק": [
+ {
+ "word_nikkud": "צֶדֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3173-tzedek",
+ "gender": "masculine"
+ }
+ ],
+ "צדק־": [
+ {
+ "word_nikkud": "צֶדֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3173-tzedek",
+ "gender": "masculine"
+ }
+ ],
+ "צדיק": [
+ {
+ "word_nikkud": "צַדִּיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3319-tzadik",
+ "gender": "masculine"
+ }
+ ],
+ "צדיקים": [
+ {
+ "word_nikkud": "צַדִּיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3319-tzadik",
+ "gender": "masculine"
+ }
+ ],
+ "צדיק־": [
+ {
+ "word_nikkud": "צַדִּיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3319-tzadik",
+ "gender": "masculine"
+ }
+ ],
+ "צדיקי־": [
+ {
+ "word_nikkud": "צַדִּיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3319-tzadik",
+ "gender": "masculine"
+ }
+ ],
+ "צהבת": [
+ {
+ "word_nikkud": "צַהֶבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7627-tzahevet",
+ "gender": "feminine"
+ }
+ ],
+ "צהבות": [
+ {
+ "word_nikkud": "צַהֶבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7627-tzahevet",
+ "gender": "feminine"
+ }
+ ],
+ "צהבת־": [
+ {
+ "word_nikkud": "צַהֶבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7627-tzahevet",
+ "gender": "feminine"
+ }
+ ],
+ "צהבות־": [
+ {
+ "word_nikkud": "צַהֶבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7627-tzahevet",
+ "gender": "feminine"
+ }
+ ],
+ "הצהרה": [
+ {
+ "word_nikkud": "הַצְהָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3978-hatzhara",
+ "gender": "feminine"
+ }
+ ],
+ "הצהרות": [
+ {
+ "word_nikkud": "הַצְהָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3978-hatzhara",
+ "gender": "feminine"
+ }
+ ],
+ "הצהרת־": [
+ {
+ "word_nikkud": "הַצְהָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3978-hatzhara",
+ "gender": "feminine"
+ }
+ ],
+ "הצהרות־": [
+ {
+ "word_nikkud": "הַצְהָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3978-hatzhara",
+ "gender": "feminine"
+ }
+ ],
+ "צוהר": [
+ {
+ "word_nikkud": "צֹהַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6249-tzohar",
+ "gender": "masculine"
+ }
+ ],
+ "צהרים": [
+ {
+ "word_nikkud": "צֹהַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6249-tzohar",
+ "gender": "masculine"
+ }
+ ],
+ "צוהר־": [
+ {
+ "word_nikkud": "צֹהַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6249-tzohar",
+ "gender": "masculine"
+ }
+ ],
+ "צהרי־": [
+ {
+ "word_nikkud": "צֹהַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6249-tzohar",
+ "gender": "masculine"
+ }
+ ],
+ "צוהריים": [
+ {
+ "word_nikkud": "צָהֳרַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4729-tzohorayim",
+ "gender": "masculine"
+ }
+ ],
+ "צוואה": [
+ {
+ "word_nikkud": "צְוָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7849-tzvaa",
+ "gender": "feminine"
+ }
+ ],
+ "צוואות": [
+ {
+ "word_nikkud": "צְוָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7849-tzvaa",
+ "gender": "feminine"
+ }
+ ],
+ "צוואת־": [
+ {
+ "word_nikkud": "צְוָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7849-tzvaa",
+ "gender": "feminine"
+ }
+ ],
+ "צוואות־": [
+ {
+ "word_nikkud": "צְוָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7849-tzvaa",
+ "gender": "feminine"
+ }
+ ],
+ "מצודה": [
+ {
+ "word_nikkud": "מְצוּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7904-metzuda",
+ "gender": "feminine"
+ }
+ ],
+ "מצודות": [
+ {
+ "word_nikkud": "מְצוּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7904-metzuda",
+ "gender": "feminine"
+ }
+ ],
+ "מצודת־": [
+ {
+ "word_nikkud": "מְצוּדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7904-metzuda",
+ "gender": "feminine"
+ }
+ ],
+ "מצודות־": [
+ {
+ "word_nikkud": "מְצוּדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7904-metzuda",
+ "gender": "feminine"
+ }
+ ],
+ "מצוד": [
+ {
+ "word_nikkud": "מָצוֹד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8601-matzod",
+ "gender": "masculine"
+ }
+ ],
+ "מצודים": [
+ {
+ "word_nikkud": "מָצוֹד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8601-matzod",
+ "gender": "masculine"
+ }
+ ],
+ "מצוד־": [
+ {
+ "word_nikkud": "מָצוֹד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8601-matzod",
+ "gender": "masculine"
+ }
+ ],
+ "מצודי־": [
+ {
+ "word_nikkud": "מָצוֹד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8601-matzod",
+ "gender": "masculine"
+ }
+ ],
+ "צוואר": [
+ {
+ "word_nikkud": "צָוָאר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6446-tzavar",
+ "gender": "masculine"
+ }
+ ],
+ "צווארים": [
+ {
+ "word_nikkud": "צָוָאר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6446-tzavar",
+ "gender": "masculine"
+ }
+ ],
+ "צוואר־": [
+ {
+ "word_nikkud": "צָוָאר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6446-tzavar",
+ "gender": "masculine"
+ }
+ ],
+ "צווארי־": [
+ {
+ "word_nikkud": "צָוָאר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6446-tzavar",
+ "gender": "masculine"
+ }
+ ],
+ "צווארון": [
+ {
+ "word_nikkud": "צָוָארוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8009-tzavaron",
+ "gender": "masculine"
+ }
+ ],
+ "צווארונים": [
+ {
+ "word_nikkud": "צָוָארוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8009-tzavaron",
+ "gender": "masculine"
+ }
+ ],
+ "צווארון־": [
+ {
+ "word_nikkud": "צָוָארוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8009-tzavaron",
+ "gender": "masculine"
+ }
+ ],
+ "צווארוני־": [
+ {
+ "word_nikkud": "צָוָארוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8009-tzavaron",
+ "gender": "masculine"
+ }
+ ],
+ "צו": [
+ {
+ "word_nikkud": "צַו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4318-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "צווים": [
+ {
+ "word_nikkud": "צַו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4318-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "צו־": [
+ {
+ "word_nikkud": "צַו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4318-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "צווי־": [
+ {
+ "word_nikkud": "צַו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4318-tzav",
+ "gender": "masculine"
+ }
+ ],
+ "מצווה": [
+ {
+ "word_nikkud": "מִצְוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3764-mitzva",
+ "gender": "feminine"
+ }
+ ],
+ "מצוות": [
+ {
+ "word_nikkud": "מִצְוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3764-mitzva",
+ "gender": "feminine"
+ }
+ ],
+ "מצוות־": [
+ {
+ "word_nikkud": "מִצְוָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3764-mitzva",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מִצְוָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3764-mitzva",
+ "gender": "feminine"
+ }
+ ],
+ "ציווי": [
+ {
+ "word_nikkud": "צִוּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6656-tzivuy",
+ "gender": "masculine"
+ }
+ ],
+ "ציוויים": [
+ {
+ "word_nikkud": "צִוּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6656-tzivuy",
+ "gender": "masculine"
+ }
+ ],
+ "ציווי־": [
+ {
+ "word_nikkud": "צִוּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6656-tzivuy",
+ "gender": "masculine"
+ }
+ ],
+ "ציוויי־": [
+ {
+ "word_nikkud": "צִוּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6656-tzivuy",
+ "gender": "masculine"
+ }
+ ],
+ "צול": [
+ {
+ "word_nikkud": "צוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5240-tzol",
+ "gender": ""
+ }
+ ],
+ "מצולה": [
+ {
+ "word_nikkud": "מְצוּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6749-metzula",
+ "gender": "feminine"
+ }
+ ],
+ "מצולות": [
+ {
+ "word_nikkud": "מְצוּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6749-metzula",
+ "gender": "feminine"
+ }
+ ],
+ "מצולת־": [
+ {
+ "word_nikkud": "מְצוּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6749-metzula",
+ "gender": "feminine"
+ }
+ ],
+ "מצולות־": [
+ {
+ "word_nikkud": "מְצוּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6749-metzula",
+ "gender": "feminine"
+ }
+ ],
+ "צום": [
+ {
+ "word_nikkud": "צוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4881-tzom",
+ "gender": ""
+ }
+ ],
+ "צומות": [
+ {
+ "word_nikkud": "צוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4881-tzom",
+ "gender": ""
+ }
+ ],
+ "צום־": [
+ {
+ "word_nikkud": "צוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4881-tzom",
+ "gender": ""
+ }
+ ],
+ "צומות־": [
+ {
+ "word_nikkud": "צוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4881-tzom",
+ "gender": ""
+ }
+ ],
+ "הצפה": [
+ {
+ "word_nikkud": "הֲצָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4981-hatzafa",
+ "gender": "feminine"
+ }
+ ],
+ "הצפות": [
+ {
+ "word_nikkud": "הֲצָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4981-hatzafa",
+ "gender": "feminine"
+ }
+ ],
+ "הצפת־": [
+ {
+ "word_nikkud": "הֲצָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4981-hatzafa",
+ "gender": "feminine"
+ }
+ ],
+ "הצפות־": [
+ {
+ "word_nikkud": "הֲצָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4981-hatzafa",
+ "gender": "feminine"
+ }
+ ],
+ "מצוף": [
+ {
+ "word_nikkud": "מָצוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8703-matzof",
+ "gender": "masculine"
+ }
+ ],
+ "מצופים": [
+ {
+ "word_nikkud": "מָצוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8703-matzof",
+ "gender": "masculine"
+ }
+ ],
+ "מצוף־": [
+ {
+ "word_nikkud": "מָצוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8703-matzof",
+ "gender": "masculine"
+ }
+ ],
+ "מצופי־": [
+ {
+ "word_nikkud": "מָצוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8703-matzof",
+ "gender": "masculine"
+ }
+ ],
+ "הצצה": [
+ {
+ "word_nikkud": "הֲצָצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4938-hatzatza",
+ "gender": "feminine"
+ }
+ ],
+ "הצצות": [
+ {
+ "word_nikkud": "הֲצָצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4938-hatzatza",
+ "gender": "feminine"
+ }
+ ],
+ "הצצת־": [
+ {
+ "word_nikkud": "הֲצָצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4938-hatzatza",
+ "gender": "feminine"
+ }
+ ],
+ "הצצות־": [
+ {
+ "word_nikkud": "הֲצָצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4938-hatzatza",
+ "gender": "feminine"
+ }
+ ],
+ "מצוקה": [
+ {
+ "word_nikkud": "מְצוּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3960-metzuka",
+ "gender": "feminine"
+ }
+ ],
+ "מצוקות": [
+ {
+ "word_nikkud": "מְצוּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3960-metzuka",
+ "gender": "feminine"
+ }
+ ],
+ "מצוקת־": [
+ {
+ "word_nikkud": "מְצוּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3960-metzuka",
+ "gender": "feminine"
+ }
+ ],
+ "מצוקות־": [
+ {
+ "word_nikkud": "מְצוּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3960-metzuka",
+ "gender": "feminine"
+ }
+ ],
+ "הצקה": [
+ {
+ "word_nikkud": "הֲצָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3982-hatzaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצקות": [
+ {
+ "word_nikkud": "הֲצָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3982-hatzaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצקת־": [
+ {
+ "word_nikkud": "הֲצָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3982-hatzaka",
+ "gender": "feminine"
+ }
+ ],
+ "הצקות־": [
+ {
+ "word_nikkud": "הֲצָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3982-hatzaka",
+ "gender": "feminine"
+ }
+ ],
+ "צוק": [
+ {
+ "word_nikkud": "צוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7481-tzuk",
+ "gender": ""
+ }
+ ],
+ "צוקים": [
+ {
+ "word_nikkud": "צוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7481-tzuk",
+ "gender": ""
+ }
+ ],
+ "צוק־": [
+ {
+ "word_nikkud": "צוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7481-tzuk",
+ "gender": ""
+ }
+ ],
+ "צוקי־": [
+ {
+ "word_nikkud": "צוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7481-tzuk",
+ "gender": ""
+ }
+ ],
+ "מצור": [
+ {
+ "word_nikkud": "מָצוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2591-matzor",
+ "gender": "masculine"
+ }
+ ],
+ "מצור־": [
+ {
+ "word_nikkud": "מָצוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2591-matzor",
+ "gender": "masculine"
+ }
+ ],
+ "צורה": [
+ {
+ "word_nikkud": "צוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4300-tzura",
+ "gender": "feminine"
+ }
+ ],
+ "צורות": [
+ {
+ "word_nikkud": "צוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4300-tzura",
+ "gender": "feminine"
+ }
+ ],
+ "צורת־": [
+ {
+ "word_nikkud": "צוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4300-tzura",
+ "gender": "feminine"
+ }
+ ],
+ "צורות־": [
+ {
+ "word_nikkud": "צוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4300-tzura",
+ "gender": "feminine"
+ }
+ ],
+ "צור": [
+ {
+ "word_nikkud": "צוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7601-tzur",
+ "gender": "masculine"
+ }
+ ],
+ "צורים": [
+ {
+ "word_nikkud": "צוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7601-tzur",
+ "gender": "masculine"
+ }
+ ],
+ "צור־": [
+ {
+ "word_nikkud": "צוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7601-tzur",
+ "gender": "masculine"
+ }
+ ],
+ "צורי־": [
+ {
+ "word_nikkud": "צוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7601-tzur",
+ "gender": "masculine"
+ }
+ ],
+ "צוות": [
+ {
+ "word_nikkud": "צֶוֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3499-tzevet",
+ "gender": "masculine"
+ }
+ ],
+ "צוותים": [
+ {
+ "word_nikkud": "צֶוֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3499-tzevet",
+ "gender": "masculine"
+ }
+ ],
+ "צוותות": [
+ {
+ "word_nikkud": "צֶוֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3499-tzevet",
+ "gender": "masculine"
+ }
+ ],
+ "צוות־": [
+ {
+ "word_nikkud": "צֶוֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3499-tzevet",
+ "gender": "masculine"
+ }
+ ],
+ "צוותי־": [
+ {
+ "word_nikkud": "צֶוֶת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3499-tzevet",
+ "gender": "masculine"
+ }
+ ],
+ "צוותות־": [
+ {
+ "word_nikkud": "צֶוֶת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3499-tzevet",
+ "gender": "masculine"
+ }
+ ],
+ "צחוק": [
+ {
+ "word_nikkud": "צְחוֹק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3652-tzchok",
+ "gender": "masculine"
+ }
+ ],
+ "צחוק־": [
+ {
+ "word_nikkud": "צְחוֹק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3652-tzchok",
+ "gender": "masculine"
+ }
+ ],
+ "צחור": [
+ {
+ "word_nikkud": "צְחוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7893-tzchor",
+ "gender": "masculine"
+ }
+ ],
+ "צחור־": [
+ {
+ "word_nikkud": "צְחוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7893-tzchor",
+ "gender": "masculine"
+ }
+ ],
+ "צי": [
+ {
+ "word_nikkud": "צִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4330-tzi",
+ "gender": "masculine"
+ }
+ ],
+ "ציים": [
+ {
+ "word_nikkud": "צִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4330-tzi",
+ "gender": "masculine"
+ }
+ ],
+ "צי־": [
+ {
+ "word_nikkud": "צִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4330-tzi",
+ "gender": "masculine"
+ }
+ ],
+ "ציי־": [
+ {
+ "word_nikkud": "צִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4330-tzi",
+ "gender": "masculine"
+ }
+ ],
+ "ציד": [
+ {
+ "word_nikkud": "צַיִד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7623-tzayid",
+ "gender": "masculine"
+ }
+ ],
+ "ציד־": [
+ {
+ "word_nikkud": "צַיִד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7623-tzayid",
+ "gender": "masculine"
+ }
+ ],
+ "ציוד": [
+ {
+ "word_nikkud": "צִיּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2993-tziyud",
+ "gender": "masculine"
+ }
+ ],
+ "ציוד־": [
+ {
+ "word_nikkud": "צִיּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2993-tziyud",
+ "gender": "masculine"
+ }
+ ],
+ "ציון": [
+ {
+ "word_nikkud": "צִיּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7806-tziyun",
+ "gender": "masculine"
+ }
+ ],
+ "ציונים": [
+ {
+ "word_nikkud": "צִיּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7806-tziyun",
+ "gender": "masculine"
+ }
+ ],
+ "ציון־": [
+ {
+ "word_nikkud": "צִיּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7806-tziyun",
+ "gender": "masculine"
+ }
+ ],
+ "ציוני־": [
+ {
+ "word_nikkud": "צִיּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7806-tziyun",
+ "gender": "masculine"
+ }
+ ],
+ "צינה": [
+ {
+ "word_nikkud": "צִנָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8616-tzina",
+ "gender": "feminine"
+ }
+ ],
+ "צינות": [
+ {
+ "word_nikkud": "צִנָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8616-tzina",
+ "gender": "feminine"
+ }
+ ],
+ "צינת־": [
+ {
+ "word_nikkud": "צִנָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8616-tzina",
+ "gender": "feminine"
+ }
+ ],
+ "צינות־": [
+ {
+ "word_nikkud": "צִנָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8616-tzina",
+ "gender": "feminine"
+ }
+ ],
+ "צינוק": [
+ {
+ "word_nikkud": "צִינוֹק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7390-tzinok",
+ "gender": "masculine"
+ }
+ ],
+ "צינוק־": [
+ {
+ "word_nikkud": "צִינוֹק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7390-tzinok",
+ "gender": "masculine"
+ }
+ ],
+ "צינור": [
+ {
+ "word_nikkud": "צִנּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3807-tzinor",
+ "gender": "masculine"
+ }
+ ],
+ "צינורות": [
+ {
+ "word_nikkud": "צִנּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3807-tzinor",
+ "gender": "masculine"
+ }
+ ],
+ "צינור־": [
+ {
+ "word_nikkud": "צִנּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3807-tzinor",
+ "gender": "masculine"
+ }
+ ],
+ "צינורות־": [
+ {
+ "word_nikkud": "צִנּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3807-tzinor",
+ "gender": "masculine"
+ }
+ ],
+ "ציניות": [
+ {
+ "word_nikkud": "צִינִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6236-tziniyut",
+ "gender": "feminine"
+ }
+ ],
+ "ציניות־": [
+ {
+ "word_nikkud": "צִינִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6236-tziniyut",
+ "gender": "feminine"
+ }
+ ],
+ "ציפורן": [
+ {
+ "word_nikkud": "צִפֹּרֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4386-tziporen",
+ "gender": "feminine"
+ }
+ ],
+ "ציפורניים": [
+ {
+ "word_nikkud": "צִפֹּרֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4386-tziporen",
+ "gender": "feminine"
+ }
+ ],
+ "ציפורן־": [
+ {
+ "word_nikkud": "צִפֹּרֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4386-tziporen",
+ "gender": "feminine"
+ }
+ ],
+ "ציפורני־": [
+ {
+ "word_nikkud": "צִפֹּרֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4386-tziporen",
+ "gender": "feminine"
+ }
+ ],
+ "ציוץ": [
+ {
+ "word_nikkud": "צִיּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4602-tziyutz",
+ "gender": "masculine"
+ }
+ ],
+ "ציוצים": [
+ {
+ "word_nikkud": "צִיּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4602-tziyutz",
+ "gender": "masculine"
+ }
+ ],
+ "ציוץ־": [
+ {
+ "word_nikkud": "צִיּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4602-tziyutz",
+ "gender": "masculine"
+ }
+ ],
+ "ציוצי־": [
+ {
+ "word_nikkud": "צִיּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4602-tziyutz",
+ "gender": "masculine"
+ }
+ ],
+ "צייר": [
+ {
+ "word_nikkud": "צַיָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3359-tzayar",
+ "gender": "masculine"
+ }
+ ],
+ "ציירים": [
+ {
+ "word_nikkud": "צַיָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3359-tzayar",
+ "gender": "masculine"
+ }
+ ],
+ "צייר־": [
+ {
+ "word_nikkud": "צַיָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3359-tzayar",
+ "gender": "masculine"
+ }
+ ],
+ "ציירי־": [
+ {
+ "word_nikkud": "צַיָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3359-tzayar",
+ "gender": "masculine"
+ }
+ ],
+ "ציור": [
+ {
+ "word_nikkud": "צִיּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4259-tziyur",
+ "gender": "masculine"
+ }
+ ],
+ "ציורים": [
+ {
+ "word_nikkud": "צִיּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4259-tziyur",
+ "gender": "masculine"
+ }
+ ],
+ "ציור־": [
+ {
+ "word_nikkud": "צִיּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4259-tziyur",
+ "gender": "masculine"
+ }
+ ],
+ "ציורי־": [
+ {
+ "word_nikkud": "צִיּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4259-tziyur",
+ "gender": "masculine"
+ }
+ ],
+ "ציות": [
+ {
+ "word_nikkud": "צִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8296-tziyut",
+ "gender": "masculine"
+ }
+ ],
+ "ציותים": [
+ {
+ "word_nikkud": "צִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8296-tziyut",
+ "gender": "masculine"
+ }
+ ],
+ "ציות־": [
+ {
+ "word_nikkud": "צִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8296-tziyut",
+ "gender": "masculine"
+ }
+ ],
+ "ציותי־": [
+ {
+ "word_nikkud": "צִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8296-tziyut",
+ "gender": "masculine"
+ }
+ ],
+ "ציתות": [
+ {
+ "word_nikkud": "צִיתוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8584-tzitut",
+ "gender": "masculine"
+ }
+ ],
+ "ציתותים": [
+ {
+ "word_nikkud": "צִיתוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8584-tzitut",
+ "gender": "masculine"
+ }
+ ],
+ "ציתות־": [
+ {
+ "word_nikkud": "צִיתוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8584-tzitut",
+ "gender": "masculine"
+ }
+ ],
+ "ציתותי־": [
+ {
+ "word_nikkud": "צִיתוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8584-tzitut",
+ "gender": "masculine"
+ }
+ ],
+ "צלבן": [
+ {
+ "word_nikkud": "צַלְבָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3442-tzalvan",
+ "gender": "masculine"
+ }
+ ],
+ "צלבנים": [
+ {
+ "word_nikkud": "צַלְבָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3442-tzalvan",
+ "gender": "masculine"
+ }
+ ],
+ "צלבן־": [
+ {
+ "word_nikkud": "צַלְבָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3442-tzalvan",
+ "gender": "masculine"
+ }
+ ],
+ "צלבני־": [
+ {
+ "word_nikkud": "צַלְבָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3442-tzalvan",
+ "gender": "masculine"
+ }
+ ],
+ "צלב": [
+ {
+ "word_nikkud": "צְלָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3500-tzlav",
+ "gender": "masculine"
+ }
+ ],
+ "צלבים": [
+ {
+ "word_nikkud": "צְלָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3500-tzlav",
+ "gender": "masculine"
+ }
+ ],
+ "צלב־": [
+ {
+ "word_nikkud": "צְלָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3500-tzlav",
+ "gender": "masculine"
+ }
+ ],
+ "צלבי־": [
+ {
+ "word_nikkud": "צְלָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3500-tzlav",
+ "gender": "masculine"
+ }
+ ],
+ "הצטלבות": [
+ {
+ "word_nikkud": "הִצְטַלְּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6668-hitztalvut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטלבויות": [
+ {
+ "word_nikkud": "הִצְטַלְּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6668-hitztalvut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטלבות־": [
+ {
+ "word_nikkud": "הִצְטַלְּבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6668-hitztalvut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטלבויות־": [
+ {
+ "word_nikkud": "הִצְטַלְּבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6668-hitztalvut",
+ "gender": "feminine"
+ }
+ ],
+ "הצלחה": [
+ {
+ "word_nikkud": "הַצְלָחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5536-hatzlacha",
+ "gender": "feminine"
+ }
+ ],
+ "הצלחות": [
+ {
+ "word_nikkud": "הַצְלָחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5536-hatzlacha",
+ "gender": "feminine"
+ }
+ ],
+ "הצלחת־": [
+ {
+ "word_nikkud": "הַצְלָחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5536-hatzlacha",
+ "gender": "feminine"
+ }
+ ],
+ "הצלחות־": [
+ {
+ "word_nikkud": "הַצְלָחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5536-hatzlacha",
+ "gender": "feminine"
+ }
+ ],
+ "צלוחית": [
+ {
+ "word_nikkud": "צְלוֹחִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8192-tzlochit",
+ "gender": ""
+ }
+ ],
+ "צלוחיות": [
+ {
+ "word_nikkud": "צְלוֹחִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8192-tzlochit",
+ "gender": ""
+ }
+ ],
+ "צלוחית־": [
+ {
+ "word_nikkud": "צְלוֹחִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8192-tzlochit",
+ "gender": ""
+ }
+ ],
+ "צלוחיות־": [
+ {
+ "word_nikkud": "צְלוֹחִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8192-tzlochit",
+ "gender": ""
+ }
+ ],
+ "צלחת": [
+ {
+ "word_nikkud": "צַלַּחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5957-tzalachat",
+ "gender": "feminine"
+ }
+ ],
+ "צלחות": [
+ {
+ "word_nikkud": "צַלַּחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5957-tzalachat",
+ "gender": "feminine"
+ }
+ ],
+ "צלחת־": [
+ {
+ "word_nikkud": "צַלַּחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5957-tzalachat",
+ "gender": "feminine"
+ }
+ ],
+ "צלחות־": [
+ {
+ "word_nikkud": "צַלַּחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5957-tzalachat",
+ "gender": "feminine"
+ }
+ ],
+ "צלייה": [
+ {
+ "word_nikkud": "צְלִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9009-tzliya",
+ "gender": "feminine"
+ }
+ ],
+ "צליית־": [
+ {
+ "word_nikkud": "צְלִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9009-tzliya",
+ "gender": "feminine"
+ }
+ ],
+ "צליין": [
+ {
+ "word_nikkud": "צַלְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8842-tzalyan",
+ "gender": "masculine"
+ }
+ ],
+ "צליינים": [
+ {
+ "word_nikkud": "צַלְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8842-tzalyan",
+ "gender": "masculine"
+ }
+ ],
+ "צליין־": [
+ {
+ "word_nikkud": "צַלְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8842-tzalyan",
+ "gender": "masculine"
+ }
+ ],
+ "צלייני־": [
+ {
+ "word_nikkud": "צַלְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8842-tzalyan",
+ "gender": "masculine"
+ }
+ ],
+ "צילון": [
+ {
+ "word_nikkud": "צִלּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6980-tzilon",
+ "gender": "masculine"
+ }
+ ],
+ "צילונים": [
+ {
+ "word_nikkud": "צִלּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6980-tzilon",
+ "gender": "masculine"
+ }
+ ],
+ "צילון־": [
+ {
+ "word_nikkud": "צִלּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6980-tzilon",
+ "gender": "masculine"
+ }
+ ],
+ "צילוני־": [
+ {
+ "word_nikkud": "צִלּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6980-tzilon",
+ "gender": "masculine"
+ }
+ ],
+ "צליל": [
+ {
+ "word_nikkud": "צְלִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3536-tzlil",
+ "gender": "masculine"
+ }
+ ],
+ "צלילים": [
+ {
+ "word_nikkud": "צְלִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3536-tzlil",
+ "gender": "masculine"
+ }
+ ],
+ "צליל־": [
+ {
+ "word_nikkud": "צְלִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3536-tzlil",
+ "gender": "masculine"
+ }
+ ],
+ "צלילי־": [
+ {
+ "word_nikkud": "צְלִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3536-tzlil",
+ "gender": "masculine"
+ }
+ ],
+ "צל": [
+ {
+ "word_nikkud": "צֵל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4242-tzel",
+ "gender": "masculine"
+ }
+ ],
+ "צללים": [
+ {
+ "word_nikkud": "צֵל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4242-tzel",
+ "gender": "masculine"
+ }
+ ],
+ "צל־": [
+ {
+ "word_nikkud": "צֵל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4242-tzel",
+ "gender": "masculine"
+ }
+ ],
+ "צללי־": [
+ {
+ "word_nikkud": "צֵל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4242-tzel",
+ "gender": "masculine"
+ }
+ ],
+ "צלילה": [
+ {
+ "word_nikkud": "צְלִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8739-tzlila",
+ "gender": "feminine"
+ }
+ ],
+ "צלילות": [
+ {
+ "word_nikkud": "צְלִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8739-tzlila",
+ "gender": "feminine"
+ }
+ ],
+ "צלילת־": [
+ {
+ "word_nikkud": "צְלִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8739-tzlila",
+ "gender": "feminine"
+ }
+ ],
+ "צלילות־": [
+ {
+ "word_nikkud": "צְלִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8739-tzlila",
+ "gender": "feminine"
+ }
+ ],
+ "צללית": [
+ {
+ "word_nikkud": "צְלָלִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9235-tzlalit",
+ "gender": "feminine"
+ }
+ ],
+ "צלליות": [
+ {
+ "word_nikkud": "צְלָלִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9235-tzlalit",
+ "gender": "feminine"
+ }
+ ],
+ "צללית־": [
+ {
+ "word_nikkud": "צְלָלִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9235-tzlalit",
+ "gender": "feminine"
+ }
+ ],
+ "צלליות־": [
+ {
+ "word_nikkud": "צְלָלִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9235-tzlalit",
+ "gender": "feminine"
+ }
+ ],
+ "הצללה": [
+ {
+ "word_nikkud": "הַצְלָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6664-hatzlala",
+ "gender": "feminine"
+ }
+ ],
+ "הצללות": [
+ {
+ "word_nikkud": "הַצְלָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6664-hatzlala",
+ "gender": "feminine"
+ }
+ ],
+ "הצללת־": [
+ {
+ "word_nikkud": "הַצְלָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6664-hatzlala",
+ "gender": "feminine"
+ }
+ ],
+ "הצללות־": [
+ {
+ "word_nikkud": "הַצְלָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6664-hatzlala",
+ "gender": "feminine"
+ }
+ ],
+ "צילום": [
+ {
+ "word_nikkud": "צִלּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2994-tzilum",
+ "gender": "masculine"
+ }
+ ],
+ "צילומים": [
+ {
+ "word_nikkud": "צִלּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2994-tzilum",
+ "gender": "masculine"
+ }
+ ],
+ "צילום־": [
+ {
+ "word_nikkud": "צִלּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2994-tzilum",
+ "gender": "masculine"
+ }
+ ],
+ "צילומי־": [
+ {
+ "word_nikkud": "צִלּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2994-tzilum",
+ "gender": "masculine"
+ }
+ ],
+ "צלם": [
+ {
+ "word_nikkud": "צַלָּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6089-tzalam",
+ "gender": "masculine"
+ }
+ ],
+ "צלמים": [
+ {
+ "word_nikkud": "צַלָּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6089-tzalam",
+ "gender": "masculine"
+ }
+ ],
+ "צלם־": [
+ {
+ "word_nikkud": "צַלָּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6089-tzalam",
+ "gender": "masculine"
+ }
+ ],
+ "צלמי־": [
+ {
+ "word_nikkud": "צַלָּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6089-tzalam",
+ "gender": "masculine"
+ }
+ ],
+ "מצלמה": [
+ {
+ "word_nikkud": "מַצְלֵמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3560-matzlema",
+ "gender": "feminine"
+ }
+ ],
+ "מצלמות": [
+ {
+ "word_nikkud": "מַצְלֵמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3560-matzlema",
+ "gender": "feminine"
+ }
+ ],
+ "מצלמת־": [
+ {
+ "word_nikkud": "מַצְלֵמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3560-matzlema",
+ "gender": "feminine"
+ }
+ ],
+ "מצלמות־": [
+ {
+ "word_nikkud": "מַצְלֵמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3560-matzlema",
+ "gender": "feminine"
+ }
+ ],
+ "תצלום": [
+ {
+ "word_nikkud": "תַּצְלוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3625-tatzlum",
+ "gender": "masculine"
+ }
+ ],
+ "תצלומים": [
+ {
+ "word_nikkud": "תַּצְלוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3625-tatzlum",
+ "gender": "masculine"
+ }
+ ],
+ "תצלום־": [
+ {
+ "word_nikkud": "תַּצְלוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3625-tatzlum",
+ "gender": "masculine"
+ }
+ ],
+ "תצלומי־": [
+ {
+ "word_nikkud": "תַּצְלוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3625-tatzlum",
+ "gender": "masculine"
+ }
+ ],
+ "צלע": [
+ {
+ "word_nikkud": "צֶלַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3245-tzela",
+ "gender": "feminine"
+ }
+ ],
+ "צלעות": [
+ {
+ "word_nikkud": "צֶלַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3245-tzela",
+ "gender": "feminine"
+ }
+ ],
+ "צלע־": [
+ {
+ "word_nikkud": "צֶלַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3245-tzela",
+ "gender": "feminine"
+ }
+ ],
+ "צלעות־": [
+ {
+ "word_nikkud": "צֶלַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3245-tzela",
+ "gender": "feminine"
+ }
+ ],
+ "מצולע": [
+ {
+ "word_nikkud": "מְצֻלָּע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6747-metzula",
+ "gender": "masculine"
+ }
+ ],
+ "מצולעים": [
+ {
+ "word_nikkud": "מְצֻלָּע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6747-metzula",
+ "gender": "masculine"
+ }
+ ],
+ "מצולע־": [
+ {
+ "word_nikkud": "מְצֻלָּע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6747-metzula",
+ "gender": "masculine"
+ }
+ ],
+ "מצולעי־": [
+ {
+ "word_nikkud": "מְצֻלָּע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6747-metzula",
+ "gender": "masculine"
+ }
+ ],
+ "צלף": [
+ {
+ "word_nikkud": "צַלָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3360-tzalaf",
+ "gender": "masculine"
+ }
+ ],
+ "צלפים": [
+ {
+ "word_nikkud": "צַלָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3360-tzalaf",
+ "gender": "masculine"
+ }
+ ],
+ "צלף־": [
+ {
+ "word_nikkud": "צַלָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3360-tzalaf",
+ "gender": "masculine"
+ }
+ ],
+ "צלפי־": [
+ {
+ "word_nikkud": "צַלָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3360-tzalaf",
+ "gender": "masculine"
+ }
+ ],
+ "צלצול": [
+ {
+ "word_nikkud": "צִלְצוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6746-tziltzul",
+ "gender": "masculine"
+ }
+ ],
+ "צלצולים": [
+ {
+ "word_nikkud": "צִלְצוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6746-tziltzul",
+ "gender": "masculine"
+ }
+ ],
+ "צלצול־": [
+ {
+ "word_nikkud": "צִלְצוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6746-tziltzul",
+ "gender": "masculine"
+ }
+ ],
+ "צלצולי־": [
+ {
+ "word_nikkud": "צִלְצוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6746-tziltzul",
+ "gender": "masculine"
+ }
+ ],
+ "צלקת": [
+ {
+ "word_nikkud": "צַלֶּקֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3297-tzaleket",
+ "gender": "feminine"
+ }
+ ],
+ "צלקות": [
+ {
+ "word_nikkud": "צַלֶּקֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3297-tzaleket",
+ "gender": "feminine"
+ }
+ ],
+ "צלקת־": [
+ {
+ "word_nikkud": "צַלֶּקֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3297-tzaleket",
+ "gender": "feminine"
+ }
+ ],
+ "צלקות־": [
+ {
+ "word_nikkud": "צַלֶּקֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3297-tzaleket",
+ "gender": "feminine"
+ }
+ ],
+ "צימאון": [
+ {
+ "word_nikkud": "צִמָּאוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5872-tzimaon",
+ "gender": "masculine"
+ }
+ ],
+ "צימאונות": [
+ {
+ "word_nikkud": "צִמָּאוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5872-tzimaon",
+ "gender": "masculine"
+ }
+ ],
+ "צימאון־": [
+ {
+ "word_nikkud": "צִמָּאוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5872-tzimaon",
+ "gender": "masculine"
+ }
+ ],
+ "צימאונות־": [
+ {
+ "word_nikkud": "צִמָּאוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5872-tzimaon",
+ "gender": "masculine"
+ }
+ ],
+ "צמיגות": [
+ {
+ "word_nikkud": "צְמִיגוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6381-tzmigut",
+ "gender": "feminine"
+ }
+ ],
+ "צמיגויות": [
+ {
+ "word_nikkud": "צְמִיגוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6381-tzmigut",
+ "gender": "feminine"
+ }
+ ],
+ "צמיגות־": [
+ {
+ "word_nikkud": "צְמִיגוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6381-tzmigut",
+ "gender": "feminine"
+ }
+ ],
+ "צמיגויות־": [
+ {
+ "word_nikkud": "צְמִיגוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6381-tzmigut",
+ "gender": "feminine"
+ }
+ ],
+ "צמיג": [
+ {
+ "word_nikkud": "צְמִיג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6382-tzmig",
+ "gender": "masculine"
+ }
+ ],
+ "צמיגים": [
+ {
+ "word_nikkud": "צְמִיג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6382-tzmig",
+ "gender": "masculine"
+ }
+ ],
+ "צמיג־": [
+ {
+ "word_nikkud": "צְמִיג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6382-tzmig",
+ "gender": "masculine"
+ }
+ ],
+ "צמיגי־": [
+ {
+ "word_nikkud": "צְמִיג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6382-tzmig",
+ "gender": "masculine"
+ }
+ ],
+ "צמיד": [
+ {
+ "word_nikkud": "צָמִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6222-tzamid",
+ "gender": "masculine"
+ }
+ ],
+ "צמידים": [
+ {
+ "word_nikkud": "צָמִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6222-tzamid",
+ "gender": "masculine"
+ }
+ ],
+ "צמיד־": [
+ {
+ "word_nikkud": "צָמִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6222-tzamid",
+ "gender": "masculine"
+ }
+ ],
+ "צמידי־": [
+ {
+ "word_nikkud": "צָמִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6222-tzamid",
+ "gender": "masculine"
+ }
+ ],
+ "צמד": [
+ {
+ "word_nikkud": "צֶמֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6337-tzemed",
+ "gender": "masculine"
+ }
+ ],
+ "צמדים": [
+ {
+ "word_nikkud": "צֶמֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6337-tzemed",
+ "gender": "masculine"
+ }
+ ],
+ "צמד־": [
+ {
+ "word_nikkud": "צֶמֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6337-tzemed",
+ "gender": "masculine"
+ }
+ ],
+ "צמדי־": [
+ {
+ "word_nikkud": "צֶמֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6337-tzemed",
+ "gender": "masculine"
+ }
+ ],
+ "צמה": [
+ {
+ "word_nikkud": "צַמָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9080-tzama",
+ "gender": "feminine"
+ }
+ ],
+ "צמות": [
+ {
+ "word_nikkud": "צַמָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9080-tzama",
+ "gender": "feminine"
+ }
+ ],
+ "צמת־": [
+ {
+ "word_nikkud": "צַמָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9080-tzama",
+ "gender": "feminine"
+ }
+ ],
+ "צמות־": [
+ {
+ "word_nikkud": "צַמָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9080-tzama",
+ "gender": "feminine"
+ }
+ ],
+ "צמחונות": [
+ {
+ "word_nikkud": "צִמְחוֹנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5207-tzimchonut",
+ "gender": "masculine"
+ }
+ ],
+ "צמחונות־": [
+ {
+ "word_nikkud": "צִמְחוֹנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5207-tzimchonut",
+ "gender": "masculine"
+ }
+ ],
+ "צמח": [
+ {
+ "word_nikkud": "צֶמַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5205-tzemach",
+ "gender": "masculine"
+ }
+ ],
+ "צמחים": [
+ {
+ "word_nikkud": "צֶמַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5205-tzemach",
+ "gender": "masculine"
+ }
+ ],
+ "צמח־": [
+ {
+ "word_nikkud": "צֶמַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5205-tzemach",
+ "gender": "masculine"
+ }
+ ],
+ "צמחי־": [
+ {
+ "word_nikkud": "צֶמַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5205-tzemach",
+ "gender": "masculine"
+ }
+ ],
+ "צומח": [
+ {
+ "word_nikkud": "צוֹמֵחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9136-tzomeach",
+ "gender": "masculine"
+ }
+ ],
+ "צומח־": [
+ {
+ "word_nikkud": "צוֹמֵחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9136-tzomeach",
+ "gender": "masculine"
+ }
+ ],
+ "צמצום": [
+ {
+ "word_nikkud": "צִמְצוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7413-tzimtzum",
+ "gender": "masculine"
+ }
+ ],
+ "צמצומים": [
+ {
+ "word_nikkud": "צִמְצוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7413-tzimtzum",
+ "gender": "masculine"
+ }
+ ],
+ "צמצום־": [
+ {
+ "word_nikkud": "צִמְצוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7413-tzimtzum",
+ "gender": "masculine"
+ }
+ ],
+ "צמצומי־": [
+ {
+ "word_nikkud": "צִמְצוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7413-tzimtzum",
+ "gender": "masculine"
+ }
+ ],
+ "צמצם": [
+ {
+ "word_nikkud": "צַמְצָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3788-tzamtzam",
+ "gender": "masculine"
+ }
+ ],
+ "צמצמים": [
+ {
+ "word_nikkud": "צַמְצָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3788-tzamtzam",
+ "gender": "masculine"
+ }
+ ],
+ "צמצם־": [
+ {
+ "word_nikkud": "צַמְצָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3788-tzamtzam",
+ "gender": "masculine"
+ }
+ ],
+ "צמצמי־": [
+ {
+ "word_nikkud": "צַמְצָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3788-tzamtzam",
+ "gender": "masculine"
+ }
+ ],
+ "צימוק": [
+ {
+ "word_nikkud": "צִמּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8804-tzimuk",
+ "gender": "masculine"
+ }
+ ],
+ "צימוקים": [
+ {
+ "word_nikkud": "צִמּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8804-tzimuk",
+ "gender": "masculine"
+ }
+ ],
+ "צימוק־": [
+ {
+ "word_nikkud": "צִמּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8804-tzimuk",
+ "gender": "masculine"
+ }
+ ],
+ "צימוקי־": [
+ {
+ "word_nikkud": "צִמּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8804-tzimuk",
+ "gender": "masculine"
+ }
+ ],
+ "צמר": [
+ {
+ "word_nikkud": "צֶמֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4945-tzemer",
+ "gender": "masculine"
+ }
+ ],
+ "צמר־": [
+ {
+ "word_nikkud": "צֶמֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4945-tzemer",
+ "gender": "masculine"
+ }
+ ],
+ "צמרמורת": [
+ {
+ "word_nikkud": "צְמַרְמֹרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6954-tzmarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרמורות": [
+ {
+ "word_nikkud": "צְמַרְמֹרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6954-tzmarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרמורת־": [
+ {
+ "word_nikkud": "צְמַרְמֹרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6954-tzmarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרמורות־": [
+ {
+ "word_nikkud": "צְמַרְמֹרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6954-tzmarmoret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרת": [
+ {
+ "word_nikkud": "צַמֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5827-tzameret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרות": [
+ {
+ "word_nikkud": "צַמֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5827-tzameret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרת־": [
+ {
+ "word_nikkud": "צַמֶּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5827-tzameret",
+ "gender": "feminine"
+ }
+ ],
+ "צמרות־": [
+ {
+ "word_nikkud": "צַמֶּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5827-tzameret",
+ "gender": "feminine"
+ }
+ ],
+ "צומת": [
+ {
+ "word_nikkud": "צֹמֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4102-tzomet",
+ "gender": "masculine"
+ }
+ ],
+ "צמתים": [
+ {
+ "word_nikkud": "צֹמֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4102-tzomet",
+ "gender": "masculine"
+ }
+ ],
+ "צומת־": [
+ {
+ "word_nikkud": "צֹמֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4102-tzomet",
+ "gender": "masculine"
+ }
+ ],
+ "צמתי־": [
+ {
+ "word_nikkud": "צֹמֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4102-tzomet",
+ "gender": "masculine"
+ }
+ ],
+ "צנובר": [
+ {
+ "word_nikkud": "צְנוֹבָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8871-tznovar",
+ "gender": "masculine"
+ }
+ ],
+ "צנוברים": [
+ {
+ "word_nikkud": "צְנוֹבָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8871-tznovar",
+ "gender": "masculine"
+ }
+ ],
+ "צנובר־": [
+ {
+ "word_nikkud": "צְנוֹבָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8871-tznovar",
+ "gender": "masculine"
+ }
+ ],
+ "צנוברי־": [
+ {
+ "word_nikkud": "צְנוֹבָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8871-tznovar",
+ "gender": "masculine"
+ }
+ ],
+ "צינון": [
+ {
+ "word_nikkud": "צִנּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8061-tzinun",
+ "gender": "masculine"
+ }
+ ],
+ "צינונים": [
+ {
+ "word_nikkud": "צִנּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8061-tzinun",
+ "gender": "masculine"
+ }
+ ],
+ "צינון־": [
+ {
+ "word_nikkud": "צִנּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8061-tzinun",
+ "gender": "masculine"
+ }
+ ],
+ "צינוני־": [
+ {
+ "word_nikkud": "צִנּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8061-tzinun",
+ "gender": "masculine"
+ }
+ ],
+ "צנונית": [
+ {
+ "word_nikkud": "צְנוֹנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8612-tznonit",
+ "gender": "feminine"
+ }
+ ],
+ "צנוניות": [
+ {
+ "word_nikkud": "צְנוֹנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8612-tznonit",
+ "gender": "feminine"
+ }
+ ],
+ "צנונית־": [
+ {
+ "word_nikkud": "צְנוֹנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8612-tznonit",
+ "gender": "feminine"
+ }
+ ],
+ "צנוניות־": [
+ {
+ "word_nikkud": "צְנוֹנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8612-tznonit",
+ "gender": "feminine"
+ }
+ ],
+ "צנחן": [
+ {
+ "word_nikkud": "צַנְחָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3443-tzanchan",
+ "gender": "masculine"
+ }
+ ],
+ "צנחנים": [
+ {
+ "word_nikkud": "צַנְחָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3443-tzanchan",
+ "gender": "masculine"
+ }
+ ],
+ "צנחן־": [
+ {
+ "word_nikkud": "צַנְחָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3443-tzanchan",
+ "gender": "masculine"
+ }
+ ],
+ "צנחני־": [
+ {
+ "word_nikkud": "צַנְחָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3443-tzanchan",
+ "gender": "masculine"
+ }
+ ],
+ "מצנח": [
+ {
+ "word_nikkud": "מַצְנֵחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5138-matzneach",
+ "gender": "masculine"
+ }
+ ],
+ "מצנחים": [
+ {
+ "word_nikkud": "מַצְנֵחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5138-matzneach",
+ "gender": "masculine"
+ }
+ ],
+ "מצנח־": [
+ {
+ "word_nikkud": "מַצְנֵחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5138-matzneach",
+ "gender": "masculine"
+ }
+ ],
+ "מצנחי־": [
+ {
+ "word_nikkud": "מַצְנֵחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5138-matzneach",
+ "gender": "masculine"
+ }
+ ],
+ "מצנם": [
+ {
+ "word_nikkud": "מַצְנֵם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9135-matznem",
+ "gender": "masculine"
+ }
+ ],
+ "מצנמים": [
+ {
+ "word_nikkud": "מַצְנֵם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9135-matznem",
+ "gender": "masculine"
+ }
+ ],
+ "מצנם־": [
+ {
+ "word_nikkud": "מַצְנֵם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9135-matznem",
+ "gender": "masculine"
+ }
+ ],
+ "מצנמי־": [
+ {
+ "word_nikkud": "מַצְנֵם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9135-matznem",
+ "gender": "masculine"
+ }
+ ],
+ "הצטננות": [
+ {
+ "word_nikkud": "הִצְטַנְּנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6329-hitztanenut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטננויות": [
+ {
+ "word_nikkud": "הִצְטַנְּנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6329-hitztanenut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטננות־": [
+ {
+ "word_nikkud": "הִצְטַנְּנוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6329-hitztanenut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטננויות־": [
+ {
+ "word_nikkud": "הִצְטַנְּנוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6329-hitztanenut",
+ "gender": "feminine"
+ }
+ ],
+ "צניעות": [
+ {
+ "word_nikkud": "צְנִיעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8273-tzniut",
+ "gender": "feminine"
+ }
+ ],
+ "צניעויות": [
+ {
+ "word_nikkud": "צְנִיעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8273-tzniut",
+ "gender": "feminine"
+ }
+ ],
+ "צניעות־": [
+ {
+ "word_nikkud": "צְנִיעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8273-tzniut",
+ "gender": "feminine"
+ }
+ ],
+ "צניעויות־": [
+ {
+ "word_nikkud": "צְנִיעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8273-tzniut",
+ "gender": "feminine"
+ }
+ ],
+ "צנע": [
+ {
+ "word_nikkud": "צֶנַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6456-tzena",
+ "gender": "masculine"
+ }
+ ],
+ "צנע־": [
+ {
+ "word_nikkud": "צֶנַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6456-tzena",
+ "gender": "masculine"
+ }
+ ],
+ "מצנפת": [
+ {
+ "word_nikkud": "מִצְנֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3273-mitznefet",
+ "gender": "feminine"
+ }
+ ],
+ "מצנפות": [
+ {
+ "word_nikkud": "מִצְנֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3273-mitznefet",
+ "gender": "feminine"
+ }
+ ],
+ "מצנפת־": [
+ {
+ "word_nikkud": "מִצְנֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3273-mitznefet",
+ "gender": "feminine"
+ }
+ ],
+ "מצנפות־": [
+ {
+ "word_nikkud": "מִצְנֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3273-mitznefet",
+ "gender": "feminine"
+ }
+ ],
+ "צניף": [
+ {
+ "word_nikkud": "צָנִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3274-tzanif",
+ "gender": "masculine"
+ }
+ ],
+ "צניפים": [
+ {
+ "word_nikkud": "צָנִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3274-tzanif",
+ "gender": "masculine"
+ }
+ ],
+ "צניף־": [
+ {
+ "word_nikkud": "צָנִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3274-tzanif",
+ "gender": "masculine"
+ }
+ ],
+ "צניפי־": [
+ {
+ "word_nikkud": "צָנִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3274-tzanif",
+ "gender": "masculine"
+ }
+ ],
+ "צנצנת": [
+ {
+ "word_nikkud": "צִנְצֶנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7202-tzintzenet",
+ "gender": "feminine"
+ }
+ ],
+ "צנצנות": [
+ {
+ "word_nikkud": "צִנְצֶנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7202-tzintzenet",
+ "gender": "feminine"
+ }
+ ],
+ "צנצנת־": [
+ {
+ "word_nikkud": "צִנְצֶנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7202-tzintzenet",
+ "gender": "feminine"
+ }
+ ],
+ "צנצנות־": [
+ {
+ "word_nikkud": "צִנְצֶנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7202-tzintzenet",
+ "gender": "feminine"
+ }
+ ],
+ "צנרור": [
+ {
+ "word_nikkud": "צִנְרוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6741-tzinrur",
+ "gender": "masculine"
+ }
+ ],
+ "צנרורים": [
+ {
+ "word_nikkud": "צִנְרוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6741-tzinrur",
+ "gender": "masculine"
+ }
+ ],
+ "צנרור־": [
+ {
+ "word_nikkud": "צִנְרוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6741-tzinrur",
+ "gender": "masculine"
+ }
+ ],
+ "צנרורי־": [
+ {
+ "word_nikkud": "צִנְרוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6741-tzinrur",
+ "gender": "masculine"
+ }
+ ],
+ "צנתר": [
+ {
+ "word_nikkud": "צַנְתָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3678-tzantar",
+ "gender": "masculine"
+ }
+ ],
+ "צנתרים": [
+ {
+ "word_nikkud": "צַנְתָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3678-tzantar",
+ "gender": "masculine"
+ }
+ ],
+ "צנתר־": [
+ {
+ "word_nikkud": "צַנְתָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3678-tzantar",
+ "gender": "masculine"
+ }
+ ],
+ "צנתרי־": [
+ {
+ "word_nikkud": "צַנְתָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3678-tzantar",
+ "gender": "masculine"
+ }
+ ],
+ "צנתור": [
+ {
+ "word_nikkud": "צִנְתּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4543-tzintur",
+ "gender": "masculine"
+ }
+ ],
+ "צנתורים": [
+ {
+ "word_nikkud": "צִנְתּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4543-tzintur",
+ "gender": "masculine"
+ }
+ ],
+ "צנתור־": [
+ {
+ "word_nikkud": "צִנְתּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4543-tzintur",
+ "gender": "masculine"
+ }
+ ],
+ "צנתורי־": [
+ {
+ "word_nikkud": "צִנְתּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4543-tzintur",
+ "gender": "masculine"
+ }
+ ],
+ "מצעד": [
+ {
+ "word_nikkud": "מִצְעָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3546-mitzad",
+ "gender": "masculine"
+ }
+ ],
+ "מצעדים": [
+ {
+ "word_nikkud": "מִצְעָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3546-mitzad",
+ "gender": "masculine"
+ }
+ ],
+ "מצעד־": [
+ {
+ "word_nikkud": "מִצְעָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3546-mitzad",
+ "gender": "masculine"
+ }
+ ],
+ "מצעדי־": [
+ {
+ "word_nikkud": "מִצְעָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3546-mitzad",
+ "gender": "masculine"
+ }
+ ],
+ "צעד": [
+ {
+ "word_nikkud": "צַעַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4463-tzaad",
+ "gender": "masculine"
+ }
+ ],
+ "צעדים": [
+ {
+ "word_nikkud": "צַעַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4463-tzaad",
+ "gender": "masculine"
+ }
+ ],
+ "צעד־": [
+ {
+ "word_nikkud": "צַעַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4463-tzaad",
+ "gender": "masculine"
+ }
+ ],
+ "צעדי־": [
+ {
+ "word_nikkud": "צַעַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4463-tzaad",
+ "gender": "masculine"
+ }
+ ],
+ "צעידה": [
+ {
+ "word_nikkud": "צְעִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4464-tzeida",
+ "gender": "masculine"
+ }
+ ],
+ "צעידות": [
+ {
+ "word_nikkud": "צְעִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4464-tzeida",
+ "gender": "masculine"
+ }
+ ],
+ "צעידת־": [
+ {
+ "word_nikkud": "צְעִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4464-tzeida",
+ "gender": "masculine"
+ }
+ ],
+ "צעידות־": [
+ {
+ "word_nikkud": "צְעִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4464-tzeida",
+ "gender": "masculine"
+ }
+ ],
+ "צעדה": [
+ {
+ "word_nikkud": "צַעֲדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6250-tzaada",
+ "gender": "feminine"
+ }
+ ],
+ "צעדות": [
+ {
+ "word_nikkud": "צַעֲדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6250-tzaada",
+ "gender": "feminine"
+ }
+ ],
+ "צעדת־": [
+ {
+ "word_nikkud": "צַעֲדָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6250-tzaada",
+ "gender": "feminine"
+ }
+ ],
+ "צעדות־": [
+ {
+ "word_nikkud": "צַעֲדָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6250-tzaada",
+ "gender": "feminine"
+ }
+ ],
+ "צעיף": [
+ {
+ "word_nikkud": "צָעִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4458-tzaif",
+ "gender": "masculine"
+ }
+ ],
+ "צעיפים": [
+ {
+ "word_nikkud": "צָעִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4458-tzaif",
+ "gender": "masculine"
+ }
+ ],
+ "צעיף־": [
+ {
+ "word_nikkud": "צָעִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4458-tzaif",
+ "gender": "masculine"
+ }
+ ],
+ "צעיפי־": [
+ {
+ "word_nikkud": "צָעִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4458-tzaif",
+ "gender": "masculine"
+ }
+ ],
+ "צעצוע": [
+ {
+ "word_nikkud": "צַעֲצוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5212-tzaatzua",
+ "gender": "masculine"
+ }
+ ],
+ "צעצועים": [
+ {
+ "word_nikkud": "צַעֲצוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5212-tzaatzua",
+ "gender": "masculine"
+ }
+ ],
+ "צעצוע־": [
+ {
+ "word_nikkud": "צַעֲצוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5212-tzaatzua",
+ "gender": "masculine"
+ }
+ ],
+ "צעצועי־": [
+ {
+ "word_nikkud": "צַעֲצוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5212-tzaatzua",
+ "gender": "masculine"
+ }
+ ],
+ "צעקה": [
+ {
+ "word_nikkud": "צְעָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2859-tzeaka",
+ "gender": "feminine"
+ }
+ ],
+ "צעקות": [
+ {
+ "word_nikkud": "צְעָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2859-tzeaka",
+ "gender": "feminine"
+ }
+ ],
+ "צעקת־": [
+ {
+ "word_nikkud": "צְעָקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2859-tzeaka",
+ "gender": "feminine"
+ }
+ ],
+ "צעקות־": [
+ {
+ "word_nikkud": "צְעָקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2859-tzeaka",
+ "gender": "feminine"
+ }
+ ],
+ "צער": [
+ {
+ "word_nikkud": "צַעַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6598-tzaar",
+ "gender": "masculine"
+ }
+ ],
+ "צערים": [
+ {
+ "word_nikkud": "צַעַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6598-tzaar",
+ "gender": "masculine"
+ }
+ ],
+ "צער־": [
+ {
+ "word_nikkud": "צַעַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6598-tzaar",
+ "gender": "masculine"
+ }
+ ],
+ "צערי־": [
+ {
+ "word_nikkud": "צַעַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6598-tzaar",
+ "gender": "masculine"
+ }
+ ],
+ "מצער": [
+ {
+ "word_nikkud": "מִצְעָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7117-mitzar",
+ "gender": "masculine"
+ }
+ ],
+ "מצערים": [
+ {
+ "word_nikkud": "מִצְעָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7117-mitzar",
+ "gender": "masculine"
+ }
+ ],
+ "מצער־": [
+ {
+ "word_nikkud": "מִצְעָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7117-mitzar",
+ "gender": "masculine"
+ }
+ ],
+ "מצערי־": [
+ {
+ "word_nikkud": "מִצְעָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7117-mitzar",
+ "gender": "masculine"
+ }
+ ],
+ "צפחת": [
+ {
+ "word_nikkud": "צַפַּחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8379-tzapachat",
+ "gender": "feminine"
+ }
+ ],
+ "צפחות": [
+ {
+ "word_nikkud": "צַפַּחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8379-tzapachat",
+ "gender": "feminine"
+ }
+ ],
+ "צפחת־": [
+ {
+ "word_nikkud": "צַפַּחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8379-tzapachat",
+ "gender": "feminine"
+ }
+ ],
+ "צפחות־": [
+ {
+ "word_nikkud": "צַפַּחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8379-tzapachat",
+ "gender": "feminine"
+ }
+ ],
+ "מצפה": [
+ {
+ "word_nikkud": "מִצְפֶּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5577-mitzpe",
+ "gender": "masculine"
+ }
+ ],
+ "מצפים": [
+ {
+ "word_nikkud": "מִצְפֶּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5577-mitzpe",
+ "gender": "masculine"
+ }
+ ],
+ "מצפה־": [
+ {
+ "word_nikkud": "מִצְפֶּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5577-mitzpe",
+ "gender": "masculine"
+ }
+ ],
+ "מצפי־": [
+ {
+ "word_nikkud": "מִצְפֶּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5577-mitzpe",
+ "gender": "masculine"
+ }
+ ],
+ "ציפיה": [
+ {
+ "word_nikkud": "צִפִּיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5579-tzipiya",
+ "gender": "feminine"
+ }
+ ],
+ "ציפיות": [
+ {
+ "word_nikkud": "צִפִּיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5579-tzipiya",
+ "gender": "feminine"
+ }
+ ],
+ "ציפיית־": [
+ {
+ "word_nikkud": "צִפִּיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5579-tzipiya",
+ "gender": "feminine"
+ }
+ ],
+ "ציפיות־": [
+ {
+ "word_nikkud": "צִפִּיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5579-tzipiya",
+ "gender": "feminine"
+ }
+ ],
+ "צפי": [
+ {
+ "word_nikkud": "צֶפִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4502-tzefi",
+ "gender": "masculine"
+ }
+ ],
+ "ציפוי": [
+ {
+ "word_nikkud": "צִפּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8996-tzipuy",
+ "gender": "masculine"
+ }
+ ],
+ "ציפויים": [
+ {
+ "word_nikkud": "צִפּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8996-tzipuy",
+ "gender": "masculine"
+ }
+ ],
+ "ציפוי־": [
+ {
+ "word_nikkud": "צִפּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8996-tzipuy",
+ "gender": "masculine"
+ }
+ ],
+ "ציפויי־": [
+ {
+ "word_nikkud": "צִפּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8996-tzipuy",
+ "gender": "masculine"
+ }
+ ],
+ "תצפיתן": [
+ {
+ "word_nikkud": "תַּצְפִּיתָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9208-tatzpitan",
+ "gender": "masculine"
+ }
+ ],
+ "תצפיתנים": [
+ {
+ "word_nikkud": "תַּצְפִּיתָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9208-tatzpitan",
+ "gender": "masculine"
+ }
+ ],
+ "תצפיתן־": [
+ {
+ "word_nikkud": "תַּצְפִּיתָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9208-tatzpitan",
+ "gender": "masculine"
+ }
+ ],
+ "תצפיתני־": [
+ {
+ "word_nikkud": "תַּצְפִּיתָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9208-tatzpitan",
+ "gender": "masculine"
+ }
+ ],
+ "תצפית": [
+ {
+ "word_nikkud": "תַּצְפִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7316-tatzpit",
+ "gender": "feminine"
+ }
+ ],
+ "תצפיות": [
+ {
+ "word_nikkud": "תַּצְפִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7316-tatzpit",
+ "gender": "feminine"
+ }
+ ],
+ "תצפית־": [
+ {
+ "word_nikkud": "תַּצְפִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7316-tatzpit",
+ "gender": "feminine"
+ }
+ ],
+ "תצפיות־": [
+ {
+ "word_nikkud": "תַּצְפִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7316-tatzpit",
+ "gender": "feminine"
+ }
+ ],
+ "מצפן": [
+ {
+ "word_nikkud": "מַצְפֵּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5885-matzpen",
+ "gender": "masculine"
+ }
+ ],
+ "מצפנים": [
+ {
+ "word_nikkud": "מַצְפֵּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5885-matzpen",
+ "gender": "masculine"
+ }
+ ],
+ "מצפן־": [
+ {
+ "word_nikkud": "מַצְפֵּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5885-matzpen",
+ "gender": "masculine"
+ }
+ ],
+ "מצפני־": [
+ {
+ "word_nikkud": "מַצְפֵּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5885-matzpen",
+ "gender": "masculine"
+ }
+ ],
+ "צפון": [
+ {
+ "word_nikkud": "צָפוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3090-tzafon",
+ "gender": "masculine"
+ }
+ ],
+ "צפון־": [
+ {
+ "word_nikkud": "צָפוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3090-tzafon",
+ "gender": "masculine"
+ }
+ ],
+ "צופן": [
+ {
+ "word_nikkud": "צֹפֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3215-tzofen",
+ "gender": "masculine"
+ }
+ ],
+ "צפנים": [
+ {
+ "word_nikkud": "צֹפֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3215-tzofen",
+ "gender": "masculine"
+ }
+ ],
+ "צופן־": [
+ {
+ "word_nikkud": "צֹפֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3215-tzofen",
+ "gender": "masculine"
+ }
+ ],
+ "צפני־": [
+ {
+ "word_nikkud": "צֹפֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3215-tzofen",
+ "gender": "masculine"
+ }
+ ],
+ "מצפון": [
+ {
+ "word_nikkud": "מַצְפּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5049-matzpun",
+ "gender": ""
+ }
+ ],
+ "מצפון־": [
+ {
+ "word_nikkud": "מַצְפּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5049-matzpun",
+ "gender": ""
+ }
+ ],
+ "הצפנה": [
+ {
+ "word_nikkud": "הַצְפָּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9114-hatzpana",
+ "gender": "feminine"
+ }
+ ],
+ "הצפנות": [
+ {
+ "word_nikkud": "הַצְפָּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9114-hatzpana",
+ "gender": "feminine"
+ }
+ ],
+ "הצפנת־": [
+ {
+ "word_nikkud": "הַצְפָּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9114-hatzpana",
+ "gender": "feminine"
+ }
+ ],
+ "הצפנות־": [
+ {
+ "word_nikkud": "הַצְפָּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9114-hatzpana",
+ "gender": "feminine"
+ }
+ ],
+ "צפיפות": [
+ {
+ "word_nikkud": "צְפִיפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6672-tzfifut",
+ "gender": "feminine"
+ }
+ ],
+ "צפיפויות": [
+ {
+ "word_nikkud": "צְפִיפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6672-tzfifut",
+ "gender": "feminine"
+ }
+ ],
+ "צפיפות־": [
+ {
+ "word_nikkud": "צְפִיפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6672-tzfifut",
+ "gender": "feminine"
+ }
+ ],
+ "צפיפויות־": [
+ {
+ "word_nikkud": "צְפִיפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6672-tzfifut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטופפות": [
+ {
+ "word_nikkud": "הִצְטוֹפְפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8556-hitztofefut",
+ "gender": "feminine"
+ }
+ ],
+ "הצטופפות־": [
+ {
+ "word_nikkud": "הִצְטוֹפְפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8556-hitztofefut",
+ "gender": "feminine"
+ }
+ ],
+ "צפצפה": [
+ {
+ "word_nikkud": "צַפְצָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9007-tzaftzafa",
+ "gender": "feminine"
+ }
+ ],
+ "צפצפות": [
+ {
+ "word_nikkud": "צַפְצָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9007-tzaftzafa",
+ "gender": "feminine"
+ }
+ ],
+ "צפצפת־": [
+ {
+ "word_nikkud": "צַפְצָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9007-tzaftzafa",
+ "gender": "feminine"
+ }
+ ],
+ "צפצפות־": [
+ {
+ "word_nikkud": "צַפְצָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9007-tzaftzafa",
+ "gender": "feminine"
+ }
+ ],
+ "ציפור": [
+ {
+ "word_nikkud": "צִפּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4199-tzipor",
+ "gender": "feminine"
+ }
+ ],
+ "ציפורים": [
+ {
+ "word_nikkud": "צִפּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4199-tzipor",
+ "gender": "feminine"
+ }
+ ],
+ "ציפור־": [
+ {
+ "word_nikkud": "צִפּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4199-tzipor",
+ "gender": "feminine"
+ }
+ ],
+ "ציפורי־": [
+ {
+ "word_nikkud": "צִפּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4199-tzipor",
+ "gender": "feminine"
+ }
+ ],
+ "צפר": [
+ {
+ "word_nikkud": "צַפָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4198-tzapar",
+ "gender": "masculine"
+ }
+ ],
+ "צפרים": [
+ {
+ "word_nikkud": "צַפָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4198-tzapar",
+ "gender": "masculine"
+ }
+ ],
+ "צפר־": [
+ {
+ "word_nikkud": "צַפָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4198-tzapar",
+ "gender": "masculine"
+ }
+ ],
+ "צפרי־": [
+ {
+ "word_nikkud": "צַפָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4198-tzapar",
+ "gender": "masculine"
+ }
+ ],
+ "צפיר": [
+ {
+ "word_nikkud": "צָפִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7346-tzafir",
+ "gender": "masculine"
+ }
+ ],
+ "צפירים": [
+ {
+ "word_nikkud": "צָפִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7346-tzafir",
+ "gender": "masculine"
+ }
+ ],
+ "צפיר־": [
+ {
+ "word_nikkud": "צָפִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7346-tzafir",
+ "gender": "masculine"
+ }
+ ],
+ "צפירי־": [
+ {
+ "word_nikkud": "צָפִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7346-tzafir",
+ "gender": "masculine"
+ }
+ ],
+ "צפירה": [
+ {
+ "word_nikkud": "צְפִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7330-tzfira",
+ "gender": "feminine"
+ }
+ ],
+ "צפירות": [
+ {
+ "word_nikkud": "צְפִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7330-tzfira",
+ "gender": "feminine"
+ }
+ ],
+ "צפירת־": [
+ {
+ "word_nikkud": "צְפִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7330-tzfira",
+ "gender": "feminine"
+ }
+ ],
+ "צפירות־": [
+ {
+ "word_nikkud": "צְפִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7330-tzfira",
+ "gender": "feminine"
+ }
+ ],
+ "צפרדע": [
+ {
+ "word_nikkud": "צְפַרְדֵּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6589-tzfardea",
+ "gender": "feminine"
+ }
+ ],
+ "צפרדעים": [
+ {
+ "word_nikkud": "צְפַרְדֵּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6589-tzfardea",
+ "gender": "feminine"
+ }
+ ],
+ "צפרדע־": [
+ {
+ "word_nikkud": "צְפַרְדֵּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6589-tzfardea",
+ "gender": "feminine"
+ }
+ ],
+ "צפרדעי־": [
+ {
+ "word_nikkud": "צְפַרְדֵּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6589-tzfardea",
+ "gender": "feminine"
+ }
+ ],
+ "צרבת": [
+ {
+ "word_nikkud": "צָרֶבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3874-tzarevet",
+ "gender": "feminine"
+ }
+ ],
+ "צרבות": [
+ {
+ "word_nikkud": "צָרֶבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3874-tzarevet",
+ "gender": "feminine"
+ }
+ ],
+ "צרבת־": [
+ {
+ "word_nikkud": "צָרֶבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3874-tzarevet",
+ "gender": "feminine"
+ }
+ ],
+ "צרבות־": [
+ {
+ "word_nikkud": "צָרֶבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3874-tzarevet",
+ "gender": "feminine"
+ }
+ ],
+ "צרחה": [
+ {
+ "word_nikkud": "צְרָחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7383-tzracha",
+ "gender": "feminine"
+ }
+ ],
+ "צרחות": [
+ {
+ "word_nikkud": "צְרָחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7383-tzracha",
+ "gender": "feminine"
+ }
+ ],
+ "צרחת־": [
+ {
+ "word_nikkud": "צְרָחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7383-tzracha",
+ "gender": "feminine"
+ }
+ ],
+ "צרחות־": [
+ {
+ "word_nikkud": "צְרָחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7383-tzracha",
+ "gender": "feminine"
+ }
+ ],
+ "צריח": [
+ {
+ "word_nikkud": "צְרִיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4365-tzriach",
+ "gender": "masculine"
+ }
+ ],
+ "צריחים": [
+ {
+ "word_nikkud": "צְרִיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4365-tzriach",
+ "gender": "masculine"
+ }
+ ],
+ "צריח־": [
+ {
+ "word_nikkud": "צְרִיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4365-tzriach",
+ "gender": "masculine"
+ }
+ ],
+ "צריחי־": [
+ {
+ "word_nikkud": "צְרִיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4365-tzriach",
+ "gender": "masculine"
+ }
+ ],
+ "צורך": [
+ {
+ "word_nikkud": "צֹרֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3216-tzorech",
+ "gender": "masculine"
+ }
+ ],
+ "צרכים": [
+ {
+ "word_nikkud": "צֹרֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3216-tzorech",
+ "gender": "masculine"
+ }
+ ],
+ "צורך־": [
+ {
+ "word_nikkud": "צֹרֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3216-tzorech",
+ "gender": "masculine"
+ }
+ ],
+ "צרכי־": [
+ {
+ "word_nikkud": "צֹרֶךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3216-tzorech",
+ "gender": "masculine"
+ }
+ ],
+ "צרכן": [
+ {
+ "word_nikkud": "צַרְכָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3445-tzarchan",
+ "gender": "masculine"
+ }
+ ],
+ "צרכנים": [
+ {
+ "word_nikkud": "צַרְכָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3445-tzarchan",
+ "gender": "masculine"
+ }
+ ],
+ "צרכן־": [
+ {
+ "word_nikkud": "צַרְכָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3445-tzarchan",
+ "gender": "masculine"
+ }
+ ],
+ "צרכני־": [
+ {
+ "word_nikkud": "צַרְכָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3445-tzarchan",
+ "gender": "masculine"
+ }
+ ],
+ "מצרך": [
+ {
+ "word_nikkud": "מִצְרָךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3972-mitzrach",
+ "gender": "masculine"
+ }
+ ],
+ "מצרכים": [
+ {
+ "word_nikkud": "מִצְרָךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3972-mitzrach",
+ "gender": "masculine"
+ }
+ ],
+ "מצרך־": [
+ {
+ "word_nikkud": "מִצְרָךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3972-mitzrach",
+ "gender": "masculine"
+ }
+ ],
+ "מצרכי־": [
+ {
+ "word_nikkud": "מִצְרָךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3972-mitzrach",
+ "gender": "masculine"
+ }
+ ],
+ "צרכנות": [
+ {
+ "word_nikkud": "צַרְכָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6803-tzarchanut",
+ "gender": "feminine"
+ }
+ ],
+ "צרכנות־": [
+ {
+ "word_nikkud": "צַרְכָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6803-tzarchanut",
+ "gender": "feminine"
+ }
+ ],
+ "צריכה": [
+ {
+ "word_nikkud": "צְרִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9108-tzricha",
+ "gender": "feminine"
+ }
+ ],
+ "צריכת־": [
+ {
+ "word_nikkud": "צְרִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9108-tzricha",
+ "gender": "feminine"
+ }
+ ],
+ "צרעת": [
+ {
+ "word_nikkud": "צָרַעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7569-tzaraat",
+ "gender": "feminine"
+ }
+ ],
+ "צרעות": [
+ {
+ "word_nikkud": "צָרַעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7569-tzaraat",
+ "gender": "feminine"
+ }
+ ],
+ "צרעת־": [
+ {
+ "word_nikkud": "צָרַעַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7569-tzaraat",
+ "gender": "feminine"
+ }
+ ],
+ "צרעות־": [
+ {
+ "word_nikkud": "צָרַעַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7569-tzaraat",
+ "gender": "feminine"
+ }
+ ],
+ "צריף": [
+ {
+ "word_nikkud": "צְרִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4313-tzrif",
+ "gender": "masculine"
+ }
+ ],
+ "צריפים": [
+ {
+ "word_nikkud": "צְרִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4313-tzrif",
+ "gender": "masculine"
+ }
+ ],
+ "צריף־": [
+ {
+ "word_nikkud": "צְרִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4313-tzrif",
+ "gender": "masculine"
+ }
+ ],
+ "צריפי־": [
+ {
+ "word_nikkud": "צְרִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4313-tzrif",
+ "gender": "masculine"
+ }
+ ],
+ "צירוף": [
+ {
+ "word_nikkud": "צֵרוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7598-tzeruf",
+ "gender": "masculine"
+ }
+ ],
+ "צירופים": [
+ {
+ "word_nikkud": "צֵרוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7598-tzeruf",
+ "gender": "masculine"
+ }
+ ],
+ "צירוף־": [
+ {
+ "word_nikkud": "צֵרוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7598-tzeruf",
+ "gender": "masculine"
+ }
+ ],
+ "צירופי־": [
+ {
+ "word_nikkud": "צֵרוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7598-tzeruf",
+ "gender": "masculine"
+ }
+ ],
+ "צרפת": [
+ {
+ "word_nikkud": "צָרְפַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7058-tzarfat",
+ "gender": "feminine"
+ }
+ ],
+ "צרצור": [
+ {
+ "word_nikkud": "צִרְצוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6357-tzirtzur",
+ "gender": "masculine"
+ }
+ ],
+ "צרצורים": [
+ {
+ "word_nikkud": "צִרְצוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6357-tzirtzur",
+ "gender": "masculine"
+ }
+ ],
+ "צרצור־": [
+ {
+ "word_nikkud": "צִרְצוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6357-tzirtzur",
+ "gender": "masculine"
+ }
+ ],
+ "צרצורי־": [
+ {
+ "word_nikkud": "צִרְצוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6357-tzirtzur",
+ "gender": "masculine"
+ }
+ ],
+ "צרור": [
+ {
+ "word_nikkud": "צְרוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7577-tzror",
+ "gender": "masculine"
+ }
+ ],
+ "צרורות": [
+ {
+ "word_nikkud": "צְרוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7577-tzror",
+ "gender": "masculine"
+ }
+ ],
+ "צרור־": [
+ {
+ "word_nikkud": "צְרוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7577-tzror",
+ "gender": "masculine"
+ }
+ ],
+ "צרורות־": [
+ {
+ "word_nikkud": "צְרוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7577-tzror",
+ "gender": "masculine"
+ }
+ ],
+ "צרה": [
+ {
+ "word_nikkud": "צָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6245-tzara",
+ "gender": "feminine"
+ }
+ ],
+ "צרות": [
+ {
+ "word_nikkud": "צָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6245-tzara",
+ "gender": "feminine"
+ }
+ ],
+ "צרת־": [
+ {
+ "word_nikkud": "צָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6245-tzara",
+ "gender": "feminine"
+ }
+ ],
+ "צרות־": [
+ {
+ "word_nikkud": "צָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6245-tzara",
+ "gender": "feminine"
+ }
+ ],
+ "קיבולת": [
+ {
+ "word_nikkud": "קִבֹּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3269-kibolet",
+ "gender": "feminine"
+ }
+ ],
+ "קיבולות": [
+ {
+ "word_nikkud": "קִבֹּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3269-kibolet",
+ "gender": "feminine"
+ }
+ ],
+ "קיבולת־": [
+ {
+ "word_nikkud": "קִבֹּלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3269-kibolet",
+ "gender": "feminine"
+ }
+ ],
+ "קיבולות־": [
+ {
+ "word_nikkud": "קִבֹּלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3269-kibolet",
+ "gender": "feminine"
+ }
+ ],
+ "קבלה": [
+ {
+ "word_nikkud": "קַבָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3005-kabala",
+ "gender": "feminine"
+ }
+ ],
+ "קבלות": [
+ {
+ "word_nikkud": "קַבָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3005-kabala",
+ "gender": "feminine"
+ }
+ ],
+ "קבלת־": [
+ {
+ "word_nikkud": "קַבָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3005-kabala",
+ "gender": "feminine"
+ }
+ ],
+ "קבלות־": [
+ {
+ "word_nikkud": "קַבָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3005-kabala",
+ "gender": "feminine"
+ }
+ ],
+ "קבל": [
+ {
+ "word_nikkud": "קַבָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3361-kabal",
+ "gender": "masculine"
+ }
+ ],
+ "קבלים": [
+ {
+ "word_nikkud": "קַבָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3361-kabal",
+ "gender": "masculine"
+ }
+ ],
+ "קבל־": [
+ {
+ "word_nikkud": "קַבָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3361-kabal",
+ "gender": "masculine"
+ }
+ ],
+ "קבלי־": [
+ {
+ "word_nikkud": "קַבָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3361-kabal",
+ "gender": "masculine"
+ }
+ ],
+ "קיבול": [
+ {
+ "word_nikkud": "קִבּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6600-kibul",
+ "gender": "masculine"
+ }
+ ],
+ "קיבולים": [
+ {
+ "word_nikkud": "קִבּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6600-kibul",
+ "gender": "masculine"
+ }
+ ],
+ "קיבול־": [
+ {
+ "word_nikkud": "קִבּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6600-kibul",
+ "gender": "masculine"
+ }
+ ],
+ "קיבולי־": [
+ {
+ "word_nikkud": "קִבּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6600-kibul",
+ "gender": "masculine"
+ }
+ ],
+ "קבלן": [
+ {
+ "word_nikkud": "קַבְּלָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9025-kablan",
+ "gender": ""
+ }
+ ],
+ "קבלן־": [
+ {
+ "word_nikkud": "קַבְּלָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9025-kablan",
+ "gender": ""
+ }
+ ],
+ "קיבוע": [
+ {
+ "word_nikkud": "קִבּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7381-kibua",
+ "gender": "masculine"
+ }
+ ],
+ "קיבועים": [
+ {
+ "word_nikkud": "קִבּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7381-kibua",
+ "gender": "masculine"
+ }
+ ],
+ "קיבוע־": [
+ {
+ "word_nikkud": "קִבּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7381-kibua",
+ "gender": "masculine"
+ }
+ ],
+ "קיבועי־": [
+ {
+ "word_nikkud": "קִבּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7381-kibua",
+ "gender": "masculine"
+ }
+ ],
+ "קביעות": [
+ {
+ "word_nikkud": "קְבִיעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6790-kviut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קְבִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7441-kvia",
+ "gender": "feminine"
+ }
+ ],
+ "קביעויות": [
+ {
+ "word_nikkud": "קְבִיעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6790-kviut",
+ "gender": "feminine"
+ }
+ ],
+ "קביעות־": [
+ {
+ "word_nikkud": "קְבִיעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6790-kviut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קְבִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7441-kvia",
+ "gender": "feminine"
+ }
+ ],
+ "קביעויות־": [
+ {
+ "word_nikkud": "קְבִיעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6790-kviut",
+ "gender": "feminine"
+ }
+ ],
+ "קביעה": [
+ {
+ "word_nikkud": "קְבִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7441-kvia",
+ "gender": "feminine"
+ }
+ ],
+ "קביעת־": [
+ {
+ "word_nikkud": "קְבִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7441-kvia",
+ "gender": "feminine"
+ }
+ ],
+ "קיבעון": [
+ {
+ "word_nikkud": "קִבָּעוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7214-kibaon",
+ "gender": "masculine"
+ }
+ ],
+ "קיבעונות": [
+ {
+ "word_nikkud": "קִבָּעוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7214-kibaon",
+ "gender": "masculine"
+ }
+ ],
+ "קיבעון־": [
+ {
+ "word_nikkud": "קִבָּעוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7214-kibaon",
+ "gender": "masculine"
+ }
+ ],
+ "קיבעונות־": [
+ {
+ "word_nikkud": "קִבָּעוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7214-kibaon",
+ "gender": "masculine"
+ }
+ ],
+ "קבוצה": [
+ {
+ "word_nikkud": "קְבוּצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4090-kvutza",
+ "gender": "feminine"
+ }
+ ],
+ "קבוצות": [
+ {
+ "word_nikkud": "קְבוּצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4090-kvutza",
+ "gender": "feminine"
+ }
+ ],
+ "קבוצת־": [
+ {
+ "word_nikkud": "קְבוּצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4090-kvutza",
+ "gender": "feminine"
+ }
+ ],
+ "קבוצות־": [
+ {
+ "word_nikkud": "קְבוּצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4090-kvutza",
+ "gender": "feminine"
+ }
+ ],
+ "קובץ": [
+ {
+ "word_nikkud": "קֹבֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3386-kovetz",
+ "gender": "masculine"
+ }
+ ],
+ "קבצים": [
+ {
+ "word_nikkud": "קֹבֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3386-kovetz",
+ "gender": "masculine"
+ }
+ ],
+ "קובץ־": [
+ {
+ "word_nikkud": "קֹבֶץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3386-kovetz",
+ "gender": "masculine"
+ }
+ ],
+ "קבצי־": [
+ {
+ "word_nikkud": "קֹבֶץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3386-kovetz",
+ "gender": "masculine"
+ }
+ ],
+ "קבצן": [
+ {
+ "word_nikkud": "קַבְּצָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4983-kabtzan",
+ "gender": ""
+ }
+ ],
+ "קבצנים": [
+ {
+ "word_nikkud": "קַבְּצָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4983-kabtzan",
+ "gender": ""
+ }
+ ],
+ "קבצן־": [
+ {
+ "word_nikkud": "קַבְּצָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4983-kabtzan",
+ "gender": ""
+ }
+ ],
+ "קבצני־": [
+ {
+ "word_nikkud": "קַבְּצָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4983-kabtzan",
+ "gender": ""
+ }
+ ],
+ "קיבוץ": [
+ {
+ "word_nikkud": "קִבּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5808-kibutz",
+ "gender": "masculine"
+ }
+ ],
+ "קיבוצים": [
+ {
+ "word_nikkud": "קִבּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5808-kibutz",
+ "gender": "masculine"
+ }
+ ],
+ "קיבוץ־": [
+ {
+ "word_nikkud": "קִבּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5808-kibutz",
+ "gender": "masculine"
+ }
+ ],
+ "קיבוצי־": [
+ {
+ "word_nikkud": "קִבּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5808-kibutz",
+ "gender": "masculine"
+ }
+ ],
+ "קבורה": [
+ {
+ "word_nikkud": "קְבוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3688-kvura",
+ "gender": "feminine"
+ }
+ ],
+ "קבורות": [
+ {
+ "word_nikkud": "קְבוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3688-kvura",
+ "gender": "feminine"
+ }
+ ],
+ "קבורת־": [
+ {
+ "word_nikkud": "קְבוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3688-kvura",
+ "gender": "feminine"
+ }
+ ],
+ "קבורות־": [
+ {
+ "word_nikkud": "קְבוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3688-kvura",
+ "gender": "feminine"
+ }
+ ],
+ "קבר": [
+ {
+ "word_nikkud": "קֵבֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3689-kever",
+ "gender": "masculine"
+ }
+ ],
+ "קברים": [
+ {
+ "word_nikkud": "קֵבֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3689-kever",
+ "gender": "masculine"
+ }
+ ],
+ "קברות": [
+ {
+ "word_nikkud": "קֵבֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3689-kever",
+ "gender": "masculine"
+ }
+ ],
+ "קבר־": [
+ {
+ "word_nikkud": "קֵבֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3689-kever",
+ "gender": "masculine"
+ }
+ ],
+ "קברי־": [
+ {
+ "word_nikkud": "קֵבֶר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3689-kever",
+ "gender": "masculine"
+ }
+ ],
+ "קברות־": [
+ {
+ "word_nikkud": "קֵבֶר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3689-kever",
+ "gender": "masculine"
+ }
+ ],
+ "קברניט": [
+ {
+ "word_nikkud": "קַבַּרְנִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5023-kabarnit",
+ "gender": "masculine"
+ }
+ ],
+ "קברניטים": [
+ {
+ "word_nikkud": "קַבַּרְנִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5023-kabarnit",
+ "gender": "masculine"
+ }
+ ],
+ "קברניט־": [
+ {
+ "word_nikkud": "קַבַּרְנִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5023-kabarnit",
+ "gender": "masculine"
+ }
+ ],
+ "קברניטי־": [
+ {
+ "word_nikkud": "קַבַּרְנִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5023-kabarnit",
+ "gender": "masculine"
+ }
+ ],
+ "קדחת": [
+ {
+ "word_nikkud": "קַדַּחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5314-kadachat",
+ "gender": "feminine"
+ }
+ ],
+ "קדחות": [
+ {
+ "word_nikkud": "קַדַּחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5314-kadachat",
+ "gender": "feminine"
+ }
+ ],
+ "קדחת־": [
+ {
+ "word_nikkud": "קַדַּחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5314-kadachat",
+ "gender": "feminine"
+ }
+ ],
+ "קדחות־": [
+ {
+ "word_nikkud": "קַדַּחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5314-kadachat",
+ "gender": "feminine"
+ }
+ ],
+ "מקדחה": [
+ {
+ "word_nikkud": "מַקְדֵּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3561-makdecha",
+ "gender": "feminine"
+ }
+ ],
+ "מקדחות": [
+ {
+ "word_nikkud": "מַקְדֵּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3561-makdecha",
+ "gender": "feminine"
+ }
+ ],
+ "מקדחת־": [
+ {
+ "word_nikkud": "מַקְדֵּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3561-makdecha",
+ "gender": "feminine"
+ }
+ ],
+ "מקדחות־": [
+ {
+ "word_nikkud": "מַקְדֵּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3561-makdecha",
+ "gender": "feminine"
+ }
+ ],
+ "אקדח": [
+ {
+ "word_nikkud": "אֶקְדָּח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4870-ekdach",
+ "gender": "masculine"
+ }
+ ],
+ "אקדחים": [
+ {
+ "word_nikkud": "אֶקְדָּח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4870-ekdach",
+ "gender": "masculine"
+ }
+ ],
+ "אקדח־": [
+ {
+ "word_nikkud": "אֶקְדָּח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4870-ekdach",
+ "gender": "masculine"
+ }
+ ],
+ "אקדחי־": [
+ {
+ "word_nikkud": "אֶקְדָּח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4870-ekdach",
+ "gender": "masculine"
+ }
+ ],
+ "קדיחה": [
+ {
+ "word_nikkud": "קְדִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7568-kdicha",
+ "gender": "feminine"
+ }
+ ],
+ "קדיחות": [
+ {
+ "word_nikkud": "קְדִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7568-kdicha",
+ "gender": "feminine"
+ }
+ ],
+ "קדיחת־": [
+ {
+ "word_nikkud": "קְדִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7568-kdicha",
+ "gender": "feminine"
+ }
+ ],
+ "קדיחות־": [
+ {
+ "word_nikkud": "קְדִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7568-kdicha",
+ "gender": "feminine"
+ }
+ ],
+ "מקדח": [
+ {
+ "word_nikkud": "מַקְדֵּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8047-makdeach",
+ "gender": "masculine"
+ }
+ ],
+ "מקדחים": [
+ {
+ "word_nikkud": "מַקְדֵּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8047-makdeach",
+ "gender": "masculine"
+ }
+ ],
+ "מקדח־": [
+ {
+ "word_nikkud": "מַקְדֵּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8047-makdeach",
+ "gender": "masculine"
+ }
+ ],
+ "מקדחי־": [
+ {
+ "word_nikkud": "מַקְדֵּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8047-makdeach",
+ "gender": "masculine"
+ }
+ ],
+ "קידומת": [
+ {
+ "word_nikkud": "קִדֹּמֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3268-kidomet",
+ "gender": "feminine"
+ }
+ ],
+ "קידומות": [
+ {
+ "word_nikkud": "קִדֹּמֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3268-kidomet",
+ "gender": "feminine"
+ }
+ ],
+ "קידומת־": [
+ {
+ "word_nikkud": "קִדֹּמֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3268-kidomet",
+ "gender": "feminine"
+ }
+ ],
+ "קידומות־": [
+ {
+ "word_nikkud": "קִדֹּמֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3268-kidomet",
+ "gender": "feminine"
+ }
+ ],
+ "קדמה": [
+ {
+ "word_nikkud": "קִדְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3220-kidma",
+ "gender": "feminine"
+ }
+ ],
+ "קדמות": [
+ {
+ "word_nikkud": "קִדְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3220-kidma",
+ "gender": "feminine"
+ }
+ ],
+ "קדמת־": [
+ {
+ "word_nikkud": "קִדְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3220-kidma",
+ "gender": "feminine"
+ }
+ ],
+ "קדמות־": [
+ {
+ "word_nikkud": "קִדְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3220-kidma",
+ "gender": "feminine"
+ }
+ ],
+ "הקדמה": [
+ {
+ "word_nikkud": "הַקְדָּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4715-hakdama",
+ "gender": "feminine"
+ }
+ ],
+ "הקדמות": [
+ {
+ "word_nikkud": "הַקְדָּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4715-hakdama",
+ "gender": "feminine"
+ }
+ ],
+ "הקדמת־": [
+ {
+ "word_nikkud": "הַקְדָּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4715-hakdama",
+ "gender": "feminine"
+ }
+ ],
+ "הקדמות־": [
+ {
+ "word_nikkud": "הַקְדָּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4715-hakdama",
+ "gender": "feminine"
+ }
+ ],
+ "תקדים": [
+ {
+ "word_nikkud": "תַּקְדִּים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4751-takdim",
+ "gender": "masculine"
+ }
+ ],
+ "תקדימים": [
+ {
+ "word_nikkud": "תַּקְדִּים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4751-takdim",
+ "gender": "masculine"
+ }
+ ],
+ "תקדים־": [
+ {
+ "word_nikkud": "תַּקְדִּים",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4751-takdim",
+ "gender": "masculine"
+ }
+ ],
+ "תקדימי־": [
+ {
+ "word_nikkud": "תַּקְדִּים",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4751-takdim",
+ "gender": "masculine"
+ }
+ ],
+ "התקדמות": [
+ {
+ "word_nikkud": "הִתְקַדְּמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3026-hitkadmut",
+ "gender": "feminine"
+ }
+ ],
+ "התקדמות־": [
+ {
+ "word_nikkud": "הִתְקַדְּמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3026-hitkadmut",
+ "gender": "feminine"
+ }
+ ],
+ "מקדם": [
+ {
+ "word_nikkud": "מְקַדֵּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7822-mekadem",
+ "gender": "masculine"
+ }
+ ],
+ "מקדמים": [
+ {
+ "word_nikkud": "מְקַדֵּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7822-mekadem",
+ "gender": "masculine"
+ }
+ ],
+ "מקדם־": [
+ {
+ "word_nikkud": "מְקַדֵּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7822-mekadem",
+ "gender": "masculine"
+ }
+ ],
+ "מקדמי־": [
+ {
+ "word_nikkud": "מְקַדֵּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7822-mekadem",
+ "gender": "masculine"
+ }
+ ],
+ "קידום": [
+ {
+ "word_nikkud": "קִדּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8926-kidum",
+ "gender": "masculine"
+ }
+ ],
+ "קידומים": [
+ {
+ "word_nikkud": "קִדּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8926-kidum",
+ "gender": "masculine"
+ }
+ ],
+ "קידום־": [
+ {
+ "word_nikkud": "קִדּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8926-kidum",
+ "gender": "masculine"
+ }
+ ],
+ "קידומי־": [
+ {
+ "word_nikkud": "קִדּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8926-kidum",
+ "gender": "masculine"
+ }
+ ],
+ "הקדם": [
+ {
+ "word_nikkud": "הֶקְדֵּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7103-hekdem",
+ "gender": "masculine"
+ }
+ ],
+ "הקדם־": [
+ {
+ "word_nikkud": "הֶקְדֵּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7103-hekdem",
+ "gender": "masculine"
+ }
+ ],
+ "קדרות": [
+ {
+ "word_nikkud": "קַדָּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6281-kadarut",
+ "gender": "feminine"
+ }
+ ],
+ "קדרות־": [
+ {
+ "word_nikkud": "קַדָּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6281-kadarut",
+ "gender": "feminine"
+ }
+ ],
+ "קדר": [
+ {
+ "word_nikkud": "קַדָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6280-kadar",
+ "gender": "masculine"
+ }
+ ],
+ "קדרים": [
+ {
+ "word_nikkud": "קַדָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6280-kadar",
+ "gender": "masculine"
+ }
+ ],
+ "קדר־": [
+ {
+ "word_nikkud": "קַדָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6280-kadar",
+ "gender": "masculine"
+ }
+ ],
+ "קדרי־": [
+ {
+ "word_nikkud": "קַדָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6280-kadar",
+ "gender": "masculine"
+ }
+ ],
+ "קידוש": [
+ {
+ "word_nikkud": "קִדּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7549-kidush",
+ "gender": "masculine"
+ }
+ ],
+ "קידושים": [
+ {
+ "word_nikkud": "קִדּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7549-kidush",
+ "gender": "masculine"
+ }
+ ],
+ "קידוש־": [
+ {
+ "word_nikkud": "קִדּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7549-kidush",
+ "gender": "masculine"
+ }
+ ],
+ "קידושי־": [
+ {
+ "word_nikkud": "קִדּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7549-kidush",
+ "gender": "masculine"
+ }
+ ],
+ "מקדש": [
+ {
+ "word_nikkud": "מִקְדָּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2678-mikdash",
+ "gender": "masculine"
+ }
+ ],
+ "מקדשים": [
+ {
+ "word_nikkud": "מִקְדָּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2678-mikdash",
+ "gender": "masculine"
+ }
+ ],
+ "מקדש־": [
+ {
+ "word_nikkud": "מִקְדָּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2678-mikdash",
+ "gender": "masculine"
+ }
+ ],
+ "מקדשי־": [
+ {
+ "word_nikkud": "מִקְדָּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2678-mikdash",
+ "gender": "masculine"
+ }
+ ],
+ "קודש": [
+ {
+ "word_nikkud": "קֹדֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5093-kodesh",
+ "gender": "masculine"
+ }
+ ],
+ "קודשים": [
+ {
+ "word_nikkud": "קֹדֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5093-kodesh",
+ "gender": "masculine"
+ }
+ ],
+ "קודש־": [
+ {
+ "word_nikkud": "קֹדֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5093-kodesh",
+ "gender": "masculine"
+ }
+ ],
+ "קודשי־": [
+ {
+ "word_nikkud": "קֹדֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5093-kodesh",
+ "gender": "masculine"
+ }
+ ],
+ "הקדשה": [
+ {
+ "word_nikkud": "הַקְדָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8095-hakdasha",
+ "gender": "feminine"
+ }
+ ],
+ "הקדשות": [
+ {
+ "word_nikkud": "הַקְדָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8095-hakdasha",
+ "gender": "feminine"
+ }
+ ],
+ "הקדשת־": [
+ {
+ "word_nikkud": "הַקְדָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8095-hakdasha",
+ "gender": "feminine"
+ }
+ ],
+ "הקדשות־": [
+ {
+ "word_nikkud": "הַקְדָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8095-hakdasha",
+ "gender": "feminine"
+ }
+ ],
+ "קהות": [
+ {
+ "word_nikkud": "קֵהוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7063-kehut",
+ "gender": "feminine"
+ }
+ ],
+ "קהות־": [
+ {
+ "word_nikkud": "קֵהוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7063-kehut",
+ "gender": "feminine"
+ }
+ ],
+ "קהלה": [
+ {
+ "word_nikkud": "קְהִלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4142-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קהלות": [
+ {
+ "word_nikkud": "קְהִלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4142-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קהלת־": [
+ {
+ "word_nikkud": "קְהִלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4142-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קהלות־": [
+ {
+ "word_nikkud": "קְהִלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4142-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "התקהלות": [
+ {
+ "word_nikkud": "הִתְקַהֲלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7401-hitkahalut",
+ "gender": "feminine"
+ }
+ ],
+ "התקהלויות": [
+ {
+ "word_nikkud": "הִתְקַהֲלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7401-hitkahalut",
+ "gender": "feminine"
+ }
+ ],
+ "התקהלות־": [
+ {
+ "word_nikkud": "הִתְקַהֲלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7401-hitkahalut",
+ "gender": "feminine"
+ }
+ ],
+ "התקהלויות־": [
+ {
+ "word_nikkud": "הִתְקַהֲלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7401-hitkahalut",
+ "gender": "feminine"
+ }
+ ],
+ "מקהלה": [
+ {
+ "word_nikkud": "מַקְהֵלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3562-makhela",
+ "gender": "feminine"
+ }
+ ],
+ "מקהלות": [
+ {
+ "word_nikkud": "מַקְהֵלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3562-makhela",
+ "gender": "feminine"
+ }
+ ],
+ "מקהלת־": [
+ {
+ "word_nikkud": "מַקְהֵלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3562-makhela",
+ "gender": "feminine"
+ }
+ ],
+ "מקהלות־": [
+ {
+ "word_nikkud": "מַקְהֵלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3562-makhela",
+ "gender": "feminine"
+ }
+ ],
+ "קהל": [
+ {
+ "word_nikkud": "קָהָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4940-kahal",
+ "gender": "masculine"
+ }
+ ],
+ "קהלים": [
+ {
+ "word_nikkud": "קָהָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4940-kahal",
+ "gender": "masculine"
+ }
+ ],
+ "קהל־": [
+ {
+ "word_nikkud": "קָהָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4940-kahal",
+ "gender": "masculine"
+ }
+ ],
+ "קהלי־": [
+ {
+ "word_nikkud": "קָהָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4940-kahal",
+ "gender": "masculine"
+ }
+ ],
+ "קהילה": [
+ {
+ "word_nikkud": "קְהִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7747-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קהילות": [
+ {
+ "word_nikkud": "קְהִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7747-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קהילת־": [
+ {
+ "word_nikkud": "קְהִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7747-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קהילות־": [
+ {
+ "word_nikkud": "קְהִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7747-kehila",
+ "gender": "feminine"
+ }
+ ],
+ "קו": [
+ {
+ "word_nikkud": "קַו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4907-kav",
+ "gender": "masculine"
+ }
+ ],
+ "קווים": [
+ {
+ "word_nikkud": "קַו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4907-kav",
+ "gender": "masculine"
+ }
+ ],
+ "קו־": [
+ {
+ "word_nikkud": "קַו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4907-kav",
+ "gender": "masculine"
+ }
+ ],
+ "קווי־": [
+ {
+ "word_nikkud": "קַו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4907-kav",
+ "gender": "masculine"
+ }
+ ],
+ "קוונטום": [
+ {
+ "word_nikkud": "קְוַנְטוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9293-kvantum",
+ "gender": "masculine"
+ }
+ ],
+ "קוונטה": [
+ {
+ "word_nikkud": "קְוַנְטוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9293-kvantum",
+ "gender": "masculine"
+ }
+ ],
+ "תקווה": [
+ {
+ "word_nikkud": "תִּקְוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4991-tikva",
+ "gender": "feminine"
+ }
+ ],
+ "תקוות": [
+ {
+ "word_nikkud": "תִּקְוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4991-tikva",
+ "gender": "feminine"
+ }
+ ],
+ "תקוות־": [
+ {
+ "word_nikkud": "תִּקְוָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4991-tikva",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תִּקְוָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4991-tikva",
+ "gender": "feminine"
+ }
+ ],
+ "מקווה": [
+ {
+ "word_nikkud": "מִקְוֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9044-mikve",
+ "gender": "masculine"
+ }
+ ],
+ "מקווים": [
+ {
+ "word_nikkud": "מִקְוֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9044-mikve",
+ "gender": "masculine"
+ }
+ ],
+ "מקווה־": [
+ {
+ "word_nikkud": "מִקְוֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9044-mikve",
+ "gender": "masculine"
+ }
+ ],
+ "מקווי־": [
+ {
+ "word_nikkud": "מִקְוֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9044-mikve",
+ "gender": "masculine"
+ }
+ ],
+ "קול": [
+ {
+ "word_nikkud": "קוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4164-kol",
+ "gender": "masculine"
+ }
+ ],
+ "קולות": [
+ {
+ "word_nikkud": "קוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4164-kol",
+ "gender": "masculine"
+ }
+ ],
+ "קול־": [
+ {
+ "word_nikkud": "קוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4164-kol",
+ "gender": "masculine"
+ }
+ ],
+ "קולות־": [
+ {
+ "word_nikkud": "קוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4164-kol",
+ "gender": "masculine"
+ }
+ ],
+ "קולב": [
+ {
+ "word_nikkud": "קוֹלָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8028-kolav",
+ "gender": ""
+ }
+ ],
+ "קולבים": [
+ {
+ "word_nikkud": "קוֹלָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8028-kolav",
+ "gender": ""
+ }
+ ],
+ "קולב־": [
+ {
+ "word_nikkud": "קוֹלָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8028-kolav",
+ "gender": ""
+ }
+ ],
+ "קולבי־": [
+ {
+ "word_nikkud": "קוֹלָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8028-kolav",
+ "gender": ""
+ }
+ ],
+ "קולנוע": [
+ {
+ "word_nikkud": "קוֹלְנוֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5245-kolnoa",
+ "gender": "masculine"
+ }
+ ],
+ "קולנוע־": [
+ {
+ "word_nikkud": "קוֹלְנוֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5245-kolnoa",
+ "gender": "masculine"
+ }
+ ],
+ "תקומה": [
+ {
+ "word_nikkud": "תְּקוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3743-tkuma",
+ "gender": "feminine"
+ }
+ ],
+ "תקומות": [
+ {
+ "word_nikkud": "תְּקוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3743-tkuma",
+ "gender": "feminine"
+ }
+ ],
+ "תקומת־": [
+ {
+ "word_nikkud": "תְּקוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3743-tkuma",
+ "gender": "feminine"
+ }
+ ],
+ "תקומות־": [
+ {
+ "word_nikkud": "תְּקוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3743-tkuma",
+ "gender": "feminine"
+ }
+ ],
+ "יקום": [
+ {
+ "word_nikkud": "יְקוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4150-yekum",
+ "gender": "masculine"
+ }
+ ],
+ "יקום־": [
+ {
+ "word_nikkud": "יְקוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4150-yekum",
+ "gender": "masculine"
+ }
+ ],
+ "התקוממות": [
+ {
+ "word_nikkud": "הִתְקוֹמְמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9191-hitkomemut",
+ "gender": "feminine"
+ }
+ ],
+ "התקוממויות": [
+ {
+ "word_nikkud": "הִתְקוֹמְמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9191-hitkomemut",
+ "gender": "feminine"
+ }
+ ],
+ "התקוממות־": [
+ {
+ "word_nikkud": "הִתְקוֹמְמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9191-hitkomemut",
+ "gender": "feminine"
+ }
+ ],
+ "התקוממויות־": [
+ {
+ "word_nikkud": "הִתְקוֹמְמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9191-hitkomemut",
+ "gender": "feminine"
+ }
+ ],
+ "הקמה": [
+ {
+ "word_nikkud": "הֲקָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6253-hakama",
+ "gender": "feminine"
+ }
+ ],
+ "הקמות": [
+ {
+ "word_nikkud": "הֲקָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6253-hakama",
+ "gender": "feminine"
+ }
+ ],
+ "הקמת־": [
+ {
+ "word_nikkud": "הֲקָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6253-hakama",
+ "gender": "feminine"
+ }
+ ],
+ "הקמות־": [
+ {
+ "word_nikkud": "הֲקָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6253-hakama",
+ "gender": "feminine"
+ }
+ ],
+ "מקים": [
+ {
+ "word_nikkud": "מֵקִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6338-mekim",
+ "gender": "masculine"
+ }
+ ],
+ "מקימים": [
+ {
+ "word_nikkud": "מֵקִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6338-mekim",
+ "gender": "masculine"
+ }
+ ],
+ "מקים־": [
+ {
+ "word_nikkud": "מֵקִים",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6338-mekim",
+ "gender": "masculine"
+ }
+ ],
+ "מקימי־": [
+ {
+ "word_nikkud": "מֵקִים",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6338-mekim",
+ "gender": "masculine"
+ }
+ ],
+ "קומה": [
+ {
+ "word_nikkud": "קוֹמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6465-koma",
+ "gender": "feminine"
+ }
+ ],
+ "קומות": [
+ {
+ "word_nikkud": "קוֹמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6465-koma",
+ "gender": "feminine"
+ }
+ ],
+ "קומת־": [
+ {
+ "word_nikkud": "קוֹמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6465-koma",
+ "gender": "feminine"
+ }
+ ],
+ "קומות־": [
+ {
+ "word_nikkud": "קוֹמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6465-koma",
+ "gender": "feminine"
+ }
+ ],
+ "קומוניסט": [
+ {
+ "word_nikkud": "קוֹמוּנִיסְט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6008-komunist",
+ "gender": "masculine"
+ }
+ ],
+ "קומוניסטים": [
+ {
+ "word_nikkud": "קוֹמוּנִיסְט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6008-komunist",
+ "gender": "masculine"
+ }
+ ],
+ "קומוניסט־": [
+ {
+ "word_nikkud": "קוֹמוּנִיסְט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6008-komunist",
+ "gender": "masculine"
+ }
+ ],
+ "קומוניסטי־": [
+ {
+ "word_nikkud": "קוֹמוּנִיסְט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6008-komunist",
+ "gender": "masculine"
+ }
+ ],
+ "קומקום": [
+ {
+ "word_nikkud": "קוּמְקוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6814-kumkum",
+ "gender": ""
+ }
+ ],
+ "קומקומים": [
+ {
+ "word_nikkud": "קוּמְקוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6814-kumkum",
+ "gender": ""
+ }
+ ],
+ "קומקום־": [
+ {
+ "word_nikkud": "קוּמְקוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6814-kumkum",
+ "gender": ""
+ }
+ ],
+ "קומקומי־": [
+ {
+ "word_nikkud": "קוּמְקוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6814-kumkum",
+ "gender": ""
+ }
+ ],
+ "קינה": [
+ {
+ "word_nikkud": "קִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5659-kina",
+ "gender": "feminine"
+ }
+ ],
+ "קינות": [
+ {
+ "word_nikkud": "קִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5659-kina",
+ "gender": "feminine"
+ }
+ ],
+ "קינת־": [
+ {
+ "word_nikkud": "קִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5659-kina",
+ "gender": "feminine"
+ }
+ ],
+ "קינות־": [
+ {
+ "word_nikkud": "קִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5659-kina",
+ "gender": "feminine"
+ }
+ ],
+ "תקופה": [
+ {
+ "word_nikkud": "תְּקוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6388-tkufa",
+ "gender": "feminine"
+ }
+ ],
+ "תקופות": [
+ {
+ "word_nikkud": "תְּקוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6388-tkufa",
+ "gender": "feminine"
+ }
+ ],
+ "תקופת־": [
+ {
+ "word_nikkud": "תְּקוּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6388-tkufa",
+ "gender": "feminine"
+ }
+ ],
+ "תקופות־": [
+ {
+ "word_nikkud": "תְּקוּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6388-tkufa",
+ "gender": "feminine"
+ }
+ ],
+ "קוף": [
+ {
+ "word_nikkud": "קוֹף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6595-kof",
+ "gender": "masculine"
+ }
+ ],
+ "קופים": [
+ {
+ "word_nikkud": "קוֹף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6595-kof",
+ "gender": "masculine"
+ }
+ ],
+ "קוף־": [
+ {
+ "word_nikkud": "קוֹף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6595-kof",
+ "gender": "masculine"
+ }
+ ],
+ "קופי־": [
+ {
+ "word_nikkud": "קוֹף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6595-kof",
+ "gender": "masculine"
+ }
+ ],
+ "קופאי": [
+ {
+ "word_nikkud": "קֻפַּאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6472-kupay",
+ "gender": "masculine"
+ }
+ ],
+ "קופאים": [
+ {
+ "word_nikkud": "קֻפַּאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6472-kupay",
+ "gender": "masculine"
+ }
+ ],
+ "קופאי־": [
+ {
+ "word_nikkud": "קֻפַּאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6472-kupay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קֻפַּאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6472-kupay",
+ "gender": "masculine"
+ }
+ ],
+ "קפה": [
+ {
+ "word_nikkud": "קָפֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5319-kafe",
+ "gender": ""
+ }
+ ],
+ "קופסה": [
+ {
+ "word_nikkud": "קֻפְסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5133-kufsa",
+ "gender": "feminine"
+ }
+ ],
+ "קופסא": [
+ {
+ "word_nikkud": "קֻפְסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5133-kufsa",
+ "gender": "feminine"
+ }
+ ],
+ "קופסאות": [
+ {
+ "word_nikkud": "קֻפְסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5133-kufsa",
+ "gender": "feminine"
+ }
+ ],
+ "קופסת־": [
+ {
+ "word_nikkud": "קֻפְסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5133-kufsa",
+ "gender": "feminine"
+ }
+ ],
+ "קופסות־": [
+ {
+ "word_nikkud": "קֻפְסָה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5133-kufsa",
+ "gender": "feminine"
+ }
+ ],
+ "קוץ": [
+ {
+ "word_nikkud": "קוֹץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8654-kotz",
+ "gender": ""
+ }
+ ],
+ "קוצים": [
+ {
+ "word_nikkud": "קוֹץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8654-kotz",
+ "gender": ""
+ }
+ ],
+ "קוץ־": [
+ {
+ "word_nikkud": "קוֹץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8654-kotz",
+ "gender": ""
+ }
+ ],
+ "קוצי־": [
+ {
+ "word_nikkud": "קוֹץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8654-kotz",
+ "gender": ""
+ }
+ ],
+ "קוצר ראייה": [
+ {
+ "word_nikkud": "קֹצֶר רְאִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7830-kotzer-reiya",
+ "gender": ""
+ }
+ ],
+ "מקוריות": [
+ {
+ "word_nikkud": "מְקוֹרִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8889-mekoriyut",
+ "gender": "feminine"
+ }
+ ],
+ "מקוריויות": [
+ {
+ "word_nikkud": "מְקוֹרִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8889-mekoriyut",
+ "gender": "feminine"
+ }
+ ],
+ "מקוריות־": [
+ {
+ "word_nikkud": "מְקוֹרִיּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8889-mekoriyut",
+ "gender": "feminine"
+ }
+ ],
+ "מקוריויות־": [
+ {
+ "word_nikkud": "מְקוֹרִיּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8889-mekoriyut",
+ "gender": "feminine"
+ }
+ ],
+ "קיזוז": [
+ {
+ "word_nikkud": "קִזּוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9252-kizuz",
+ "gender": "masculine"
+ }
+ ],
+ "קיזוזים": [
+ {
+ "word_nikkud": "קִזּוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9252-kizuz",
+ "gender": "masculine"
+ }
+ ],
+ "קיזוז־": [
+ {
+ "word_nikkud": "קִזּוּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9252-kizuz",
+ "gender": "masculine"
+ }
+ ],
+ "קיזוזי־": [
+ {
+ "word_nikkud": "קִזּוּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9252-kizuz",
+ "gender": "masculine"
+ }
+ ],
+ "קוטב": [
+ {
+ "word_nikkud": "קֹטֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7825-kotev",
+ "gender": "masculine"
+ }
+ ],
+ "קטבים": [
+ {
+ "word_nikkud": "קֹטֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7825-kotev",
+ "gender": "masculine"
+ }
+ ],
+ "קוטב־": [
+ {
+ "word_nikkud": "קֹטֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7825-kotev",
+ "gender": "masculine"
+ }
+ ],
+ "קטבי־": [
+ {
+ "word_nikkud": "קֹטֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7825-kotev",
+ "gender": "masculine"
+ }
+ ],
+ "קיטוב": [
+ {
+ "word_nikkud": "קִטּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9229-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "קיטובים": [
+ {
+ "word_nikkud": "קִטּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9229-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "קיטוב־": [
+ {
+ "word_nikkud": "קִטּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9229-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "קיטובי־": [
+ {
+ "word_nikkud": "קִטּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9229-kituv",
+ "gender": "masculine"
+ }
+ ],
+ "קטע": [
+ {
+ "word_nikkud": "קֶטַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6093-keta",
+ "gender": "masculine"
+ }
+ ],
+ "קטעים": [
+ {
+ "word_nikkud": "קֶטַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6093-keta",
+ "gender": "masculine"
+ }
+ ],
+ "קטע־": [
+ {
+ "word_nikkud": "קֶטַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6093-keta",
+ "gender": "masculine"
+ }
+ ],
+ "קטעי־": [
+ {
+ "word_nikkud": "קֶטַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6093-keta",
+ "gender": "masculine"
+ }
+ ],
+ "קטיפה": [
+ {
+ "word_nikkud": "קְטִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3918-ktifa",
+ "gender": "feminine"
+ }
+ ],
+ "קטיפות": [
+ {
+ "word_nikkud": "קְטִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3918-ktifa",
+ "gender": "feminine"
+ }
+ ],
+ "קטיפת־": [
+ {
+ "word_nikkud": "קְטִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3918-ktifa",
+ "gender": "feminine"
+ }
+ ],
+ "קטיפות־": [
+ {
+ "word_nikkud": "קְטִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3918-ktifa",
+ "gender": "feminine"
+ }
+ ],
+ "קטר": [
+ {
+ "word_nikkud": "קַטָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3362-katar",
+ "gender": "masculine"
+ }
+ ],
+ "קטרים": [
+ {
+ "word_nikkud": "קַטָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3362-katar",
+ "gender": "masculine"
+ }
+ ],
+ "קטר־": [
+ {
+ "word_nikkud": "קַטָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3362-katar",
+ "gender": "masculine"
+ }
+ ],
+ "קטרי־": [
+ {
+ "word_nikkud": "קַטָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3362-katar",
+ "gender": "masculine"
+ }
+ ],
+ "קיטור": [
+ {
+ "word_nikkud": "קִיטוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4763-kitor",
+ "gender": ""
+ }
+ ],
+ "קיטור־": [
+ {
+ "word_nikkud": "קִיטוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4763-kitor",
+ "gender": ""
+ }
+ ],
+ "מקטרת": [
+ {
+ "word_nikkud": "מִקְטֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9237-mikteret",
+ "gender": "feminine"
+ }
+ ],
+ "מקטרות": [
+ {
+ "word_nikkud": "מִקְטֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9237-mikteret",
+ "gender": "feminine"
+ }
+ ],
+ "מקטרת־": [
+ {
+ "word_nikkud": "מִקְטֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9237-mikteret",
+ "gender": "feminine"
+ }
+ ],
+ "מקטרות־": [
+ {
+ "word_nikkud": "מִקְטֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9237-mikteret",
+ "gender": "feminine"
+ }
+ ],
+ "קיבה": [
+ {
+ "word_nikkud": "קֵבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6129-keiva",
+ "gender": "feminine"
+ }
+ ],
+ "קיבות": [
+ {
+ "word_nikkud": "קֵבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6129-keiva",
+ "gender": "feminine"
+ }
+ ],
+ "קיבת־": [
+ {
+ "word_nikkud": "קֵבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6129-keiva",
+ "gender": "feminine"
+ }
+ ],
+ "קיבות־": [
+ {
+ "word_nikkud": "קֵבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6129-keiva",
+ "gender": "feminine"
+ }
+ ],
+ "קייטנה": [
+ {
+ "word_nikkud": "קַיְטָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8490-kaytana",
+ "gender": "feminine"
+ }
+ ],
+ "קייטנות": [
+ {
+ "word_nikkud": "קַיְטָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8490-kaytana",
+ "gender": "feminine"
+ }
+ ],
+ "קייטנת־": [
+ {
+ "word_nikkud": "קַיְטָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8490-kaytana",
+ "gender": "feminine"
+ }
+ ],
+ "קייטנות־": [
+ {
+ "word_nikkud": "קַיְטָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8490-kaytana",
+ "gender": "feminine"
+ }
+ ],
+ "קיום": [
+ {
+ "word_nikkud": "קִיּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6044-kiyum",
+ "gender": "masculine"
+ }
+ ],
+ "קיומים": [
+ {
+ "word_nikkud": "קִיּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6044-kiyum",
+ "gender": "masculine"
+ }
+ ],
+ "קיום־": [
+ {
+ "word_nikkud": "קִיּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6044-kiyum",
+ "gender": "masculine"
+ }
+ ],
+ "קיומי־": [
+ {
+ "word_nikkud": "קִיּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6044-kiyum",
+ "gender": "masculine"
+ }
+ ],
+ "קין": [
+ {
+ "word_nikkud": "קַיִן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7451-kayin",
+ "gender": "masculine"
+ }
+ ],
+ "קינים": [
+ {
+ "word_nikkud": "קַיִן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7451-kayin",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7884-ken",
+ "gender": "masculine"
+ }
+ ],
+ "קין־": [
+ {
+ "word_nikkud": "קַיִן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7451-kayin",
+ "gender": "masculine"
+ }
+ ],
+ "קיני־": [
+ {
+ "word_nikkud": "קַיִן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7451-kayin",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7884-ken",
+ "gender": "masculine"
+ }
+ ],
+ "קינמון": [
+ {
+ "word_nikkud": "קִנָמוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5201-kinamon",
+ "gender": "masculine"
+ }
+ ],
+ "קינמונים": [
+ {
+ "word_nikkud": "קִנָמוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5201-kinamon",
+ "gender": "masculine"
+ }
+ ],
+ "קינמון־": [
+ {
+ "word_nikkud": "קִנָמוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5201-kinamon",
+ "gender": "masculine"
+ }
+ ],
+ "קינמוני־": [
+ {
+ "word_nikkud": "קִנָמוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5201-kinamon",
+ "gender": "masculine"
+ }
+ ],
+ "קיץ": [
+ {
+ "word_nikkud": "קַיִץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5146-kayitz",
+ "gender": "masculine"
+ }
+ ],
+ "קיצים": [
+ {
+ "word_nikkud": "קַיִץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5146-kayitz",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קֵץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8258-ketz",
+ "gender": "masculine"
+ }
+ ],
+ "קיץ־": [
+ {
+ "word_nikkud": "קַיִץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5146-kayitz",
+ "gender": "masculine"
+ }
+ ],
+ "קיצי־": [
+ {
+ "word_nikkud": "קַיִץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5146-kayitz",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קֵץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8258-ketz",
+ "gender": "masculine"
+ }
+ ],
+ "קיקיון": [
+ {
+ "word_nikkud": "קִיקָיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8141-kikayon",
+ "gender": "masculine"
+ }
+ ],
+ "קיקיונים": [
+ {
+ "word_nikkud": "קִיקָיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8141-kikayon",
+ "gender": "masculine"
+ }
+ ],
+ "קיקיון־": [
+ {
+ "word_nikkud": "קִיקָיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8141-kikayon",
+ "gender": "masculine"
+ }
+ ],
+ "קיקיוני־": [
+ {
+ "word_nikkud": "קִיקָיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8141-kikayon",
+ "gender": "masculine"
+ }
+ ],
+ "קיר": [
+ {
+ "word_nikkud": "קִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3397-kir",
+ "gender": "masculine"
+ }
+ ],
+ "קירות": [
+ {
+ "word_nikkud": "קִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3397-kir",
+ "gender": "masculine"
+ }
+ ],
+ "קיר־": [
+ {
+ "word_nikkud": "קִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3397-kir",
+ "gender": "masculine"
+ }
+ ],
+ "קירות־": [
+ {
+ "word_nikkud": "קִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3397-kir",
+ "gender": "masculine"
+ }
+ ],
+ "קלדנות": [
+ {
+ "word_nikkud": "קַלְדָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7746-kaldanut",
+ "gender": "feminine"
+ }
+ ],
+ "קלדנות־": [
+ {
+ "word_nikkud": "קַלְדָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7746-kaldanut",
+ "gender": "feminine"
+ }
+ ],
+ "הקלדה": [
+ {
+ "word_nikkud": "הַקְלָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2904-haklada",
+ "gender": "feminine"
+ }
+ ],
+ "הקלדת־": [
+ {
+ "word_nikkud": "הַקְלָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2904-haklada",
+ "gender": "feminine"
+ }
+ ],
+ "מקלדת": [
+ {
+ "word_nikkud": "מִקְלֶדֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3277-mikledet",
+ "gender": "feminine"
+ }
+ ],
+ "מקלדות": [
+ {
+ "word_nikkud": "מִקְלֶדֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3277-mikledet",
+ "gender": "feminine"
+ }
+ ],
+ "מקלדת־": [
+ {
+ "word_nikkud": "מִקְלֶדֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3277-mikledet",
+ "gender": "feminine"
+ }
+ ],
+ "מקלדות־": [
+ {
+ "word_nikkud": "מִקְלֶדֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3277-mikledet",
+ "gender": "feminine"
+ }
+ ],
+ "קלדן": [
+ {
+ "word_nikkud": "קַלְדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7745-kaldan",
+ "gender": "masculine"
+ }
+ ],
+ "קלדנים": [
+ {
+ "word_nikkud": "קַלְדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7745-kaldan",
+ "gender": "masculine"
+ }
+ ],
+ "קלדן־": [
+ {
+ "word_nikkud": "קַלְדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7745-kaldan",
+ "gender": "masculine"
+ }
+ ],
+ "קלדני־": [
+ {
+ "word_nikkud": "קַלְדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7745-kaldan",
+ "gender": "masculine"
+ }
+ ],
+ "קליד": [
+ {
+ "word_nikkud": "קְלִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7275-klid",
+ "gender": "masculine"
+ }
+ ],
+ "קלידים": [
+ {
+ "word_nikkud": "קְלִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7275-klid",
+ "gender": "masculine"
+ }
+ ],
+ "קליד־": [
+ {
+ "word_nikkud": "קְלִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7275-klid",
+ "gender": "masculine"
+ }
+ ],
+ "קלידי־": [
+ {
+ "word_nikkud": "קְלִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7275-klid",
+ "gender": "masculine"
+ }
+ ],
+ "מקלחת": [
+ {
+ "word_nikkud": "מִקְלַחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5140-miklachat",
+ "gender": "feminine"
+ }
+ ],
+ "מקלחות": [
+ {
+ "word_nikkud": "מִקְלַחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5140-miklachat",
+ "gender": "feminine"
+ }
+ ],
+ "מקלחת־": [
+ {
+ "word_nikkud": "מִקְלַחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5140-miklachat",
+ "gender": "feminine"
+ }
+ ],
+ "מקלחות־": [
+ {
+ "word_nikkud": "מִקְלַחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5140-miklachat",
+ "gender": "feminine"
+ }
+ ],
+ "קילוח": [
+ {
+ "word_nikkud": "קִלּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8218-kiluach",
+ "gender": "masculine"
+ }
+ ],
+ "קילוחים": [
+ {
+ "word_nikkud": "קִלּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8218-kiluach",
+ "gender": "masculine"
+ }
+ ],
+ "קילוח־": [
+ {
+ "word_nikkud": "קִלּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8218-kiluach",
+ "gender": "masculine"
+ }
+ ],
+ "קילוחי־": [
+ {
+ "word_nikkud": "קִלּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8218-kiluach",
+ "gender": "masculine"
+ }
+ ],
+ "קליטה": [
+ {
+ "word_nikkud": "קְלִיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6333-klita",
+ "gender": "feminine"
+ }
+ ],
+ "קליטות": [
+ {
+ "word_nikkud": "קְלִיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6333-klita",
+ "gender": "feminine"
+ }
+ ],
+ "קליטת־": [
+ {
+ "word_nikkud": "קְלִיטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6333-klita",
+ "gender": "feminine"
+ }
+ ],
+ "קליטות־": [
+ {
+ "word_nikkud": "קְלִיטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6333-klita",
+ "gender": "feminine"
+ }
+ ],
+ "מקלט": [
+ {
+ "word_nikkud": "מַקְלֵט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3514-maklet",
+ "gender": "masculine"
+ }
+ ],
+ "מקלטים": [
+ {
+ "word_nikkud": "מַקְלֵט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3514-maklet",
+ "gender": "masculine"
+ }
+ ],
+ "מקלט־": [
+ {
+ "word_nikkud": "מַקְלֵט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3514-maklet",
+ "gender": "masculine"
+ }
+ ],
+ "מקלטי־": [
+ {
+ "word_nikkud": "מַקְלֵט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3514-maklet",
+ "gender": "masculine"
+ }
+ ],
+ "הקלטה": [
+ {
+ "word_nikkud": "הַקְלָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2905-haklata",
+ "gender": "feminine"
+ }
+ ],
+ "הקלטת־": [
+ {
+ "word_nikkud": "הַקְלָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2905-haklata",
+ "gender": "feminine"
+ }
+ ],
+ "היקלטות": [
+ {
+ "word_nikkud": "הִקָּלְטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2870-hikaltut",
+ "gender": "feminine"
+ }
+ ],
+ "היקלטות־": [
+ {
+ "word_nikkud": "הִקָּלְטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2870-hikaltut",
+ "gender": "feminine"
+ }
+ ],
+ "קלטת": [
+ {
+ "word_nikkud": "קַלֶּטֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3298-kaletet",
+ "gender": "feminine"
+ }
+ ],
+ "קלטות": [
+ {
+ "word_nikkud": "קַלֶּטֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3298-kaletet",
+ "gender": "feminine"
+ }
+ ],
+ "קלטת־": [
+ {
+ "word_nikkud": "קַלֶּטֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3298-kaletet",
+ "gender": "feminine"
+ }
+ ],
+ "קלטות־": [
+ {
+ "word_nikkud": "קַלֶּטֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3298-kaletet",
+ "gender": "feminine"
+ }
+ ],
+ "תקליט": [
+ {
+ "word_nikkud": "תַּקְלִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3615-taklit",
+ "gender": "masculine"
+ }
+ ],
+ "תקליטים": [
+ {
+ "word_nikkud": "תַּקְלִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3615-taklit",
+ "gender": "masculine"
+ }
+ ],
+ "תקליט־": [
+ {
+ "word_nikkud": "תַּקְלִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3615-taklit",
+ "gender": "masculine"
+ }
+ ],
+ "תקליטי־": [
+ {
+ "word_nikkud": "תַּקְלִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3615-taklit",
+ "gender": "masculine"
+ }
+ ],
+ "קלט": [
+ {
+ "word_nikkud": "קֶלֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6485-kelet",
+ "gender": "masculine"
+ }
+ ],
+ "קלטים": [
+ {
+ "word_nikkud": "קֶלֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6485-kelet",
+ "gender": "masculine"
+ }
+ ],
+ "קלט־": [
+ {
+ "word_nikkud": "קֶלֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6485-kelet",
+ "gender": "masculine"
+ }
+ ],
+ "קלטי־": [
+ {
+ "word_nikkud": "קֶלֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6485-kelet",
+ "gender": "masculine"
+ }
+ ],
+ "קלון": [
+ {
+ "word_nikkud": "קָלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3781-kalon",
+ "gender": "masculine"
+ }
+ ],
+ "קלונות": [
+ {
+ "word_nikkud": "קָלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3781-kalon",
+ "gender": "masculine"
+ }
+ ],
+ "קלון־": [
+ {
+ "word_nikkud": "קָלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3781-kalon",
+ "gender": "masculine"
+ }
+ ],
+ "קלונות־": [
+ {
+ "word_nikkud": "קָלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3781-kalon",
+ "gender": "masculine"
+ }
+ ],
+ "קלות": [
+ {
+ "word_nikkud": "קַלּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5924-kalut",
+ "gender": "feminine"
+ }
+ ],
+ "קלות־": [
+ {
+ "word_nikkud": "קַלּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5924-kalut",
+ "gender": "feminine"
+ }
+ ],
+ "קללה": [
+ {
+ "word_nikkud": "קְלָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2860-klala",
+ "gender": "feminine"
+ }
+ ],
+ "קללות": [
+ {
+ "word_nikkud": "קְלָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2860-klala",
+ "gender": "feminine"
+ }
+ ],
+ "קללת־": [
+ {
+ "word_nikkud": "קְלָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2860-klala",
+ "gender": "feminine"
+ }
+ ],
+ "קללות־": [
+ {
+ "word_nikkud": "קְלָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2860-klala",
+ "gender": "feminine"
+ }
+ ],
+ "הקלה": [
+ {
+ "word_nikkud": "הֲקַלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7981-hakala",
+ "gender": "feminine"
+ }
+ ],
+ "הקלות": [
+ {
+ "word_nikkud": "הֲקַלָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7981-hakala",
+ "gender": "feminine"
+ }
+ ],
+ "הקלת־": [
+ {
+ "word_nikkud": "הֲקַלָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7981-hakala",
+ "gender": "feminine"
+ }
+ ],
+ "הקלות־": [
+ {
+ "word_nikkud": "הֲקַלָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7981-hakala",
+ "gender": "feminine"
+ }
+ ],
+ "קלמר": [
+ {
+ "word_nikkud": "קַלְמָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7407-kalmar",
+ "gender": ""
+ }
+ ],
+ "קלמרים": [
+ {
+ "word_nikkud": "קַלְמָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7407-kalmar",
+ "gender": ""
+ }
+ ],
+ "קלמר־": [
+ {
+ "word_nikkud": "קַלְמָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7407-kalmar",
+ "gender": ""
+ }
+ ],
+ "קלמרי־": [
+ {
+ "word_nikkud": "קַלְמָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7407-kalmar",
+ "gender": ""
+ }
+ ],
+ "קלע": [
+ {
+ "word_nikkud": "קָלָע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3853-kala",
+ "gender": "masculine"
+ }
+ ],
+ "קלעים": [
+ {
+ "word_nikkud": "קָלָע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3853-kala",
+ "gender": "masculine"
+ }
+ ],
+ "קלע־": [
+ {
+ "word_nikkud": "קָלָע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3853-kala",
+ "gender": "masculine"
+ }
+ ],
+ "קלעי־": [
+ {
+ "word_nikkud": "קָלָע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3853-kala",
+ "gender": "masculine"
+ }
+ ],
+ "מקלע": [
+ {
+ "word_nikkud": "מַקְלֵעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3854-maklea",
+ "gender": "masculine"
+ }
+ ],
+ "מקלעים": [
+ {
+ "word_nikkud": "מַקְלֵעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3854-maklea",
+ "gender": "masculine"
+ }
+ ],
+ "מקלע־": [
+ {
+ "word_nikkud": "מַקְלֵעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3854-maklea",
+ "gender": "masculine"
+ }
+ ],
+ "מקלעי־": [
+ {
+ "word_nikkud": "מַקְלֵעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3854-maklea",
+ "gender": "masculine"
+ }
+ ],
+ "קליע": [
+ {
+ "word_nikkud": "קָלִיעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4596-kalia",
+ "gender": "masculine"
+ }
+ ],
+ "קליעים": [
+ {
+ "word_nikkud": "קָלִיעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4596-kalia",
+ "gender": "masculine"
+ }
+ ],
+ "קליע־": [
+ {
+ "word_nikkud": "קָלִיעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4596-kalia",
+ "gender": "masculine"
+ }
+ ],
+ "קליעי־": [
+ {
+ "word_nikkud": "קָלִיעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4596-kalia",
+ "gender": "masculine"
+ }
+ ],
+ "קליעה": [
+ {
+ "word_nikkud": "קְלִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8220-klia",
+ "gender": "feminine"
+ }
+ ],
+ "קליעות": [
+ {
+ "word_nikkud": "קְלִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8220-klia",
+ "gender": "feminine"
+ }
+ ],
+ "קליעת־": [
+ {
+ "word_nikkud": "קְלִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8220-klia",
+ "gender": "feminine"
+ }
+ ],
+ "קליעות־": [
+ {
+ "word_nikkud": "קְלִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8220-klia",
+ "gender": "feminine"
+ }
+ ],
+ "קלף": [
+ {
+ "word_nikkud": "קְלָף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6762-klaf",
+ "gender": "masculine"
+ }
+ ],
+ "קלפים": [
+ {
+ "word_nikkud": "קְלָף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6762-klaf",
+ "gender": "masculine"
+ }
+ ],
+ "קלף־": [
+ {
+ "word_nikkud": "קְלָף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6762-klaf",
+ "gender": "masculine"
+ }
+ ],
+ "קלפי־": [
+ {
+ "word_nikkud": "קְלָף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6762-klaf",
+ "gender": "masculine"
+ }
+ ],
+ "קלפה": [
+ {
+ "word_nikkud": "קְלִפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6865-klipa",
+ "gender": "feminine"
+ }
+ ],
+ "קלפות": [
+ {
+ "word_nikkud": "קְלִפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6865-klipa",
+ "gender": "feminine"
+ }
+ ],
+ "קלפת־": [
+ {
+ "word_nikkud": "קְלִפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6865-klipa",
+ "gender": "feminine"
+ }
+ ],
+ "קלפות־": [
+ {
+ "word_nikkud": "קְלִפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6865-klipa",
+ "gender": "feminine"
+ }
+ ],
+ "קלקול": [
+ {
+ "word_nikkud": "קִלְקוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7207-kilkul",
+ "gender": "masculine"
+ }
+ ],
+ "קלקולים": [
+ {
+ "word_nikkud": "קִלְקוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7207-kilkul",
+ "gender": "masculine"
+ }
+ ],
+ "קלקול־": [
+ {
+ "word_nikkud": "קִלְקוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7207-kilkul",
+ "gender": "masculine"
+ }
+ ],
+ "קלקולי־": [
+ {
+ "word_nikkud": "קִלְקוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7207-kilkul",
+ "gender": "masculine"
+ }
+ ],
+ "קלשון": [
+ {
+ "word_nikkud": "קִלְשׁוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4132-kilshon",
+ "gender": "masculine"
+ }
+ ],
+ "קלשונות": [
+ {
+ "word_nikkud": "קִלְשׁוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4132-kilshon",
+ "gender": "masculine"
+ }
+ ],
+ "קלשונים": [
+ {
+ "word_nikkud": "קִלְשׁוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4132-kilshon",
+ "gender": "masculine"
+ }
+ ],
+ "קלשון־": [
+ {
+ "word_nikkud": "קִלְשׁוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4132-kilshon",
+ "gender": "masculine"
+ }
+ ],
+ "קלשונות־": [
+ {
+ "word_nikkud": "קִלְשׁוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4132-kilshon",
+ "gender": "masculine"
+ }
+ ],
+ "קלשוני־": [
+ {
+ "word_nikkud": "קִלְשׁוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4132-kilshon",
+ "gender": "masculine"
+ }
+ ],
+ "קמח": [
+ {
+ "word_nikkud": "קֶמַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5592-kemach",
+ "gender": "masculine"
+ }
+ ],
+ "קמחים": [
+ {
+ "word_nikkud": "קֶמַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5592-kemach",
+ "gender": "masculine"
+ }
+ ],
+ "קמח־": [
+ {
+ "word_nikkud": "קֶמַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5592-kemach",
+ "gender": "masculine"
+ }
+ ],
+ "קמחי־": [
+ {
+ "word_nikkud": "קֶמַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5592-kemach",
+ "gender": "masculine"
+ }
+ ],
+ "קמעונאות": [
+ {
+ "word_nikkud": "קִמְעוֹנָאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8987-kimonaut",
+ "gender": "feminine"
+ }
+ ],
+ "קמעונאות־": [
+ {
+ "word_nikkud": "קִמְעוֹנָאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8987-kimonaut",
+ "gender": "feminine"
+ }
+ ],
+ "קמעונאי": [
+ {
+ "word_nikkud": "קִמְעוֹנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8986-kimonay",
+ "gender": "masculine"
+ }
+ ],
+ "קמעונאים": [
+ {
+ "word_nikkud": "קִמְעוֹנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8986-kimonay",
+ "gender": "masculine"
+ }
+ ],
+ "קמעונאי־": [
+ {
+ "word_nikkud": "קִמְעוֹנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8986-kimonay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קִמְעוֹנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8986-kimonay",
+ "gender": "masculine"
+ }
+ ],
+ "קומץ": [
+ {
+ "word_nikkud": "קֹמֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5055-kometz",
+ "gender": "masculine"
+ }
+ ],
+ "קמצים": [
+ {
+ "word_nikkud": "קֹמֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5055-kometz",
+ "gender": "masculine"
+ }
+ ],
+ "קומץ־": [
+ {
+ "word_nikkud": "קֹמֶץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5055-kometz",
+ "gender": "masculine"
+ }
+ ],
+ "קמצי־": [
+ {
+ "word_nikkud": "קֹמֶץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5055-kometz",
+ "gender": "masculine"
+ }
+ ],
+ "קמירה": [
+ {
+ "word_nikkud": "קְמִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5291-kmira",
+ "gender": "feminine"
+ }
+ ],
+ "קמירות": [
+ {
+ "word_nikkud": "קְמִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5291-kmira",
+ "gender": "feminine"
+ }
+ ],
+ "קמירת־": [
+ {
+ "word_nikkud": "קְמִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5291-kmira",
+ "gender": "feminine"
+ }
+ ],
+ "קמירות־": [
+ {
+ "word_nikkud": "קְמִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5291-kmira",
+ "gender": "feminine"
+ }
+ ],
+ "קמר": [
+ {
+ "word_nikkud": "קֶמֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3048-kemer",
+ "gender": "masculine"
+ }
+ ],
+ "קמרים": [
+ {
+ "word_nikkud": "קֶמֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3048-kemer",
+ "gender": "masculine"
+ }
+ ],
+ "קמר־": [
+ {
+ "word_nikkud": "קֶמֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3048-kemer",
+ "gender": "masculine"
+ }
+ ],
+ "קמרי־": [
+ {
+ "word_nikkud": "קֶמֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3048-kemer",
+ "gender": "masculine"
+ }
+ ],
+ "קמרון": [
+ {
+ "word_nikkud": "קִמְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6700-kimron",
+ "gender": "masculine"
+ }
+ ],
+ "קמרונות": [
+ {
+ "word_nikkud": "קִמְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6700-kimron",
+ "gender": "masculine"
+ }
+ ],
+ "קמרון־": [
+ {
+ "word_nikkud": "קִמְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6700-kimron",
+ "gender": "masculine"
+ }
+ ],
+ "קמרונות־": [
+ {
+ "word_nikkud": "קִמְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6700-kimron",
+ "gender": "masculine"
+ }
+ ],
+ "קנאות": [
+ {
+ "word_nikkud": "קַנָּאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4659-kanaut",
+ "gender": "feminine"
+ }
+ ],
+ "קנאות־": [
+ {
+ "word_nikkud": "קַנָּאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4659-kanaut",
+ "gender": "feminine"
+ }
+ ],
+ "קנאה": [
+ {
+ "word_nikkud": "קִנְאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3221-kina",
+ "gender": "feminine"
+ }
+ ],
+ "קנאת־": [
+ {
+ "word_nikkud": "קִנְאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3221-kina",
+ "gender": "feminine"
+ }
+ ],
+ "קנא": [
+ {
+ "word_nikkud": "קַנָּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4657-kana",
+ "gender": "masculine"
+ }
+ ],
+ "קינוח": [
+ {
+ "word_nikkud": "קִנּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7111-kinuach",
+ "gender": "masculine"
+ }
+ ],
+ "קינוחים": [
+ {
+ "word_nikkud": "קִנּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7111-kinuach",
+ "gender": "masculine"
+ }
+ ],
+ "קינוח־": [
+ {
+ "word_nikkud": "קִנּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7111-kinuach",
+ "gender": "masculine"
+ }
+ ],
+ "קינוחי־": [
+ {
+ "word_nikkud": "קִנּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7111-kinuach",
+ "gender": "masculine"
+ }
+ ],
+ "הקנטה": [
+ {
+ "word_nikkud": "הַקְנָטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2999-haknata",
+ "gender": "feminine"
+ }
+ ],
+ "הקנטות": [
+ {
+ "word_nikkud": "הַקְנָטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2999-haknata",
+ "gender": "feminine"
+ }
+ ],
+ "הקנטת־": [
+ {
+ "word_nikkud": "הַקְנָטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2999-haknata",
+ "gender": "feminine"
+ }
+ ],
+ "הקנטות־": [
+ {
+ "word_nikkud": "הַקְנָטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2999-haknata",
+ "gender": "feminine"
+ }
+ ],
+ "קנייה": [
+ {
+ "word_nikkud": "קְנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4637-kniya",
+ "gender": "feminine"
+ }
+ ],
+ "קניות": [
+ {
+ "word_nikkud": "קְנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4637-kniya",
+ "gender": "feminine"
+ }
+ ],
+ "קניית־": [
+ {
+ "word_nikkud": "קְנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4637-kniya",
+ "gender": "feminine"
+ }
+ ],
+ "קניות־": [
+ {
+ "word_nikkud": "קְנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4637-kniya",
+ "gender": "feminine"
+ }
+ ],
+ "קניין": [
+ {
+ "word_nikkud": "קִנְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8528-kinyan",
+ "gender": ""
+ }
+ ],
+ "קניינים": [
+ {
+ "word_nikkud": "קִנְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8528-kinyan",
+ "gender": ""
+ }
+ ],
+ "קניין־": [
+ {
+ "word_nikkud": "קִנְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8528-kinyan",
+ "gender": ""
+ }
+ ],
+ "קנייני־": [
+ {
+ "word_nikkud": "קִנְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8528-kinyan",
+ "gender": ""
+ }
+ ],
+ "קניון": [
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ }
+ ],
+ "קניונים": [
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ }
+ ],
+ "קניון־": [
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ }
+ ],
+ "קניוני־": [
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "קַנְיוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5992-kanyon",
+ "gender": "masculine"
+ }
+ ],
+ "קן": [
+ {
+ "word_nikkud": "קֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7884-ken",
+ "gender": "masculine"
+ }
+ ],
+ "קן־": [
+ {
+ "word_nikkud": "קֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7884-ken",
+ "gender": "masculine"
+ }
+ ],
+ "קנס": [
+ {
+ "word_nikkud": "קְנָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6727-knas",
+ "gender": "masculine"
+ }
+ ],
+ "קנסות": [
+ {
+ "word_nikkud": "קְנָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6727-knas",
+ "gender": "masculine"
+ }
+ ],
+ "קנס־": [
+ {
+ "word_nikkud": "קְנָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6727-knas",
+ "gender": "masculine"
+ }
+ ],
+ "קנסות־": [
+ {
+ "word_nikkud": "קְנָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6727-knas",
+ "gender": "masculine"
+ }
+ ],
+ "קנקן": [
+ {
+ "word_nikkud": "קַנְקַן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7666-kankan",
+ "gender": ""
+ }
+ ],
+ "קנקנים": [
+ {
+ "word_nikkud": "קַנְקַן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7666-kankan",
+ "gender": ""
+ }
+ ],
+ "קנקן־": [
+ {
+ "word_nikkud": "קַנְקַן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7666-kankan",
+ "gender": ""
+ }
+ ],
+ "קנקני־": [
+ {
+ "word_nikkud": "קַנְקַן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7666-kankan",
+ "gender": ""
+ }
+ ],
+ "קסדה": [
+ {
+ "word_nikkud": "קַסְדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6513-kasda",
+ "gender": "feminine"
+ }
+ ],
+ "קסדות": [
+ {
+ "word_nikkud": "קַסְדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6513-kasda",
+ "gender": "feminine"
+ }
+ ],
+ "קסדת־": [
+ {
+ "word_nikkud": "קַסְדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6513-kasda",
+ "gender": "feminine"
+ }
+ ],
+ "קסדות־": [
+ {
+ "word_nikkud": "קַסְדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6513-kasda",
+ "gender": "feminine"
+ }
+ ],
+ "קסם": [
+ {
+ "word_nikkud": "קֶסֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3174-kesem",
+ "gender": "masculine"
+ }
+ ],
+ "קסמים": [
+ {
+ "word_nikkud": "קֶסֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3174-kesem",
+ "gender": "masculine"
+ }
+ ],
+ "קסם־": [
+ {
+ "word_nikkud": "קֶסֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3174-kesem",
+ "gender": "masculine"
+ }
+ ],
+ "קסמי־": [
+ {
+ "word_nikkud": "קֶסֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3174-kesem",
+ "gender": "masculine"
+ }
+ ],
+ "קעקוע": [
+ {
+ "word_nikkud": "קִעְקוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8841-kiakua",
+ "gender": "masculine"
+ }
+ ],
+ "קעקועים": [
+ {
+ "word_nikkud": "קִעְקוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8841-kiakua",
+ "gender": "masculine"
+ }
+ ],
+ "קעקוע־": [
+ {
+ "word_nikkud": "קִעְקוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8841-kiakua",
+ "gender": "masculine"
+ }
+ ],
+ "קעקועי־": [
+ {
+ "word_nikkud": "קִעְקוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8841-kiakua",
+ "gender": "masculine"
+ }
+ ],
+ "קעירה": [
+ {
+ "word_nikkud": "קְעִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5293-keira",
+ "gender": "feminine"
+ }
+ ],
+ "קעירות": [
+ {
+ "word_nikkud": "קְעִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5293-keira",
+ "gender": "feminine"
+ }
+ ],
+ "קעירת־": [
+ {
+ "word_nikkud": "קְעִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5293-keira",
+ "gender": "feminine"
+ }
+ ],
+ "קעירות־": [
+ {
+ "word_nikkud": "קְעִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5293-keira",
+ "gender": "feminine"
+ }
+ ],
+ "קערה": [
+ {
+ "word_nikkud": "קְעָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3843-keara",
+ "gender": "feminine"
+ }
+ ],
+ "קערות": [
+ {
+ "word_nikkud": "קְעָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3843-keara",
+ "gender": "feminine"
+ }
+ ],
+ "קערת־": [
+ {
+ "word_nikkud": "קְעָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3843-keara",
+ "gender": "feminine"
+ }
+ ],
+ "קערות־": [
+ {
+ "word_nikkud": "קְעָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3843-keara",
+ "gender": "feminine"
+ }
+ ],
+ "הקפאה": [
+ {
+ "word_nikkud": "הַקְפָּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2906-hakpaa",
+ "gender": "feminine"
+ }
+ ],
+ "הקפאת־": [
+ {
+ "word_nikkud": "הַקְפָּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2906-hakpaa",
+ "gender": "feminine"
+ }
+ ],
+ "קיפאון": [
+ {
+ "word_nikkud": "קִפָּאוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4603-kipaon",
+ "gender": "masculine"
+ }
+ ],
+ "קיפאונות": [
+ {
+ "word_nikkud": "קִפָּאוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4603-kipaon",
+ "gender": "masculine"
+ }
+ ],
+ "קיפאון־": [
+ {
+ "word_nikkud": "קִפָּאוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4603-kipaon",
+ "gender": "masculine"
+ }
+ ],
+ "קיפאונות־": [
+ {
+ "word_nikkud": "קִפָּאוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4603-kipaon",
+ "gender": "masculine"
+ }
+ ],
+ "מקפיא": [
+ {
+ "word_nikkud": "מַקְפִּיא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9249-makpi",
+ "gender": "masculine"
+ }
+ ],
+ "מקפיאים": [
+ {
+ "word_nikkud": "מַקְפִּיא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9249-makpi",
+ "gender": "masculine"
+ }
+ ],
+ "מקפיא־": [
+ {
+ "word_nikkud": "מַקְפִּיא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9249-makpi",
+ "gender": "masculine"
+ }
+ ],
+ "מקפיאי־": [
+ {
+ "word_nikkud": "מַקְפִּיא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9249-makpi",
+ "gender": "masculine"
+ }
+ ],
+ "קיפוד": [
+ {
+ "word_nikkud": "קִפּוֹד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8048-kipod",
+ "gender": "masculine"
+ }
+ ],
+ "קיפודים": [
+ {
+ "word_nikkud": "קִפּוֹד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8048-kipod",
+ "gender": "masculine"
+ }
+ ],
+ "קיפוד־": [
+ {
+ "word_nikkud": "קִפּוֹד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8048-kipod",
+ "gender": "masculine"
+ }
+ ],
+ "קיפודי־": [
+ {
+ "word_nikkud": "קִפּוֹד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8048-kipod",
+ "gender": "masculine"
+ }
+ ],
+ "קיפודן": [
+ {
+ "word_nikkud": "קִפּוֹדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8466-kipodan",
+ "gender": "masculine"
+ }
+ ],
+ "קיפודנים": [
+ {
+ "word_nikkud": "קִפּוֹדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8466-kipodan",
+ "gender": "masculine"
+ }
+ ],
+ "קיפודן־": [
+ {
+ "word_nikkud": "קִפּוֹדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8466-kipodan",
+ "gender": "masculine"
+ }
+ ],
+ "קיפודני־": [
+ {
+ "word_nikkud": "קִפּוֹדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8466-kipodan",
+ "gender": "masculine"
+ }
+ ],
+ "קפידה": [
+ {
+ "word_nikkud": "קְפִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9223-kfida",
+ "gender": "feminine"
+ }
+ ],
+ "קפידת־": [
+ {
+ "word_nikkud": "קְפִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9223-kfida",
+ "gender": "feminine"
+ }
+ ],
+ "הקפדה": [
+ {
+ "word_nikkud": "הַקְפָּדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9156-hakpada",
+ "gender": "feminine"
+ }
+ ],
+ "הקפדת־": [
+ {
+ "word_nikkud": "הַקְפָּדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9156-hakpada",
+ "gender": "feminine"
+ }
+ ],
+ "קיפוח": [
+ {
+ "word_nikkud": "קִפּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7584-kipuach",
+ "gender": "masculine"
+ }
+ ],
+ "קיפוחים": [
+ {
+ "word_nikkud": "קִפּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7584-kipuach",
+ "gender": "masculine"
+ }
+ ],
+ "קיפוח־": [
+ {
+ "word_nikkud": "קִפּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7584-kipuach",
+ "gender": "masculine"
+ }
+ ],
+ "קיפוחי־": [
+ {
+ "word_nikkud": "קִפּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7584-kipuach",
+ "gender": "masculine"
+ }
+ ],
+ "קפל": [
+ {
+ "word_nikkud": "קֵפֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8602-kefel",
+ "gender": "masculine"
+ }
+ ],
+ "קפלים": [
+ {
+ "word_nikkud": "קֵפֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8602-kefel",
+ "gender": "masculine"
+ }
+ ],
+ "קפל־": [
+ {
+ "word_nikkud": "קֵפֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8602-kefel",
+ "gender": "masculine"
+ }
+ ],
+ "קפלי־": [
+ {
+ "word_nikkud": "קֵפֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8602-kefel",
+ "gender": "masculine"
+ }
+ ],
+ "קיפול": [
+ {
+ "word_nikkud": "קִפּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5802-kipul",
+ "gender": "masculine"
+ }
+ ],
+ "קיפולים": [
+ {
+ "word_nikkud": "קִפּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5802-kipul",
+ "gender": "masculine"
+ }
+ ],
+ "קיפול־": [
+ {
+ "word_nikkud": "קִפּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5802-kipul",
+ "gender": "masculine"
+ }
+ ],
+ "קיפולי־": [
+ {
+ "word_nikkud": "קִפּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5802-kipul",
+ "gender": "masculine"
+ }
+ ],
+ "קפיץ": [
+ {
+ "word_nikkud": "קְפִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3537-kfitz",
+ "gender": "masculine"
+ }
+ ],
+ "קפיצים": [
+ {
+ "word_nikkud": "קְפִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3537-kfitz",
+ "gender": "masculine"
+ }
+ ],
+ "קפיץ־": [
+ {
+ "word_nikkud": "קְפִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3537-kfitz",
+ "gender": "masculine"
+ }
+ ],
+ "קפיצי־": [
+ {
+ "word_nikkud": "קְפִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3537-kfitz",
+ "gender": "masculine"
+ }
+ ],
+ "קפיצה": [
+ {
+ "word_nikkud": "קְפִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8433-kfitza",
+ "gender": "feminine"
+ }
+ ],
+ "קפיצות": [
+ {
+ "word_nikkud": "קְפִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8433-kfitza",
+ "gender": "feminine"
+ }
+ ],
+ "קפיצת־": [
+ {
+ "word_nikkud": "קְפִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8433-kfitza",
+ "gender": "feminine"
+ }
+ ],
+ "קפיצות־": [
+ {
+ "word_nikkud": "קְפִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8433-kfitza",
+ "gender": "feminine"
+ }
+ ],
+ "קצבה": [
+ {
+ "word_nikkud": "קִצְבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5448-kitzba",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קִצְבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5448-kitzba",
+ "gender": "feminine"
+ }
+ ],
+ "קצבות": [
+ {
+ "word_nikkud": "קִצְבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5448-kitzba",
+ "gender": "feminine"
+ }
+ ],
+ "קצבאות": [
+ {
+ "word_nikkud": "קִצְבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5448-kitzba",
+ "gender": "feminine"
+ }
+ ],
+ "קצבת־": [
+ {
+ "word_nikkud": "קִצְבָּה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5448-kitzba",
+ "gender": "feminine"
+ }
+ ],
+ "קצבות־": [
+ {
+ "word_nikkud": "קִצְבָּה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "5448-kitzba",
+ "gender": "feminine"
+ }
+ ],
+ "קצב": [
+ {
+ "word_nikkud": "קַצָּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3177-katzav",
+ "gender": "masculine"
+ }
+ ],
+ "קצבים": [
+ {
+ "word_nikkud": "קַצָּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3177-katzav",
+ "gender": "masculine"
+ }
+ ],
+ "קצב־": [
+ {
+ "word_nikkud": "קַצָּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3177-katzav",
+ "gender": "masculine"
+ }
+ ],
+ "קצבי־": [
+ {
+ "word_nikkud": "קַצָּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3177-katzav",
+ "gender": "masculine"
+ }
+ ],
+ "תקציב": [
+ {
+ "word_nikkud": "תַּקְצִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3616-taktziv",
+ "gender": "masculine"
+ }
+ ],
+ "תקציבים": [
+ {
+ "word_nikkud": "תַּקְצִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3616-taktziv",
+ "gender": "masculine"
+ }
+ ],
+ "תקציב־": [
+ {
+ "word_nikkud": "תַּקְצִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3616-taktziv",
+ "gender": "masculine"
+ }
+ ],
+ "תקציבי־": [
+ {
+ "word_nikkud": "תַּקְצִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3616-taktziv",
+ "gender": "masculine"
+ }
+ ],
+ "קצה": [
+ {
+ "word_nikkud": "קָצֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7225-katze",
+ "gender": "masculine"
+ }
+ ],
+ "קצוות": [
+ {
+ "word_nikkud": "קָצֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7225-katze",
+ "gender": "masculine"
+ }
+ ],
+ "קצה־": [
+ {
+ "word_nikkud": "קָצֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7225-katze",
+ "gender": "masculine"
+ }
+ ],
+ "קצות־": [
+ {
+ "word_nikkud": "קָצֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7225-katze",
+ "gender": "masculine"
+ }
+ ],
+ "קצין": [
+ {
+ "word_nikkud": "קָצִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4862-katzin",
+ "gender": "masculine"
+ }
+ ],
+ "קצינים": [
+ {
+ "word_nikkud": "קָצִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4862-katzin",
+ "gender": "masculine"
+ }
+ ],
+ "קצין־": [
+ {
+ "word_nikkud": "קָצִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4862-katzin",
+ "gender": "masculine"
+ }
+ ],
+ "קציני־": [
+ {
+ "word_nikkud": "קָצִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4862-katzin",
+ "gender": "masculine"
+ }
+ ],
+ "מקצוע": [
+ {
+ "word_nikkud": "מִקְצוֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5935-miktzoa",
+ "gender": "masculine"
+ }
+ ],
+ "מקצועות": [
+ {
+ "word_nikkud": "מִקְצוֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5935-miktzoa",
+ "gender": "masculine"
+ }
+ ],
+ "מקצוע־": [
+ {
+ "word_nikkud": "מִקְצוֹעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5935-miktzoa",
+ "gender": "masculine"
+ }
+ ],
+ "מקצועות־": [
+ {
+ "word_nikkud": "מִקְצוֹעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5935-miktzoa",
+ "gender": "masculine"
+ }
+ ],
+ "קצפת": [
+ {
+ "word_nikkud": "קַצֶּפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5598-katzefet",
+ "gender": "feminine"
+ }
+ ],
+ "קצפת־": [
+ {
+ "word_nikkud": "קַצֶּפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5598-katzefet",
+ "gender": "feminine"
+ }
+ ],
+ "קצף": [
+ {
+ "word_nikkud": "קֶצֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5007-ketzef",
+ "gender": "masculine"
+ }
+ ],
+ "קצפים": [
+ {
+ "word_nikkud": "קֶצֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5007-ketzef",
+ "gender": "masculine"
+ }
+ ],
+ "קצף־": [
+ {
+ "word_nikkud": "קֶצֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5007-ketzef",
+ "gender": "masculine"
+ }
+ ],
+ "קצפי־": [
+ {
+ "word_nikkud": "קֶצֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5007-ketzef",
+ "gender": "masculine"
+ }
+ ],
+ "קיצוץ": [
+ {
+ "word_nikkud": "קִצּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8735-kitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "קיצוצים": [
+ {
+ "word_nikkud": "קִצּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8735-kitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "קיצוץ־": [
+ {
+ "word_nikkud": "קִצּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8735-kitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "קיצוצי־": [
+ {
+ "word_nikkud": "קִצּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8735-kitzutz",
+ "gender": "masculine"
+ }
+ ],
+ "קץ": [
+ {
+ "word_nikkud": "קֵץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8258-ketz",
+ "gender": "masculine"
+ }
+ ],
+ "קץ־": [
+ {
+ "word_nikkud": "קֵץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8258-ketz",
+ "gender": "masculine"
+ }
+ ],
+ "קציצה": [
+ {
+ "word_nikkud": "קְצִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9162-ktzitza",
+ "gender": "feminine"
+ }
+ ],
+ "קציצת־": [
+ {
+ "word_nikkud": "קְצִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9162-ktzitza",
+ "gender": "feminine"
+ }
+ ],
+ "קצר": [
+ {
+ "word_nikkud": "קֶצֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3179-ketzer",
+ "gender": "masculine"
+ }
+ ],
+ "קצרים": [
+ {
+ "word_nikkud": "קֶצֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3179-ketzer",
+ "gender": "masculine"
+ }
+ ],
+ "קצר־": [
+ {
+ "word_nikkud": "קֶצֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3179-ketzer",
+ "gender": "masculine"
+ }
+ ],
+ "קצרי־": [
+ {
+ "word_nikkud": "קֶצֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3179-ketzer",
+ "gender": "masculine"
+ }
+ ],
+ "קציר": [
+ {
+ "word_nikkud": "קָצִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5603-katzir",
+ "gender": "masculine"
+ }
+ ],
+ "קציר־": [
+ {
+ "word_nikkud": "קָצִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5603-katzir",
+ "gender": "masculine"
+ }
+ ],
+ "קיצור": [
+ {
+ "word_nikkud": "קִצּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4442-kitzur",
+ "gender": "masculine"
+ }
+ ],
+ "קיצורים": [
+ {
+ "word_nikkud": "קִצּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4442-kitzur",
+ "gender": "masculine"
+ }
+ ],
+ "קיצור־": [
+ {
+ "word_nikkud": "קִצּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4442-kitzur",
+ "gender": "masculine"
+ }
+ ],
+ "קיצורי־": [
+ {
+ "word_nikkud": "קִצּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4442-kitzur",
+ "gender": "masculine"
+ }
+ ],
+ "קצרת": [
+ {
+ "word_nikkud": "קַצֶּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3299-katzeret",
+ "gender": "feminine"
+ }
+ ],
+ "קצרת־": [
+ {
+ "word_nikkud": "קַצֶּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3299-katzeret",
+ "gender": "feminine"
+ }
+ ],
+ "קוצר": [
+ {
+ "word_nikkud": "קוֹצֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7828-kotzer",
+ "gender": "masculine"
+ }
+ ],
+ "קוצרים": [
+ {
+ "word_nikkud": "קוֹצֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7828-kotzer",
+ "gender": "masculine"
+ }
+ ],
+ "קוצר־": [
+ {
+ "word_nikkud": "קוֹצֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7828-kotzer",
+ "gender": "masculine"
+ }
+ ],
+ "קוצרי־": [
+ {
+ "word_nikkud": "קוֹצֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7828-kotzer",
+ "gender": "masculine"
+ }
+ ],
+ "תקציר": [
+ {
+ "word_nikkud": "תַּקְצִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6867-taktzir",
+ "gender": "masculine"
+ }
+ ],
+ "תקצירים": [
+ {
+ "word_nikkud": "תַּקְצִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6867-taktzir",
+ "gender": "masculine"
+ }
+ ],
+ "תקציר־": [
+ {
+ "word_nikkud": "תַּקְצִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6867-taktzir",
+ "gender": "masculine"
+ }
+ ],
+ "תקצירי־": [
+ {
+ "word_nikkud": "תַּקְצִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6867-taktzir",
+ "gender": "masculine"
+ }
+ ],
+ "קקאו": [
+ {
+ "word_nikkud": "קָקָאוֹ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9117-kakao",
+ "gender": "masculine"
+ }
+ ],
+ "הפקרות": [
+ {
+ "word_nikkud": "הֶפְקֵרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8758-hefkerut",
+ "gender": "feminine"
+ }
+ ],
+ "הפקרות־": [
+ {
+ "word_nikkud": "הֶפְקֵרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8758-hefkerut",
+ "gender": "feminine"
+ }
+ ],
+ "קריאה": [
+ {
+ "word_nikkud": "קְרִיאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2836-kria",
+ "gender": "feminine"
+ }
+ ],
+ "קריאות": [
+ {
+ "word_nikkud": "קְרִיאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2836-kria",
+ "gender": "feminine"
+ }
+ ],
+ "קריאת־": [
+ {
+ "word_nikkud": "קְרִיאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2836-kria",
+ "gender": "feminine"
+ }
+ ],
+ "קריאות־": [
+ {
+ "word_nikkud": "קְרִיאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2836-kria",
+ "gender": "feminine"
+ }
+ ],
+ "מקרא": [
+ {
+ "word_nikkud": "מִקְרָא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8108-mikra",
+ "gender": "masculine"
+ }
+ ],
+ "קורבן": [
+ {
+ "word_nikkud": "קָרְבָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4916-korban",
+ "gender": "masculine"
+ }
+ ],
+ "קורבנות": [
+ {
+ "word_nikkud": "קָרְבָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4916-korban",
+ "gender": "masculine"
+ }
+ ],
+ "קורבן־": [
+ {
+ "word_nikkud": "קָרְבָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4916-korban",
+ "gender": "masculine"
+ }
+ ],
+ "קורבנות־": [
+ {
+ "word_nikkud": "קָרְבָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4916-korban",
+ "gender": "masculine"
+ }
+ ],
+ "הקרבה": [
+ {
+ "word_nikkud": "הַקְרָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2907-hakrava",
+ "gender": "feminine"
+ }
+ ],
+ "הקרבות": [
+ {
+ "word_nikkud": "הַקְרָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2907-hakrava",
+ "gender": "feminine"
+ }
+ ],
+ "הקרבת־": [
+ {
+ "word_nikkud": "הַקְרָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2907-hakrava",
+ "gender": "feminine"
+ }
+ ],
+ "הקרבות־": [
+ {
+ "word_nikkud": "הַקְרָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2907-hakrava",
+ "gender": "feminine"
+ }
+ ],
+ "קרבה": [
+ {
+ "word_nikkud": "קִרְבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3223-kirva",
+ "gender": "feminine"
+ }
+ ],
+ "קרבת־": [
+ {
+ "word_nikkud": "קִרְבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3223-kirva",
+ "gender": "feminine"
+ }
+ ],
+ "תקריב": [
+ {
+ "word_nikkud": "תַּקְרִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4145-takriv",
+ "gender": "masculine"
+ }
+ ],
+ "תקריב־": [
+ {
+ "word_nikkud": "תַּקְרִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4145-takriv",
+ "gender": "masculine"
+ }
+ ],
+ "קרוב": [
+ {
+ "word_nikkud": "קָרוֹב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7726-karov",
+ "gender": "masculine"
+ }
+ ],
+ "קרובים": [
+ {
+ "word_nikkud": "קָרוֹב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7726-karov",
+ "gender": "masculine"
+ }
+ ],
+ "קרוב־": [
+ {
+ "word_nikkud": "קָרוֹב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7726-karov",
+ "gender": "masculine"
+ }
+ ],
+ "קרובי־": [
+ {
+ "word_nikkud": "קָרוֹב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7726-karov",
+ "gender": "masculine"
+ }
+ ],
+ "קרב": [
+ {
+ "word_nikkud": "קֶרֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6406-kerev",
+ "gender": "masculine"
+ }
+ ],
+ "קרביים": [
+ {
+ "word_nikkud": "קֶרֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6406-kerev",
+ "gender": "masculine"
+ }
+ ],
+ "קרב־": [
+ {
+ "word_nikkud": "קֶרֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6406-kerev",
+ "gender": "masculine"
+ }
+ ],
+ "קרבי־": [
+ {
+ "word_nikkud": "קֶרֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6406-kerev",
+ "gender": "masculine"
+ }
+ ],
+ "התקרבות": [
+ {
+ "word_nikkud": "הִתְקָרְבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8836-hitkarvut",
+ "gender": "feminine"
+ }
+ ],
+ "התקרבויות": [
+ {
+ "word_nikkud": "הִתְקָרְבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8836-hitkarvut",
+ "gender": "feminine"
+ }
+ ],
+ "התקרבות־": [
+ {
+ "word_nikkud": "הִתְקָרְבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8836-hitkarvut",
+ "gender": "feminine"
+ }
+ ],
+ "התקרבויות־": [
+ {
+ "word_nikkud": "הִתְקָרְבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8836-hitkarvut",
+ "gender": "feminine"
+ }
+ ],
+ "קרון": [
+ {
+ "word_nikkud": "קָרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6504-karon",
+ "gender": ""
+ }
+ ],
+ "קרונות": [
+ {
+ "word_nikkud": "קָרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6504-karon",
+ "gender": ""
+ }
+ ],
+ "קרון־": [
+ {
+ "word_nikkud": "קָרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6504-karon",
+ "gender": ""
+ }
+ ],
+ "קרונות־": [
+ {
+ "word_nikkud": "קָרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6504-karon",
+ "gender": ""
+ }
+ ],
+ "קרור": [
+ {
+ "word_nikkud": "קֵרוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6583-kerur",
+ "gender": ""
+ }
+ ],
+ "קרורים": [
+ {
+ "word_nikkud": "קֵרוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6583-kerur",
+ "gender": ""
+ }
+ ],
+ "קרור־": [
+ {
+ "word_nikkud": "קֵרוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6583-kerur",
+ "gender": ""
+ }
+ ],
+ "קרורי־": [
+ {
+ "word_nikkud": "קֵרוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6583-kerur",
+ "gender": ""
+ }
+ ],
+ "קרח": [
+ {
+ "word_nikkud": "קֶרַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4345-kerach",
+ "gender": "masculine"
+ }
+ ],
+ "קרח־": [
+ {
+ "word_nikkud": "קֶרַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4345-kerach",
+ "gender": "masculine"
+ }
+ ],
+ "קרחת": [
+ {
+ "word_nikkud": "קָרַחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4347-karachat",
+ "gender": "feminine"
+ }
+ ],
+ "קרחות": [
+ {
+ "word_nikkud": "קָרַחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4347-karachat",
+ "gender": "feminine"
+ }
+ ],
+ "קרחת־": [
+ {
+ "word_nikkud": "קָרַחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4347-karachat",
+ "gender": "feminine"
+ }
+ ],
+ "קרחות־": [
+ {
+ "word_nikkud": "קָרַחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4347-karachat",
+ "gender": "feminine"
+ }
+ ],
+ "קרחון": [
+ {
+ "word_nikkud": "קַרְחוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7274-karchon",
+ "gender": "masculine"
+ }
+ ],
+ "קרחונים": [
+ {
+ "word_nikkud": "קַרְחוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7274-karchon",
+ "gender": "masculine"
+ }
+ ],
+ "קרחון־": [
+ {
+ "word_nikkud": "קַרְחוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7274-karchon",
+ "gender": "masculine"
+ }
+ ],
+ "קרחוני־": [
+ {
+ "word_nikkud": "קַרְחוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7274-karchon",
+ "gender": "masculine"
+ }
+ ],
+ "קרטיב": [
+ {
+ "word_nikkud": "קַרְטִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9069-kartiv",
+ "gender": "masculine"
+ }
+ ],
+ "קרטיבים": [
+ {
+ "word_nikkud": "קַרְטִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9069-kartiv",
+ "gender": "masculine"
+ }
+ ],
+ "קרטיב־": [
+ {
+ "word_nikkud": "קַרְטִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9069-kartiv",
+ "gender": "masculine"
+ }
+ ],
+ "קרטיבי־": [
+ {
+ "word_nikkud": "קַרְטִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9069-kartiv",
+ "gender": "masculine"
+ }
+ ],
+ "מקרה": [
+ {
+ "word_nikkud": "מִקְרֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3083-mikre",
+ "gender": "masculine"
+ }
+ ],
+ "מקרים": [
+ {
+ "word_nikkud": "מִקְרֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3083-mikre",
+ "gender": "masculine"
+ }
+ ],
+ "מקרה־": [
+ {
+ "word_nikkud": "מִקְרֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3083-mikre",
+ "gender": "masculine"
+ }
+ ],
+ "מקרי־": [
+ {
+ "word_nikkud": "מִקְרֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3083-mikre",
+ "gender": "masculine"
+ }
+ ],
+ "קריה": [
+ {
+ "word_nikkud": "קִרְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3686-kirya",
+ "gender": "feminine"
+ }
+ ],
+ "קריות": [
+ {
+ "word_nikkud": "קִרְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3686-kirya",
+ "gender": "feminine"
+ }
+ ],
+ "קריית־": [
+ {
+ "word_nikkud": "קִרְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3686-kirya",
+ "gender": "feminine"
+ }
+ ],
+ "קריות־": [
+ {
+ "word_nikkud": "קִרְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3686-kirya",
+ "gender": "feminine"
+ }
+ ],
+ "תקרית": [
+ {
+ "word_nikkud": "תַּקְרִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3771-takrit",
+ "gender": "feminine"
+ }
+ ],
+ "תקריות": [
+ {
+ "word_nikkud": "תַּקְרִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3771-takrit",
+ "gender": "feminine"
+ }
+ ],
+ "תקרית־": [
+ {
+ "word_nikkud": "תַּקְרִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3771-takrit",
+ "gender": "feminine"
+ }
+ ],
+ "תקריות־": [
+ {
+ "word_nikkud": "תַּקְרִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3771-takrit",
+ "gender": "feminine"
+ }
+ ],
+ "תקרה": [
+ {
+ "word_nikkud": "תִּקְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4992-tikra",
+ "gender": "feminine"
+ }
+ ],
+ "תקרות": [
+ {
+ "word_nikkud": "תִּקְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4992-tikra",
+ "gender": "feminine"
+ }
+ ],
+ "תקרת־": [
+ {
+ "word_nikkud": "תִּקְרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4992-tikra",
+ "gender": "feminine"
+ }
+ ],
+ "תקרות־": [
+ {
+ "word_nikkud": "תִּקְרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4992-tikra",
+ "gender": "feminine"
+ }
+ ],
+ "אקראי": [
+ {
+ "word_nikkud": "אַקְרַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8239-akray",
+ "gender": "masculine"
+ }
+ ],
+ "אקראים": [
+ {
+ "word_nikkud": "אַקְרַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8239-akray",
+ "gender": "masculine"
+ }
+ ],
+ "אקראי־": [
+ {
+ "word_nikkud": "אַקְרַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8239-akray",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "אַקְרַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8239-akray",
+ "gender": "masculine"
+ }
+ ],
+ "קריין": [
+ {
+ "word_nikkud": "קַרְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6119-karyan",
+ "gender": "masculine"
+ }
+ ],
+ "קריינים": [
+ {
+ "word_nikkud": "קַרְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6119-karyan",
+ "gender": "masculine"
+ }
+ ],
+ "קריין־": [
+ {
+ "word_nikkud": "קַרְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6119-karyan",
+ "gender": "masculine"
+ }
+ ],
+ "קרייני־": [
+ {
+ "word_nikkud": "קַרְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6119-karyan",
+ "gender": "masculine"
+ }
+ ],
+ "קורות": [
+ {
+ "word_nikkud": "קוֹרוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7034-korot",
+ "gender": ""
+ }
+ ],
+ "קורות־": [
+ {
+ "word_nikkud": "קוֹרוֹת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7034-korot",
+ "gender": ""
+ }
+ ],
+ "קריזה": [
+ {
+ "word_nikkud": "קְרִיזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8386-kriza",
+ "gender": "feminine"
+ }
+ ],
+ "קריזות": [
+ {
+ "word_nikkud": "קְרִיזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8386-kriza",
+ "gender": "feminine"
+ }
+ ],
+ "קריזת־": [
+ {
+ "word_nikkud": "קְרִיזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8386-kriza",
+ "gender": "feminine"
+ }
+ ],
+ "קריזות־": [
+ {
+ "word_nikkud": "קְרִיזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8386-kriza",
+ "gender": "feminine"
+ }
+ ],
+ "קריירה": [
+ {
+ "word_nikkud": "קַרְיֶרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8051-karyera",
+ "gender": "feminine"
+ }
+ ],
+ "קריירות": [
+ {
+ "word_nikkud": "קַרְיֶרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8051-karyera",
+ "gender": "feminine"
+ }
+ ],
+ "קריירת־": [
+ {
+ "word_nikkud": "קַרְיֶרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8051-karyera",
+ "gender": "feminine"
+ }
+ ],
+ "קריירות־": [
+ {
+ "word_nikkud": "קַרְיֶרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8051-karyera",
+ "gender": "feminine"
+ }
+ ],
+ "הקרנה": [
+ {
+ "word_nikkud": "הַקְרָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2908-hakrana",
+ "gender": "feminine"
+ }
+ ],
+ "הקרנות": [
+ {
+ "word_nikkud": "הַקְרָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2908-hakrana",
+ "gender": "feminine"
+ }
+ ],
+ "הקרנת־": [
+ {
+ "word_nikkud": "הַקְרָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2908-hakrana",
+ "gender": "feminine"
+ }
+ ],
+ "הקרנות־": [
+ {
+ "word_nikkud": "הַקְרָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2908-hakrana",
+ "gender": "feminine"
+ }
+ ],
+ "קרן": [
+ {
+ "word_nikkud": "קֶרֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3181-keren",
+ "gender": "feminine"
+ }
+ ],
+ "קרניים": [
+ {
+ "word_nikkud": "קֶרֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3181-keren",
+ "gender": "feminine"
+ }
+ ],
+ "קרן־": [
+ {
+ "word_nikkud": "קֶרֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3181-keren",
+ "gender": "feminine"
+ }
+ ],
+ "קרני־": [
+ {
+ "word_nikkud": "קֶרֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3181-keren",
+ "gender": "feminine"
+ }
+ ],
+ "קרינה": [
+ {
+ "word_nikkud": "קְרִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5020-krina",
+ "gender": "feminine"
+ }
+ ],
+ "קרינות": [
+ {
+ "word_nikkud": "קְרִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5020-krina",
+ "gender": "feminine"
+ }
+ ],
+ "קרינת־": [
+ {
+ "word_nikkud": "קְרִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5020-krina",
+ "gender": "feminine"
+ }
+ ],
+ "קרינות־": [
+ {
+ "word_nikkud": "קְרִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5020-krina",
+ "gender": "feminine"
+ }
+ ],
+ "קרנית": [
+ {
+ "word_nikkud": "קַרְנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8932-karnit",
+ "gender": "feminine"
+ }
+ ],
+ "קרניות": [
+ {
+ "word_nikkud": "קַרְנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8932-karnit",
+ "gender": "feminine"
+ }
+ ],
+ "קרנית־": [
+ {
+ "word_nikkud": "קַרְנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8932-karnit",
+ "gender": "feminine"
+ }
+ ],
+ "קרניות־": [
+ {
+ "word_nikkud": "קַרְנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8932-karnit",
+ "gender": "feminine"
+ }
+ ],
+ "מקרן": [
+ {
+ "word_nikkud": "מַקְרֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7694-makren",
+ "gender": "masculine"
+ }
+ ],
+ "מקרנים": [
+ {
+ "word_nikkud": "מַקְרֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7694-makren",
+ "gender": "masculine"
+ }
+ ],
+ "מקרן־": [
+ {
+ "word_nikkud": "מַקְרֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7694-makren",
+ "gender": "masculine"
+ }
+ ],
+ "מקרני־": [
+ {
+ "word_nikkud": "מַקְרֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7694-makren",
+ "gender": "masculine"
+ }
+ ],
+ "קרנף": [
+ {
+ "word_nikkud": "קַרְנַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7967-karnaf",
+ "gender": "masculine"
+ }
+ ],
+ "קרנפים": [
+ {
+ "word_nikkud": "קַרְנַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7967-karnaf",
+ "gender": "masculine"
+ }
+ ],
+ "קרנף־": [
+ {
+ "word_nikkud": "קַרְנַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7967-karnaf",
+ "gender": "masculine"
+ }
+ ],
+ "קרנפי־": [
+ {
+ "word_nikkud": "קַרְנַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7967-karnaf",
+ "gender": "masculine"
+ }
+ ],
+ "קריסה": [
+ {
+ "word_nikkud": "קְרִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7581-krisa",
+ "gender": "feminine"
+ }
+ ],
+ "קריסות": [
+ {
+ "word_nikkud": "קְרִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7581-krisa",
+ "gender": "feminine"
+ }
+ ],
+ "קריסת־": [
+ {
+ "word_nikkud": "קְרִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7581-krisa",
+ "gender": "feminine"
+ }
+ ],
+ "קריסות־": [
+ {
+ "word_nikkud": "קְרִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7581-krisa",
+ "gender": "feminine"
+ }
+ ],
+ "קרסול": [
+ {
+ "word_nikkud": "קַרְסֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6401-karsol",
+ "gender": "masculine"
+ }
+ ],
+ "קרסוליים": [
+ {
+ "word_nikkud": "קַרְסֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6401-karsol",
+ "gender": "masculine"
+ }
+ ],
+ "קרסול־": [
+ {
+ "word_nikkud": "קַרְסֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6401-karsol",
+ "gender": "masculine"
+ }
+ ],
+ "קרסולי־": [
+ {
+ "word_nikkud": "קַרְסֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6401-karsol",
+ "gender": "masculine"
+ }
+ ],
+ "קרע": [
+ {
+ "word_nikkud": "קֶרַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8471-kera",
+ "gender": "masculine"
+ }
+ ],
+ "קרעים": [
+ {
+ "word_nikkud": "קֶרַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8471-kera",
+ "gender": "masculine"
+ }
+ ],
+ "קרע־": [
+ {
+ "word_nikkud": "קֶרַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8471-kera",
+ "gender": "masculine"
+ }
+ ],
+ "קרעי־": [
+ {
+ "word_nikkud": "קֶרַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8471-kera",
+ "gender": "masculine"
+ }
+ ],
+ "קריצה": [
+ {
+ "word_nikkud": "קְרִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7756-kritza",
+ "gender": "feminine"
+ }
+ ],
+ "קריצות": [
+ {
+ "word_nikkud": "קְרִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7756-kritza",
+ "gender": "feminine"
+ }
+ ],
+ "קריצת־": [
+ {
+ "word_nikkud": "קְרִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7756-kritza",
+ "gender": "feminine"
+ }
+ ],
+ "קריצות־": [
+ {
+ "word_nikkud": "קְרִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7756-kritza",
+ "gender": "feminine"
+ }
+ ],
+ "קרקס": [
+ {
+ "word_nikkud": "קִרְקָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8850-kirkas",
+ "gender": "masculine"
+ }
+ ],
+ "קרקסים": [
+ {
+ "word_nikkud": "קִרְקָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8850-kirkas",
+ "gender": "masculine"
+ }
+ ],
+ "קרקס־": [
+ {
+ "word_nikkud": "קִרְקָס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8850-kirkas",
+ "gender": "masculine"
+ }
+ ],
+ "קרקסי־": [
+ {
+ "word_nikkud": "קִרְקָס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8850-kirkas",
+ "gender": "masculine"
+ }
+ ],
+ "קרקע": [
+ {
+ "word_nikkud": "קַרְקַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4878-karka",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קַרְקַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4878-karka",
+ "gender": "feminine"
+ }
+ ],
+ "קרקעות": [
+ {
+ "word_nikkud": "קַרְקַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4878-karka",
+ "gender": "feminine"
+ }
+ ],
+ "קרקע־": [
+ {
+ "word_nikkud": "קַרְקַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4878-karka",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קַרְקַע",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4878-karka",
+ "gender": "feminine"
+ }
+ ],
+ "קרקעות־": [
+ {
+ "word_nikkud": "קַרְקַע",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4878-karka",
+ "gender": "feminine"
+ }
+ ],
+ "קרקוע": [
+ {
+ "word_nikkud": "קִרְקוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8855-kirkua",
+ "gender": "masculine"
+ }
+ ],
+ "קרקועים": [
+ {
+ "word_nikkud": "קִרְקוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8855-kirkua",
+ "gender": "masculine"
+ }
+ ],
+ "קרקוע־": [
+ {
+ "word_nikkud": "קִרְקוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8855-kirkua",
+ "gender": "masculine"
+ }
+ ],
+ "קרקועי־": [
+ {
+ "word_nikkud": "קִרְקוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8855-kirkua",
+ "gender": "masculine"
+ }
+ ],
+ "קרקעית": [
+ {
+ "word_nikkud": "קַרְקָעִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6617-karkait",
+ "gender": "feminine"
+ }
+ ],
+ "קרקעיות": [
+ {
+ "word_nikkud": "קַרְקָעִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6617-karkait",
+ "gender": "feminine"
+ }
+ ],
+ "קרקעית־": [
+ {
+ "word_nikkud": "קַרְקָעִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6617-karkait",
+ "gender": "feminine"
+ }
+ ],
+ "קרקעיות־": [
+ {
+ "word_nikkud": "קַרְקָעִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6617-karkait",
+ "gender": "feminine"
+ }
+ ],
+ "מקרקעין": [
+ {
+ "word_nikkud": "מְקַרְקְעִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7188-mekarkein",
+ "gender": "masculine"
+ }
+ ],
+ "קרקפת": [
+ {
+ "word_nikkud": "קַרְקֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5575-karkefet",
+ "gender": "feminine"
+ }
+ ],
+ "קרקפות": [
+ {
+ "word_nikkud": "קַרְקֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5575-karkefet",
+ "gender": "feminine"
+ }
+ ],
+ "קרקפת־": [
+ {
+ "word_nikkud": "קַרְקֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5575-karkefet",
+ "gender": "feminine"
+ }
+ ],
+ "קרקפות־": [
+ {
+ "word_nikkud": "קַרְקֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5575-karkefet",
+ "gender": "feminine"
+ }
+ ],
+ "קרקוף": [
+ {
+ "word_nikkud": "קִרְקוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5574-kirkuf",
+ "gender": "masculine"
+ }
+ ],
+ "קרקופים": [
+ {
+ "word_nikkud": "קִרְקוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5574-kirkuf",
+ "gender": "masculine"
+ }
+ ],
+ "קרקוף־": [
+ {
+ "word_nikkud": "קִרְקוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5574-kirkuf",
+ "gender": "masculine"
+ }
+ ],
+ "קרקופי־": [
+ {
+ "word_nikkud": "קִרְקוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5574-kirkuf",
+ "gender": "masculine"
+ }
+ ],
+ "התקררות": [
+ {
+ "word_nikkud": "הִתְקָרְרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8564-hitkarerut",
+ "gender": "feminine"
+ }
+ ],
+ "התקררויות": [
+ {
+ "word_nikkud": "הִתְקָרְרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8564-hitkarerut",
+ "gender": "feminine"
+ }
+ ],
+ "התקררות־": [
+ {
+ "word_nikkud": "הִתְקָרְרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8564-hitkarerut",
+ "gender": "feminine"
+ }
+ ],
+ "התקררויות־": [
+ {
+ "word_nikkud": "הִתְקָרְרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8564-hitkarerut",
+ "gender": "feminine"
+ }
+ ],
+ "קור": [
+ {
+ "word_nikkud": "קֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5977-kor",
+ "gender": "masculine"
+ }
+ ],
+ "קור־": [
+ {
+ "word_nikkud": "קֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5977-kor",
+ "gender": "masculine"
+ }
+ ],
+ "מקרר": [
+ {
+ "word_nikkud": "מְקָרֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6255-mekarer",
+ "gender": "masculine"
+ }
+ ],
+ "מקררים": [
+ {
+ "word_nikkud": "מְקָרֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6255-mekarer",
+ "gender": "masculine"
+ }
+ ],
+ "מקרר־": [
+ {
+ "word_nikkud": "מְקָרֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6255-mekarer",
+ "gender": "masculine"
+ }
+ ],
+ "מקררי־": [
+ {
+ "word_nikkud": "מְקָרֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6255-mekarer",
+ "gender": "masculine"
+ }
+ ],
+ "קרש": [
+ {
+ "word_nikkud": "קֶרֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4031-keresh",
+ "gender": "masculine"
+ }
+ ],
+ "קרשים": [
+ {
+ "word_nikkud": "קֶרֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4031-keresh",
+ "gender": "masculine"
+ }
+ ],
+ "קרש־": [
+ {
+ "word_nikkud": "קֶרֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4031-keresh",
+ "gender": "masculine"
+ }
+ ],
+ "קרשי־": [
+ {
+ "word_nikkud": "קֶרֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4031-keresh",
+ "gender": "masculine"
+ }
+ ],
+ "קישוא": [
+ {
+ "word_nikkud": "קִשּׁוּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9051-kishu",
+ "gender": "masculine"
+ }
+ ],
+ "קישואים": [
+ {
+ "word_nikkud": "קִשּׁוּא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9051-kishu",
+ "gender": "masculine"
+ }
+ ],
+ "קישוא־": [
+ {
+ "word_nikkud": "קִשּׁוּא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9051-kishu",
+ "gender": "masculine"
+ }
+ ],
+ "קישואי־": [
+ {
+ "word_nikkud": "קִשּׁוּא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9051-kishu",
+ "gender": "masculine"
+ }
+ ],
+ "הקשבה": [
+ {
+ "word_nikkud": "הַקְשָׁבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5730-hakshava",
+ "gender": "feminine"
+ }
+ ],
+ "הקשבות": [
+ {
+ "word_nikkud": "הַקְשָׁבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5730-hakshava",
+ "gender": "feminine"
+ }
+ ],
+ "הקשבת־": [
+ {
+ "word_nikkud": "הַקְשָׁבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5730-hakshava",
+ "gender": "feminine"
+ }
+ ],
+ "הקשבות־": [
+ {
+ "word_nikkud": "הַקְשָׁבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5730-hakshava",
+ "gender": "feminine"
+ }
+ ],
+ "קשב": [
+ {
+ "word_nikkud": "קַשָּׁב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7907-kashav",
+ "gender": "masculine"
+ }
+ ],
+ "קשבים": [
+ {
+ "word_nikkud": "קַשָּׁב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7907-kashav",
+ "gender": "masculine"
+ }
+ ],
+ "קשב־": [
+ {
+ "word_nikkud": "קַשָּׁב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7907-kashav",
+ "gender": "masculine"
+ }
+ ],
+ "קשבי־": [
+ {
+ "word_nikkud": "קַשָּׁב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7907-kashav",
+ "gender": "masculine"
+ }
+ ],
+ "קישוט": [
+ {
+ "word_nikkud": "קִשּׁוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6787-kishut",
+ "gender": "masculine"
+ }
+ ],
+ "קישוטים": [
+ {
+ "word_nikkud": "קִשּׁוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6787-kishut",
+ "gender": "masculine"
+ }
+ ],
+ "קישוט־": [
+ {
+ "word_nikkud": "קִשּׁוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6787-kishut",
+ "gender": "masculine"
+ }
+ ],
+ "קישוטי־": [
+ {
+ "word_nikkud": "קִשּׁוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6787-kishut",
+ "gender": "masculine"
+ }
+ ],
+ "קושי": [
+ {
+ "word_nikkud": "קֹשִׁי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4447-koshi",
+ "gender": "masculine"
+ }
+ ],
+ "קשיים": [
+ {
+ "word_nikkud": "קֹשִׁי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4447-koshi",
+ "gender": "masculine"
+ }
+ ],
+ "קושי־": [
+ {
+ "word_nikkud": "קֹשִׁי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4447-koshi",
+ "gender": "masculine"
+ }
+ ],
+ "קשיי־": [
+ {
+ "word_nikkud": "קֹשִׁי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4447-koshi",
+ "gender": "masculine"
+ }
+ ],
+ "התקשרות": [
+ {
+ "word_nikkud": "הִתְקַשְּׁרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7377-hitkashrut",
+ "gender": "feminine"
+ }
+ ],
+ "התקשרויות": [
+ {
+ "word_nikkud": "הִתְקַשְּׁרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7377-hitkashrut",
+ "gender": "feminine"
+ }
+ ],
+ "התקשרות־": [
+ {
+ "word_nikkud": "הִתְקַשְּׁרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7377-hitkashrut",
+ "gender": "feminine"
+ }
+ ],
+ "התקשרויות־": [
+ {
+ "word_nikkud": "הִתְקַשְּׁרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7377-hitkashrut",
+ "gender": "feminine"
+ }
+ ],
+ "תקשורת": [
+ {
+ "word_nikkud": "תִּקְשֹׁרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3257-tikshoret",
+ "gender": "feminine"
+ }
+ ],
+ "תקשורות": [
+ {
+ "word_nikkud": "תִּקְשֹׁרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3257-tikshoret",
+ "gender": "feminine"
+ }
+ ],
+ "תקשורת־": [
+ {
+ "word_nikkud": "תִּקְשֹׁרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3257-tikshoret",
+ "gender": "feminine"
+ }
+ ],
+ "תקשורות־": [
+ {
+ "word_nikkud": "תִּקְשֹׁרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3257-tikshoret",
+ "gender": "feminine"
+ }
+ ],
+ "קשר": [
+ {
+ "word_nikkud": "קֶשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2938-kesher",
+ "gender": "masculine"
+ }
+ ],
+ "קשרים": [
+ {
+ "word_nikkud": "קֶשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2938-kesher",
+ "gender": "masculine"
+ }
+ ],
+ "קשר־": [
+ {
+ "word_nikkud": "קֶשֶׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2938-kesher",
+ "gender": "masculine"
+ }
+ ],
+ "קשרי־": [
+ {
+ "word_nikkud": "קֶשֶׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2938-kesher",
+ "gender": "masculine"
+ }
+ ],
+ "הקשר": [
+ {
+ "word_nikkud": "הֶקְשֵׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2939-heksher",
+ "gender": "masculine"
+ }
+ ],
+ "הקשרים": [
+ {
+ "word_nikkud": "הֶקְשֵׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2939-heksher",
+ "gender": "masculine"
+ }
+ ],
+ "הקשר־": [
+ {
+ "word_nikkud": "הֶקְשֵׁר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2939-heksher",
+ "gender": "masculine"
+ }
+ ],
+ "הקשרי־": [
+ {
+ "word_nikkud": "הֶקְשֵׁר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2939-heksher",
+ "gender": "masculine"
+ }
+ ],
+ "קישור": [
+ {
+ "word_nikkud": "קִשּׁוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5775-kishur",
+ "gender": "masculine"
+ }
+ ],
+ "קישורים": [
+ {
+ "word_nikkud": "קִשּׁוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5775-kishur",
+ "gender": "masculine"
+ }
+ ],
+ "קישור־": [
+ {
+ "word_nikkud": "קִשּׁוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5775-kishur",
+ "gender": "masculine"
+ }
+ ],
+ "קישורי־": [
+ {
+ "word_nikkud": "קִשּׁוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5775-kishur",
+ "gender": "masculine"
+ }
+ ],
+ "קשירות": [
+ {
+ "word_nikkud": "קְשִׁירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5776-kshirut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קְשִׁירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9131-kshira",
+ "gender": "feminine"
+ }
+ ],
+ "קשירויות": [
+ {
+ "word_nikkud": "קְשִׁירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5776-kshirut",
+ "gender": "feminine"
+ }
+ ],
+ "קשירות־": [
+ {
+ "word_nikkud": "קְשִׁירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5776-kshirut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "קְשִׁירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9131-kshira",
+ "gender": "feminine"
+ }
+ ],
+ "קשירויות־": [
+ {
+ "word_nikkud": "קְשִׁירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5776-kshirut",
+ "gender": "feminine"
+ }
+ ],
+ "קשירה": [
+ {
+ "word_nikkud": "קְשִׁירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9131-kshira",
+ "gender": "feminine"
+ }
+ ],
+ "קשירת־": [
+ {
+ "word_nikkud": "קְשִׁירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9131-kshira",
+ "gender": "feminine"
+ }
+ ],
+ "קש": [
+ {
+ "word_nikkud": "קַשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7264-kash",
+ "gender": "masculine"
+ }
+ ],
+ "קשים": [
+ {
+ "word_nikkud": "קַשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7264-kash",
+ "gender": "masculine"
+ }
+ ],
+ "קש־": [
+ {
+ "word_nikkud": "קַשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7264-kash",
+ "gender": "masculine"
+ }
+ ],
+ "קשי־": [
+ {
+ "word_nikkud": "קַשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7264-kash",
+ "gender": "masculine"
+ }
+ ],
+ "קשת": [
+ {
+ "word_nikkud": "קֶשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7809-keshet",
+ "gender": "feminine"
+ }
+ ],
+ "קשתות": [
+ {
+ "word_nikkud": "קֶשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7809-keshet",
+ "gender": "feminine"
+ }
+ ],
+ "קשת־": [
+ {
+ "word_nikkud": "קֶשֶׁת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7809-keshet",
+ "gender": "feminine"
+ }
+ ],
+ "קשתות־": [
+ {
+ "word_nikkud": "קֶשֶׁת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7809-keshet",
+ "gender": "feminine"
+ }
+ ],
+ "ראווה": [
+ {
+ "word_nikkud": "רַאֲוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9040-raava",
+ "gender": "feminine"
+ }
+ ],
+ "ראוות": [
+ {
+ "word_nikkud": "רַאֲוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9040-raava",
+ "gender": "feminine"
+ }
+ ],
+ "ראוות־": [
+ {
+ "word_nikkud": "רַאֲוָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9040-raava",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "רַאֲוָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9040-raava",
+ "gender": "feminine"
+ }
+ ],
+ "ריאיון": [
+ {
+ "word_nikkud": "רֵאָיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5656-reayon",
+ "gender": "masculine"
+ }
+ ],
+ "ראיונות": [
+ {
+ "word_nikkud": "רֵאָיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5656-reayon",
+ "gender": "masculine"
+ }
+ ],
+ "ראיון־": [
+ {
+ "word_nikkud": "רֵאָיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5656-reayon",
+ "gender": "masculine"
+ }
+ ],
+ "ראיונות־": [
+ {
+ "word_nikkud": "רֵאָיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5656-reayon",
+ "gender": "masculine"
+ }
+ ],
+ "ראיה": [
+ {
+ "word_nikkud": "רְאָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8943-reaya",
+ "gender": "feminine"
+ }
+ ],
+ "ראיות": [
+ {
+ "word_nikkud": "רְאָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8943-reaya",
+ "gender": "feminine"
+ }
+ ],
+ "ראיית־": [
+ {
+ "word_nikkud": "רְאָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8943-reaya",
+ "gender": "feminine"
+ }
+ ],
+ "ראיות־": [
+ {
+ "word_nikkud": "רְאָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8943-reaya",
+ "gender": "feminine"
+ }
+ ],
+ "מראה": [
+ {
+ "word_nikkud": "מַרְאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5148-mara",
+ "gender": "feminine"
+ }
+ ],
+ "מראות": [
+ {
+ "word_nikkud": "מַרְאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5148-mara",
+ "gender": "feminine"
+ }
+ ],
+ "מראת־": [
+ {
+ "word_nikkud": "מַרְאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5148-mara",
+ "gender": "feminine"
+ }
+ ],
+ "מראות־": [
+ {
+ "word_nikkud": "מַרְאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5148-mara",
+ "gender": "feminine"
+ }
+ ],
+ "ראי": [
+ {
+ "word_nikkud": "רְאִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9188-rei",
+ "gender": "masculine"
+ }
+ ],
+ "ראיים": [
+ {
+ "word_nikkud": "רְאִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9188-rei",
+ "gender": "masculine"
+ }
+ ],
+ "ראי־": [
+ {
+ "word_nikkud": "רְאִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9188-rei",
+ "gender": "masculine"
+ }
+ ],
+ "ראיי־": [
+ {
+ "word_nikkud": "רְאִי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9188-rei",
+ "gender": "masculine"
+ }
+ ],
+ "בראשית": [
+ {
+ "word_nikkud": "בְּרֵאשִׁית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3326-bereshit",
+ "gender": ""
+ }
+ ],
+ "ראשית": [
+ {
+ "word_nikkud": "רֵאשִׁית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3323-reshit",
+ "gender": "feminine"
+ }
+ ],
+ "ראשית־": [
+ {
+ "word_nikkud": "רֵאשִׁית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3323-reshit",
+ "gender": "feminine"
+ }
+ ],
+ "ראש": [
+ {
+ "word_nikkud": "רֹאשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3327-rosh",
+ "gender": "masculine"
+ }
+ ],
+ "ראשים": [
+ {
+ "word_nikkud": "רֹאשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3327-rosh",
+ "gender": "masculine"
+ }
+ ],
+ "ראש־": [
+ {
+ "word_nikkud": "רֹאשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3327-rosh",
+ "gender": "masculine"
+ }
+ ],
+ "ראשי־": [
+ {
+ "word_nikkud": "רֹאשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3327-rosh",
+ "gender": "masculine"
+ }
+ ],
+ "ראשי תיבות": [
+ {
+ "word_nikkud": "רָאשֵׁי תֵּבוֹת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7250-rashei-tevot",
+ "gender": ""
+ }
+ ],
+ "רוב": [
+ {
+ "word_nikkud": "רֹב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4159-rov",
+ "gender": "masculine"
+ }
+ ],
+ "רוב־": [
+ {
+ "word_nikkud": "רֹב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4159-rov",
+ "gender": "masculine"
+ }
+ ],
+ "מירב": [
+ {
+ "word_nikkud": "מֵרַב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6840-merav",
+ "gender": "masculine"
+ }
+ ],
+ "מירבים": [
+ {
+ "word_nikkud": "מֵרַב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6840-merav",
+ "gender": "masculine"
+ }
+ ],
+ "מירב־": [
+ {
+ "word_nikkud": "מֵרַב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6840-merav",
+ "gender": "masculine"
+ }
+ ],
+ "מירבי־": [
+ {
+ "word_nikkud": "מֵרַב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6840-merav",
+ "gender": "masculine"
+ }
+ ],
+ "ריבה": [
+ {
+ "word_nikkud": "רִבָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6623-riba",
+ "gender": "feminine"
+ }
+ ],
+ "ריבות": [
+ {
+ "word_nikkud": "רִבָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6623-riba",
+ "gender": "feminine"
+ }
+ ],
+ "ריבת־": [
+ {
+ "word_nikkud": "רִבָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6623-riba",
+ "gender": "feminine"
+ }
+ ],
+ "ריבות־": [
+ {
+ "word_nikkud": "רִבָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6623-riba",
+ "gender": "feminine"
+ }
+ ],
+ "ריבית": [
+ {
+ "word_nikkud": "רִבִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4497-ribit",
+ "gender": ""
+ }
+ ],
+ "ריביות": [
+ {
+ "word_nikkud": "רִבִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4497-ribit",
+ "gender": ""
+ }
+ ],
+ "ריבית־": [
+ {
+ "word_nikkud": "רִבִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4497-ribit",
+ "gender": ""
+ }
+ ],
+ "ריביות־": [
+ {
+ "word_nikkud": "רִבִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4497-ribit",
+ "gender": ""
+ }
+ ],
+ "ריבון": [
+ {
+ "word_nikkud": "רִבּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7679-ribon",
+ "gender": "masculine"
+ }
+ ],
+ "ריבון־": [
+ {
+ "word_nikkud": "רִבּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7679-ribon",
+ "gender": "masculine"
+ }
+ ],
+ "רבבה": [
+ {
+ "word_nikkud": "רְבָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6316-revava",
+ "gender": "feminine"
+ }
+ ],
+ "רבבות": [
+ {
+ "word_nikkud": "רְבָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6316-revava",
+ "gender": "feminine"
+ }
+ ],
+ "רבבת־": [
+ {
+ "word_nikkud": "רְבָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6316-revava",
+ "gender": "feminine"
+ }
+ ],
+ "רבבות־": [
+ {
+ "word_nikkud": "רְבָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6316-revava",
+ "gender": "feminine"
+ }
+ ],
+ "רבותיי": [
+ {
+ "word_nikkud": "רַבּוֹתַי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6936-rabotay",
+ "gender": "masculine"
+ }
+ ],
+ "רובד": [
+ {
+ "word_nikkud": "רֹבֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7399-roved",
+ "gender": "masculine"
+ }
+ ],
+ "רבדים": [
+ {
+ "word_nikkud": "רֹבֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7399-roved",
+ "gender": "masculine"
+ }
+ ],
+ "רובד־": [
+ {
+ "word_nikkud": "רֹבֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7399-roved",
+ "gender": "masculine"
+ }
+ ],
+ "רבדי־": [
+ {
+ "word_nikkud": "רֹבֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7399-roved",
+ "gender": "masculine"
+ }
+ ],
+ "ריבוד": [
+ {
+ "word_nikkud": "רִבּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5625-ribud",
+ "gender": "masculine"
+ }
+ ],
+ "ריבודים": [
+ {
+ "word_nikkud": "רִבּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5625-ribud",
+ "gender": "masculine"
+ }
+ ],
+ "ריבוד־": [
+ {
+ "word_nikkud": "רִבּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5625-ribud",
+ "gender": "masculine"
+ }
+ ],
+ "ריבודי־": [
+ {
+ "word_nikkud": "רִבּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5625-ribud",
+ "gender": "masculine"
+ }
+ ],
+ "מרבד": [
+ {
+ "word_nikkud": "מַרְבָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6972-marvad",
+ "gender": "masculine"
+ }
+ ],
+ "מרבדים": [
+ {
+ "word_nikkud": "מַרְבָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6972-marvad",
+ "gender": "masculine"
+ }
+ ],
+ "מרבד־": [
+ {
+ "word_nikkud": "מַרְבָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6972-marvad",
+ "gender": "masculine"
+ }
+ ],
+ "מרבדי־": [
+ {
+ "word_nikkud": "מַרְבָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6972-marvad",
+ "gender": "masculine"
+ }
+ ],
+ "תרבות": [
+ {
+ "word_nikkud": "תַּרְבּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5908-tarbut",
+ "gender": "feminine"
+ }
+ ],
+ "תרבויות": [
+ {
+ "word_nikkud": "תַּרְבּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5908-tarbut",
+ "gender": "feminine"
+ }
+ ],
+ "תרבות־": [
+ {
+ "word_nikkud": "תַּרְבּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5908-tarbut",
+ "gender": "feminine"
+ }
+ ],
+ "תרבויות־": [
+ {
+ "word_nikkud": "תַּרְבּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5908-tarbut",
+ "gender": "feminine"
+ }
+ ],
+ "ריבוי": [
+ {
+ "word_nikkud": "רִבּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4498-ribuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריבויים": [
+ {
+ "word_nikkud": "רִבּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4498-ribuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריבוי־": [
+ {
+ "word_nikkud": "רִבּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4498-ribuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריבויי־": [
+ {
+ "word_nikkud": "רִבּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4498-ribuy",
+ "gender": "masculine"
+ }
+ ],
+ "רבע": [
+ {
+ "word_nikkud": "רֶבַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6094-reva",
+ "gender": "masculine"
+ }
+ ],
+ "רבעים": [
+ {
+ "word_nikkud": "רֶבַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6094-reva",
+ "gender": "masculine"
+ }
+ ],
+ "רבע־": [
+ {
+ "word_nikkud": "רֶבַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6094-reva",
+ "gender": "masculine"
+ }
+ ],
+ "רבעי־": [
+ {
+ "word_nikkud": "רֶבַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6094-reva",
+ "gender": "masculine"
+ }
+ ],
+ "ריבוע": [
+ {
+ "word_nikkud": "רִבּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4577-ribua",
+ "gender": "masculine"
+ }
+ ],
+ "ריבועים": [
+ {
+ "word_nikkud": "רִבּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4577-ribua",
+ "gender": "masculine"
+ }
+ ],
+ "ריבוע־": [
+ {
+ "word_nikkud": "רִבּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4577-ribua",
+ "gender": "masculine"
+ }
+ ],
+ "ריבועי־": [
+ {
+ "word_nikkud": "רִבּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4577-ribua",
+ "gender": "masculine"
+ }
+ ],
+ "רגב": [
+ {
+ "word_nikkud": "רֶגֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6777-regev",
+ "gender": "masculine"
+ }
+ ],
+ "רגבים": [
+ {
+ "word_nikkud": "רֶגֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6777-regev",
+ "gender": "masculine"
+ }
+ ],
+ "רגב־": [
+ {
+ "word_nikkud": "רֶגֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6777-regev",
+ "gender": "masculine"
+ }
+ ],
+ "רגבי־": [
+ {
+ "word_nikkud": "רֶגֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6777-regev",
+ "gender": "masculine"
+ }
+ ],
+ "ארגז": [
+ {
+ "word_nikkud": "אַרְגָּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7824-argaz",
+ "gender": "masculine"
+ }
+ ],
+ "ארגזים": [
+ {
+ "word_nikkud": "אַרְגָּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7824-argaz",
+ "gender": "masculine"
+ }
+ ],
+ "ארגז־": [
+ {
+ "word_nikkud": "אַרְגָּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7824-argaz",
+ "gender": "masculine"
+ }
+ ],
+ "ארגזי־": [
+ {
+ "word_nikkud": "אַרְגָּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7824-argaz",
+ "gender": "masculine"
+ }
+ ],
+ "ריגול": [
+ {
+ "word_nikkud": "רִגּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2995-rigul",
+ "gender": "masculine"
+ }
+ ],
+ "ריגול־": [
+ {
+ "word_nikkud": "רִגּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2995-rigul",
+ "gender": "masculine"
+ }
+ ],
+ "הרגל": [
+ {
+ "word_nikkud": "הֶרְגֵּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2940-hergel",
+ "gender": "masculine"
+ }
+ ],
+ "הרגלים": [
+ {
+ "word_nikkud": "הֶרְגֵּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2940-hergel",
+ "gender": "masculine"
+ }
+ ],
+ "הרגל־": [
+ {
+ "word_nikkud": "הֶרְגֵּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2940-hergel",
+ "gender": "masculine"
+ }
+ ],
+ "הרגלי־": [
+ {
+ "word_nikkud": "הֶרְגֵּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2940-hergel",
+ "gender": "masculine"
+ }
+ ],
+ "רגל": [
+ {
+ "word_nikkud": "רֶגֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3168-regel",
+ "gender": "feminine"
+ }
+ ],
+ "רגליים": [
+ {
+ "word_nikkud": "רֶגֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3168-regel",
+ "gender": "feminine"
+ }
+ ],
+ "רגל־": [
+ {
+ "word_nikkud": "רֶגֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3168-regel",
+ "gender": "feminine"
+ }
+ ],
+ "רגלי־": [
+ {
+ "word_nikkud": "רֶגֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3168-regel",
+ "gender": "feminine"
+ }
+ ],
+ "תרגיל": [
+ {
+ "word_nikkud": "תַּרְגִּיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3730-targil",
+ "gender": "masculine"
+ }
+ ],
+ "תרגילים": [
+ {
+ "word_nikkud": "תַּרְגִּיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3730-targil",
+ "gender": "masculine"
+ }
+ ],
+ "תרגיל־": [
+ {
+ "word_nikkud": "תַּרְגִּיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3730-targil",
+ "gender": "masculine"
+ }
+ ],
+ "תרגילי־": [
+ {
+ "word_nikkud": "תַּרְגִּיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3730-targil",
+ "gender": "masculine"
+ }
+ ],
+ "מרגמה": [
+ {
+ "word_nikkud": "מַרְגֵּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3563-margema",
+ "gender": "feminine"
+ }
+ ],
+ "מרגמות": [
+ {
+ "word_nikkud": "מַרְגֵּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3563-margema",
+ "gender": "feminine"
+ }
+ ],
+ "מרגמת־": [
+ {
+ "word_nikkud": "מַרְגֵּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3563-margema",
+ "gender": "feminine"
+ }
+ ],
+ "מרגמות־": [
+ {
+ "word_nikkud": "מַרְגֵּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3563-margema",
+ "gender": "feminine"
+ }
+ ],
+ "רגע": [
+ {
+ "word_nikkud": "רֶגַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4005-rega",
+ "gender": "masculine"
+ }
+ ],
+ "רגעים": [
+ {
+ "word_nikkud": "רֶגַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4005-rega",
+ "gender": "masculine"
+ }
+ ],
+ "רגע־": [
+ {
+ "word_nikkud": "רֶגַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4005-rega",
+ "gender": "masculine"
+ }
+ ],
+ "רגעי־": [
+ {
+ "word_nikkud": "רֶגַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4005-rega",
+ "gender": "masculine"
+ }
+ ],
+ "הרגעה": [
+ {
+ "word_nikkud": "הַרְגָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2909-hargaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרגעת־": [
+ {
+ "word_nikkud": "הַרְגָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2909-hargaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרגשה": [
+ {
+ "word_nikkud": "הַרְגָּשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2910-hargasha",
+ "gender": "feminine"
+ }
+ ],
+ "הרגשות": [
+ {
+ "word_nikkud": "הַרְגָּשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2910-hargasha",
+ "gender": "feminine"
+ }
+ ],
+ "הרגשת־": [
+ {
+ "word_nikkud": "הַרְגָּשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2910-hargasha",
+ "gender": "feminine"
+ }
+ ],
+ "הרגשות־": [
+ {
+ "word_nikkud": "הַרְגָּשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2910-hargasha",
+ "gender": "feminine"
+ }
+ ],
+ "התרגשות": [
+ {
+ "word_nikkud": "הִתְרַגְּשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3027-hitragshut",
+ "gender": "feminine"
+ }
+ ],
+ "התרגשות־": [
+ {
+ "word_nikkud": "הִתְרַגְּשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3027-hitragshut",
+ "gender": "feminine"
+ }
+ ],
+ "רגש": [
+ {
+ "word_nikkud": "רֶגֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3182-regesh",
+ "gender": "masculine"
+ }
+ ],
+ "רגשות": [
+ {
+ "word_nikkud": "רֶגֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3182-regesh",
+ "gender": "masculine"
+ }
+ ],
+ "רגש־": [
+ {
+ "word_nikkud": "רֶגֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3182-regesh",
+ "gender": "masculine"
+ }
+ ],
+ "רגשות־": [
+ {
+ "word_nikkud": "רֶגֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3182-regesh",
+ "gender": "masculine"
+ }
+ ],
+ "מרגש": [
+ {
+ "word_nikkud": "מַרְגָּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4009-margash",
+ "gender": "masculine"
+ }
+ ],
+ "מרגש־": [
+ {
+ "word_nikkud": "מַרְגָּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4009-margash",
+ "gender": "masculine"
+ }
+ ],
+ "רדיו": [
+ {
+ "word_nikkud": "רַדְיוֹ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7079-radyo",
+ "gender": "masculine"
+ }
+ ],
+ "הירדמות": [
+ {
+ "word_nikkud": "הֵרָדְמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5341-heradmut",
+ "gender": "feminine"
+ }
+ ],
+ "הירדמות־": [
+ {
+ "word_nikkud": "הֵרָדְמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5341-heradmut",
+ "gender": "feminine"
+ }
+ ],
+ "תרדמה": [
+ {
+ "word_nikkud": "תַּרְדֵּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4993-tardema",
+ "gender": "feminine"
+ }
+ ],
+ "תרדמות": [
+ {
+ "word_nikkud": "תַּרְדֵּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4993-tardema",
+ "gender": "feminine"
+ }
+ ],
+ "תרדמת־": [
+ {
+ "word_nikkud": "תַּרְדֵּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4993-tardema",
+ "gender": "feminine"
+ }
+ ],
+ "תרדמות־": [
+ {
+ "word_nikkud": "תַּרְדֵּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4993-tardema",
+ "gender": "feminine"
+ }
+ ],
+ "מרדף": [
+ {
+ "word_nikkud": "מִרְדָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7783-mirdaf",
+ "gender": "masculine"
+ }
+ ],
+ "מרדפים": [
+ {
+ "word_nikkud": "מִרְדָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7783-mirdaf",
+ "gender": "masculine"
+ }
+ ],
+ "מרדף־": [
+ {
+ "word_nikkud": "מִרְדָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7783-mirdaf",
+ "gender": "masculine"
+ }
+ ],
+ "מרדפי־": [
+ {
+ "word_nikkud": "מִרְדָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7783-mirdaf",
+ "gender": "masculine"
+ }
+ ],
+ "רדיפה": [
+ {
+ "word_nikkud": "רְדִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8356-redifa",
+ "gender": "feminine"
+ }
+ ],
+ "רדיפות": [
+ {
+ "word_nikkud": "רְדִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8356-redifa",
+ "gender": "feminine"
+ }
+ ],
+ "רדיפת־": [
+ {
+ "word_nikkud": "רְדִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8356-redifa",
+ "gender": "feminine"
+ }
+ ],
+ "רדיפות־": [
+ {
+ "word_nikkud": "רְדִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8356-redifa",
+ "gender": "feminine"
+ }
+ ],
+ "רהט": [
+ {
+ "word_nikkud": "רַהַט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5285-rahat",
+ "gender": "masculine"
+ }
+ ],
+ "רהטים": [
+ {
+ "word_nikkud": "רַהַט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5285-rahat",
+ "gender": "masculine"
+ }
+ ],
+ "רהט־": [
+ {
+ "word_nikkud": "רַהַט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5285-rahat",
+ "gender": "masculine"
+ }
+ ],
+ "רהטי־": [
+ {
+ "word_nikkud": "רַהַט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5285-rahat",
+ "gender": "masculine"
+ }
+ ],
+ "רהיט": [
+ {
+ "word_nikkud": "רָהִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5181-rahit",
+ "gender": "masculine"
+ }
+ ],
+ "רהיטים": [
+ {
+ "word_nikkud": "רָהִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5181-rahit",
+ "gender": "masculine"
+ }
+ ],
+ "רהיט־": [
+ {
+ "word_nikkud": "רָהִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5181-rahit",
+ "gender": "masculine"
+ }
+ ],
+ "רהיטי־": [
+ {
+ "word_nikkud": "רָהִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5181-rahit",
+ "gender": "masculine"
+ }
+ ],
+ "ריהוט": [
+ {
+ "word_nikkud": "רִהוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6199-rihut",
+ "gender": "masculine"
+ }
+ ],
+ "ריהוטים": [
+ {
+ "word_nikkud": "רִהוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6199-rihut",
+ "gender": "masculine"
+ }
+ ],
+ "ריהוט־": [
+ {
+ "word_nikkud": "רִהוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6199-rihut",
+ "gender": "masculine"
+ }
+ ],
+ "ריהוטי־": [
+ {
+ "word_nikkud": "רִהוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6199-rihut",
+ "gender": "masculine"
+ }
+ ],
+ "רובה": [
+ {
+ "word_nikkud": "רוֹבֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7938-rove",
+ "gender": ""
+ }
+ ],
+ "רובים": [
+ {
+ "word_nikkud": "רוֹבֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7938-rove",
+ "gender": ""
+ }
+ ],
+ "רובה־": [
+ {
+ "word_nikkud": "רוֹבֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7938-rove",
+ "gender": ""
+ }
+ ],
+ "רובי־": [
+ {
+ "word_nikkud": "רוֹבֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7938-rove",
+ "gender": ""
+ }
+ ],
+ "רודן": [
+ {
+ "word_nikkud": "רוֹדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7331-rodan",
+ "gender": ""
+ }
+ ],
+ "רודנים": [
+ {
+ "word_nikkud": "רוֹדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7331-rodan",
+ "gender": ""
+ }
+ ],
+ "רודן־": [
+ {
+ "word_nikkud": "רוֹדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7331-rodan",
+ "gender": ""
+ }
+ ],
+ "רודני־": [
+ {
+ "word_nikkud": "רוֹדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7331-rodan",
+ "gender": ""
+ }
+ ],
+ "ריווח": [
+ {
+ "word_nikkud": "רִוּוּחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7101-rivuach",
+ "gender": "masculine"
+ }
+ ],
+ "ריווחים": [
+ {
+ "word_nikkud": "רִוּוּחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7101-rivuach",
+ "gender": "masculine"
+ }
+ ],
+ "ריווח־": [
+ {
+ "word_nikkud": "רִוּוּחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7101-rivuach",
+ "gender": "masculine"
+ }
+ ],
+ "ריווחי־": [
+ {
+ "word_nikkud": "רִוּוּחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7101-rivuach",
+ "gender": "masculine"
+ }
+ ],
+ "מרווח": [
+ {
+ "word_nikkud": "מִרְוָח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3547-mirvach",
+ "gender": "masculine"
+ }
+ ],
+ "מרווחים": [
+ {
+ "word_nikkud": "מִרְוָח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3547-mirvach",
+ "gender": "masculine"
+ }
+ ],
+ "מרווח־": [
+ {
+ "word_nikkud": "מִרְוָח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3547-mirvach",
+ "gender": "masculine"
+ }
+ ],
+ "מרווחי־": [
+ {
+ "word_nikkud": "מִרְוָח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3547-mirvach",
+ "gender": "masculine"
+ }
+ ],
+ "רווח": [
+ {
+ "word_nikkud": "רֶוַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7100-revach",
+ "gender": "masculine"
+ }
+ ],
+ "רווחים": [
+ {
+ "word_nikkud": "רֶוַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7100-revach",
+ "gender": "masculine"
+ }
+ ],
+ "רוח־": [
+ {
+ "word_nikkud": "רֶוַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7100-revach",
+ "gender": "masculine"
+ }
+ ],
+ "רוחי־": [
+ {
+ "word_nikkud": "רֶוַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7100-revach",
+ "gender": "masculine"
+ }
+ ],
+ "רווחה": [
+ {
+ "word_nikkud": "רְוָחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8371-revacha",
+ "gender": "feminine"
+ }
+ ],
+ "רווחת־": [
+ {
+ "word_nikkud": "רְוָחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8371-revacha",
+ "gender": "feminine"
+ }
+ ],
+ "ריווי": [
+ {
+ "word_nikkud": "רִוּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7751-rivuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריוויים": [
+ {
+ "word_nikkud": "רִוּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7751-rivuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריווי־": [
+ {
+ "word_nikkud": "רִוּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7751-rivuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריוויי־": [
+ {
+ "word_nikkud": "רִוּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7751-rivuy",
+ "gender": "masculine"
+ }
+ ],
+ "רוויה": [
+ {
+ "word_nikkud": "רְוָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7559-revaya",
+ "gender": "feminine"
+ }
+ ],
+ "רוויית־": [
+ {
+ "word_nikkud": "רְוָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7559-revaya",
+ "gender": "feminine"
+ }
+ ],
+ "רוויון": [
+ {
+ "word_nikkud": "רִוְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7753-rivyon",
+ "gender": "masculine"
+ }
+ ],
+ "רוויון־": [
+ {
+ "word_nikkud": "רִוְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7753-rivyon",
+ "gender": "masculine"
+ }
+ ],
+ "רמה": [
+ {
+ "word_nikkud": "רָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5487-rama",
+ "gender": "feminine"
+ }
+ ],
+ "רמות": [
+ {
+ "word_nikkud": "רָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5487-rama",
+ "gender": "feminine"
+ }
+ ],
+ "רמת־": [
+ {
+ "word_nikkud": "רָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5487-rama",
+ "gender": "feminine"
+ }
+ ],
+ "רמות־": [
+ {
+ "word_nikkud": "רָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5487-rama",
+ "gender": "feminine"
+ }
+ ],
+ "הרמה": [
+ {
+ "word_nikkud": "הֲרָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7817-harama",
+ "gender": "feminine"
+ }
+ ],
+ "הרמות": [
+ {
+ "word_nikkud": "הֲרָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7817-harama",
+ "gender": "feminine"
+ }
+ ],
+ "הרמת־": [
+ {
+ "word_nikkud": "הֲרָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7817-harama",
+ "gender": "feminine"
+ }
+ ],
+ "הרמות־": [
+ {
+ "word_nikkud": "הֲרָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7817-harama",
+ "gender": "feminine"
+ }
+ ],
+ "תרומה": [
+ {
+ "word_nikkud": "תְּרוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5947-truma",
+ "gender": "feminine"
+ }
+ ],
+ "תרומות": [
+ {
+ "word_nikkud": "תְּרוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5947-truma",
+ "gender": "feminine"
+ }
+ ],
+ "תרומת־": [
+ {
+ "word_nikkud": "תְּרוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5947-truma",
+ "gender": "feminine"
+ }
+ ],
+ "תרומות־": [
+ {
+ "word_nikkud": "תְּרוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5947-truma",
+ "gender": "feminine"
+ }
+ ],
+ "מרום": [
+ {
+ "word_nikkud": "מָרוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6262-marom",
+ "gender": "masculine"
+ }
+ ],
+ "מרומים": [
+ {
+ "word_nikkud": "מָרוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6262-marom",
+ "gender": "masculine"
+ }
+ ],
+ "מרום־": [
+ {
+ "word_nikkud": "מָרוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6262-marom",
+ "gender": "masculine"
+ }
+ ],
+ "מרומי־": [
+ {
+ "word_nikkud": "מָרוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6262-marom",
+ "gender": "masculine"
+ }
+ ],
+ "ריצה": [
+ {
+ "word_nikkud": "רִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3136-ritza",
+ "gender": "feminine"
+ }
+ ],
+ "ריצות": [
+ {
+ "word_nikkud": "רִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3136-ritza",
+ "gender": "feminine"
+ }
+ ],
+ "ריצת־": [
+ {
+ "word_nikkud": "רִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3136-ritza",
+ "gender": "feminine"
+ }
+ ],
+ "ריצות־": [
+ {
+ "word_nikkud": "רִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3136-ritza",
+ "gender": "feminine"
+ }
+ ],
+ "מריצה": [
+ {
+ "word_nikkud": "מְרִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3754-meritza",
+ "gender": "feminine"
+ }
+ ],
+ "מריצות": [
+ {
+ "word_nikkud": "מְרִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3754-meritza",
+ "gender": "feminine"
+ }
+ ],
+ "מריצת־": [
+ {
+ "word_nikkud": "מְרִיצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3754-meritza",
+ "gender": "feminine"
+ }
+ ],
+ "מריצות־": [
+ {
+ "word_nikkud": "מְרִיצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3754-meritza",
+ "gender": "feminine"
+ }
+ ],
+ "רץ": [
+ {
+ "word_nikkud": "רָץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4366-ratz",
+ "gender": "masculine"
+ }
+ ],
+ "רצים": [
+ {
+ "word_nikkud": "רָץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4366-ratz",
+ "gender": "masculine"
+ }
+ ],
+ "רץ־": [
+ {
+ "word_nikkud": "רָץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4366-ratz",
+ "gender": "masculine"
+ }
+ ],
+ "רצי־": [
+ {
+ "word_nikkud": "רָץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4366-ratz",
+ "gender": "masculine"
+ }
+ ],
+ "מירוץ": [
+ {
+ "word_nikkud": "מֵרוֹץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7922-merotz",
+ "gender": ""
+ }
+ ],
+ "מרוצים": [
+ {
+ "word_nikkud": "מֵרוֹץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7922-merotz",
+ "gender": ""
+ }
+ ],
+ "מרוץ־": [
+ {
+ "word_nikkud": "מֵרוֹץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7922-merotz",
+ "gender": ""
+ }
+ ],
+ "מרוצי־": [
+ {
+ "word_nikkud": "מֵרוֹץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7922-merotz",
+ "gender": ""
+ }
+ ],
+ "מרוצה": [
+ {
+ "word_nikkud": "מְרוּצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8500-merutza",
+ "gender": "feminine"
+ }
+ ],
+ "מרוצות": [
+ {
+ "word_nikkud": "מְרוּצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8500-merutza",
+ "gender": "feminine"
+ }
+ ],
+ "מרוצת־": [
+ {
+ "word_nikkud": "מְרוּצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8500-merutza",
+ "gender": "feminine"
+ }
+ ],
+ "מרוצות־": [
+ {
+ "word_nikkud": "מְרוּצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8500-merutza",
+ "gender": "feminine"
+ }
+ ],
+ "רז": [
+ {
+ "word_nikkud": "רָז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6386-raz",
+ "gender": "masculine"
+ }
+ ],
+ "רזים": [
+ {
+ "word_nikkud": "רָז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6386-raz",
+ "gender": "masculine"
+ }
+ ],
+ "רז־": [
+ {
+ "word_nikkud": "רָז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6386-raz",
+ "gender": "masculine"
+ }
+ ],
+ "רזי־": [
+ {
+ "word_nikkud": "רָז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6386-raz",
+ "gender": "masculine"
+ }
+ ],
+ "הרזיה": [
+ {
+ "word_nikkud": "הַרְזָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2911-harzaya",
+ "gender": "feminine"
+ }
+ ],
+ "הרזיית־": [
+ {
+ "word_nikkud": "הַרְזָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2911-harzaya",
+ "gender": "feminine"
+ }
+ ],
+ "רוזן": [
+ {
+ "word_nikkud": "רוֹזֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7184-rozen",
+ "gender": "masculine"
+ }
+ ],
+ "רוזנים": [
+ {
+ "word_nikkud": "רוֹזֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7184-rozen",
+ "gender": "masculine"
+ }
+ ],
+ "רוזן־": [
+ {
+ "word_nikkud": "רוֹזֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7184-rozen",
+ "gender": "masculine"
+ }
+ ],
+ "רוזני־": [
+ {
+ "word_nikkud": "רוֹזֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7184-rozen",
+ "gender": "masculine"
+ }
+ ],
+ "רחבה": [
+ {
+ "word_nikkud": "רְחָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2861-rechava",
+ "gender": "feminine"
+ }
+ ],
+ "רחבות": [
+ {
+ "word_nikkud": "רְחָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2861-rechava",
+ "gender": "feminine"
+ }
+ ],
+ "רחבת־": [
+ {
+ "word_nikkud": "רְחָבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2861-rechava",
+ "gender": "feminine"
+ }
+ ],
+ "רחבות־": [
+ {
+ "word_nikkud": "רְחָבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2861-rechava",
+ "gender": "feminine"
+ }
+ ],
+ "הרחבה": [
+ {
+ "word_nikkud": "הַרְחָבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2912-harchava",
+ "gender": "feminine"
+ }
+ ],
+ "הרחבת־": [
+ {
+ "word_nikkud": "הַרְחָבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2912-harchava",
+ "gender": "feminine"
+ }
+ ],
+ "רוחב": [
+ {
+ "word_nikkud": "רֹחַב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3204-rochav",
+ "gender": "masculine"
+ }
+ ],
+ "רחבים": [
+ {
+ "word_nikkud": "רֹחַב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3204-rochav",
+ "gender": "masculine"
+ }
+ ],
+ "רוחב־": [
+ {
+ "word_nikkud": "רֹחַב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3204-rochav",
+ "gender": "masculine"
+ }
+ ],
+ "רחבי־": [
+ {
+ "word_nikkud": "רֹחַב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3204-rochav",
+ "gender": "masculine"
+ }
+ ],
+ "רחוב": [
+ {
+ "word_nikkud": "רְחוֹב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3653-rechov",
+ "gender": "masculine"
+ }
+ ],
+ "רחובות": [
+ {
+ "word_nikkud": "רְחוֹב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3653-rechov",
+ "gender": "masculine"
+ }
+ ],
+ "רחוב־": [
+ {
+ "word_nikkud": "רְחוֹב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3653-rechov",
+ "gender": "masculine"
+ }
+ ],
+ "רחובות־": [
+ {
+ "word_nikkud": "רְחוֹב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3653-rechov",
+ "gender": "masculine"
+ }
+ ],
+ "מרחב": [
+ {
+ "word_nikkud": "מֶרְחָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7963-merchav",
+ "gender": "masculine"
+ }
+ ],
+ "מרחבים": [
+ {
+ "word_nikkud": "מֶרְחָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7963-merchav",
+ "gender": "masculine"
+ }
+ ],
+ "מרחב־": [
+ {
+ "word_nikkud": "מֶרְחָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7963-merchav",
+ "gender": "masculine"
+ }
+ ],
+ "מרחבי־": [
+ {
+ "word_nikkud": "מֶרְחָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7963-merchav",
+ "gender": "masculine"
+ }
+ ],
+ "רחם": [
+ {
+ "word_nikkud": "רֶחֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8869-rechem",
+ "gender": "masculine"
+ }
+ ],
+ "רחמים": [
+ {
+ "word_nikkud": "רֶחֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8869-rechem",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "רַחֲמִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6426-rachamim",
+ "gender": "masculine"
+ }
+ ],
+ "רחם־": [
+ {
+ "word_nikkud": "רֶחֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8869-rechem",
+ "gender": "masculine"
+ }
+ ],
+ "רחמי־": [
+ {
+ "word_nikkud": "רֶחֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8869-rechem",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "רַחֲמִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6426-rachamim",
+ "gender": "masculine"
+ }
+ ],
+ "רחפן": [
+ {
+ "word_nikkud": "רַחְפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7795-rachfan",
+ "gender": "masculine"
+ }
+ ],
+ "רחפנים": [
+ {
+ "word_nikkud": "רַחְפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7795-rachfan",
+ "gender": "masculine"
+ }
+ ],
+ "רחפן־": [
+ {
+ "word_nikkud": "רַחְפָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7795-rachfan",
+ "gender": "masculine"
+ }
+ ],
+ "רחפני־": [
+ {
+ "word_nikkud": "רַחְפָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7795-rachfan",
+ "gender": "masculine"
+ }
+ ],
+ "רחיצה": [
+ {
+ "word_nikkud": "רְחִיצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2837-rechitza",
+ "gender": "feminine"
+ }
+ ],
+ "רחיצת־": [
+ {
+ "word_nikkud": "רְחִיצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2837-rechitza",
+ "gender": "feminine"
+ }
+ ],
+ "תרחיץ": [
+ {
+ "word_nikkud": "תַּרְחִיץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3617-tarchitz",
+ "gender": "masculine"
+ }
+ ],
+ "תרחיצים": [
+ {
+ "word_nikkud": "תַּרְחִיץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3617-tarchitz",
+ "gender": "masculine"
+ }
+ ],
+ "תרחיץ־": [
+ {
+ "word_nikkud": "תַּרְחִיץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3617-tarchitz",
+ "gender": "masculine"
+ }
+ ],
+ "תרחיצי־": [
+ {
+ "word_nikkud": "תַּרְחִיץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3617-tarchitz",
+ "gender": "masculine"
+ }
+ ],
+ "רחצה": [
+ {
+ "word_nikkud": "רַחְצָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8452-rachtza",
+ "gender": "feminine"
+ }
+ ],
+ "רחצות": [
+ {
+ "word_nikkud": "רַחְצָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8452-rachtza",
+ "gender": "feminine"
+ }
+ ],
+ "רחצת־": [
+ {
+ "word_nikkud": "רַחְצָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8452-rachtza",
+ "gender": "feminine"
+ }
+ ],
+ "רחצות־": [
+ {
+ "word_nikkud": "רַחְצָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8452-rachtza",
+ "gender": "feminine"
+ }
+ ],
+ "התרחקות": [
+ {
+ "word_nikkud": "הִתְרַחֲקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8465-hitrachakut",
+ "gender": "feminine"
+ }
+ ],
+ "התרחקויות": [
+ {
+ "word_nikkud": "הִתְרַחֲקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8465-hitrachakut",
+ "gender": "feminine"
+ }
+ ],
+ "התרחקות־": [
+ {
+ "word_nikkud": "הִתְרַחֲקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8465-hitrachakut",
+ "gender": "feminine"
+ }
+ ],
+ "התרחקויות־": [
+ {
+ "word_nikkud": "הִתְרַחֲקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8465-hitrachakut",
+ "gender": "feminine"
+ }
+ ],
+ "הרחקה": [
+ {
+ "word_nikkud": "הַרְחָקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2913-harchaka",
+ "gender": "feminine"
+ }
+ ],
+ "הרחקת־": [
+ {
+ "word_nikkud": "הַרְחָקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2913-harchaka",
+ "gender": "feminine"
+ }
+ ],
+ "מרחק": [
+ {
+ "word_nikkud": "מֶרְחָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4043-merchak",
+ "gender": "masculine"
+ }
+ ],
+ "מרחקים": [
+ {
+ "word_nikkud": "מֶרְחָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4043-merchak",
+ "gender": "masculine"
+ }
+ ],
+ "מרחק־": [
+ {
+ "word_nikkud": "מֶרְחָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4043-merchak",
+ "gender": "masculine"
+ }
+ ],
+ "מרחקי־": [
+ {
+ "word_nikkud": "מֶרְחָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4043-merchak",
+ "gender": "masculine"
+ }
+ ],
+ "תרחיש": [
+ {
+ "word_nikkud": "תַּרְחִישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7900-tarchish",
+ "gender": "masculine"
+ }
+ ],
+ "תרחישים": [
+ {
+ "word_nikkud": "תַּרְחִישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7900-tarchish",
+ "gender": "masculine"
+ }
+ ],
+ "תרחיש־": [
+ {
+ "word_nikkud": "תַּרְחִישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7900-tarchish",
+ "gender": "masculine"
+ }
+ ],
+ "תרחישי־": [
+ {
+ "word_nikkud": "תַּרְחִישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7900-tarchish",
+ "gender": "masculine"
+ }
+ ],
+ "התרחשות": [
+ {
+ "word_nikkud": "הִתְרַחֲשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8997-hitrachashut",
+ "gender": "feminine"
+ }
+ ],
+ "התרחשויות": [
+ {
+ "word_nikkud": "הִתְרַחֲשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8997-hitrachashut",
+ "gender": "feminine"
+ }
+ ],
+ "התרחשות־": [
+ {
+ "word_nikkud": "הִתְרַחֲשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8997-hitrachashut",
+ "gender": "feminine"
+ }
+ ],
+ "התרחשויות־": [
+ {
+ "word_nikkud": "הִתְרַחֲשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8997-hitrachashut",
+ "gender": "feminine"
+ }
+ ],
+ "רוטב": [
+ {
+ "word_nikkud": "רֹטֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7114-rotev",
+ "gender": "masculine"
+ }
+ ],
+ "רטבים": [
+ {
+ "word_nikkud": "רֹטֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7114-rotev",
+ "gender": "masculine"
+ }
+ ],
+ "רוטב־": [
+ {
+ "word_nikkud": "רֹטֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7114-rotev",
+ "gender": "masculine"
+ }
+ ],
+ "רטבי־": [
+ {
+ "word_nikkud": "רֹטֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7114-rotev",
+ "gender": "masculine"
+ }
+ ],
+ "רטיבות": [
+ {
+ "word_nikkud": "רְטִיבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6601-retivut",
+ "gender": "feminine"
+ }
+ ],
+ "רטיבויות": [
+ {
+ "word_nikkud": "רְטִיבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6601-retivut",
+ "gender": "feminine"
+ }
+ ],
+ "רטיבות־": [
+ {
+ "word_nikkud": "רְטִיבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6601-retivut",
+ "gender": "feminine"
+ }
+ ],
+ "רטיבויות־": [
+ {
+ "word_nikkud": "רְטִיבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6601-retivut",
+ "gender": "feminine"
+ }
+ ],
+ "ריטוט": [
+ {
+ "word_nikkud": "רִטּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7243-ritut",
+ "gender": "masculine"
+ }
+ ],
+ "ריטוטים": [
+ {
+ "word_nikkud": "רִטּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7243-ritut",
+ "gender": "masculine"
+ }
+ ],
+ "ריטוט־": [
+ {
+ "word_nikkud": "רִטּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7243-ritut",
+ "gender": "masculine"
+ }
+ ],
+ "ריטוטי־": [
+ {
+ "word_nikkud": "רִטּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7243-ritut",
+ "gender": "masculine"
+ }
+ ],
+ "ריאה": [
+ {
+ "word_nikkud": "רֵאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8276-rea",
+ "gender": "feminine"
+ }
+ ],
+ "ריאות": [
+ {
+ "word_nikkud": "רֵאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8276-rea",
+ "gender": "feminine"
+ }
+ ],
+ "ריאת־": [
+ {
+ "word_nikkud": "רֵאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8276-rea",
+ "gender": "feminine"
+ }
+ ],
+ "ריאות־": [
+ {
+ "word_nikkud": "רֵאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8276-rea",
+ "gender": "feminine"
+ }
+ ],
+ "מריבה": [
+ {
+ "word_nikkud": "מְרִיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3755-meriva",
+ "gender": "feminine"
+ }
+ ],
+ "מריבות": [
+ {
+ "word_nikkud": "מְרִיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3755-meriva",
+ "gender": "feminine"
+ }
+ ],
+ "מריבת־": [
+ {
+ "word_nikkud": "מְרִיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3755-meriva",
+ "gender": "feminine"
+ }
+ ],
+ "מריבות־": [
+ {
+ "word_nikkud": "מְרִיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3755-meriva",
+ "gender": "feminine"
+ }
+ ],
+ "ריב": [
+ {
+ "word_nikkud": "רִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7704-riv",
+ "gender": ""
+ }
+ ],
+ "ריבים": [
+ {
+ "word_nikkud": "רִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7704-riv",
+ "gender": ""
+ }
+ ],
+ "ריב־": [
+ {
+ "word_nikkud": "רִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7704-riv",
+ "gender": ""
+ }
+ ],
+ "ריבי־": [
+ {
+ "word_nikkud": "רִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7704-riv",
+ "gender": ""
+ }
+ ],
+ "יריב": [
+ {
+ "word_nikkud": "יָרִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8428-yariv",
+ "gender": ""
+ }
+ ],
+ "יריבים": [
+ {
+ "word_nikkud": "יָרִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8428-yariv",
+ "gender": ""
+ }
+ ],
+ "יריב־": [
+ {
+ "word_nikkud": "יָרִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8428-yariv",
+ "gender": ""
+ }
+ ],
+ "יריבי־": [
+ {
+ "word_nikkud": "יָרִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8428-yariv",
+ "gender": ""
+ }
+ ],
+ "ריח": [
+ {
+ "word_nikkud": "רֵיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3620-reach",
+ "gender": "masculine"
+ }
+ ],
+ "ריחות": [
+ {
+ "word_nikkud": "רֵיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3620-reach",
+ "gender": "masculine"
+ }
+ ],
+ "ריח־": [
+ {
+ "word_nikkud": "רֵיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3620-reach",
+ "gender": "masculine"
+ }
+ ],
+ "ריחות־": [
+ {
+ "word_nikkud": "רֵיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3620-reach",
+ "gender": "masculine"
+ }
+ ],
+ "רימון": [
+ {
+ "word_nikkud": "רִמּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4770-rimon",
+ "gender": "masculine"
+ }
+ ],
+ "רימונים": [
+ {
+ "word_nikkud": "רִמּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4770-rimon",
+ "gender": "masculine"
+ }
+ ],
+ "רימון־": [
+ {
+ "word_nikkud": "רִמּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4770-rimon",
+ "gender": "masculine"
+ }
+ ],
+ "רימוני־": [
+ {
+ "word_nikkud": "רִמּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4770-rimon",
+ "gender": "masculine"
+ }
+ ],
+ "ריס": [
+ {
+ "word_nikkud": "רִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6605-ris",
+ "gender": "masculine"
+ }
+ ],
+ "ריסים": [
+ {
+ "word_nikkud": "רִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6605-ris",
+ "gender": "masculine"
+ }
+ ],
+ "ריס־": [
+ {
+ "word_nikkud": "רִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6605-ris",
+ "gender": "masculine"
+ }
+ ],
+ "ריסי־": [
+ {
+ "word_nikkud": "רִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6605-ris",
+ "gender": "masculine"
+ }
+ ],
+ "ריק": [
+ {
+ "word_nikkud": "רִיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4207-rik",
+ "gender": "masculine"
+ }
+ ],
+ "ריק־": [
+ {
+ "word_nikkud": "רִיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4207-rik",
+ "gender": "masculine"
+ }
+ ],
+ "ריר": [
+ {
+ "word_nikkud": "רִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6509-rir",
+ "gender": "masculine"
+ }
+ ],
+ "ריר־": [
+ {
+ "word_nikkud": "רִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6509-rir",
+ "gender": "masculine"
+ }
+ ],
+ "תרכובת": [
+ {
+ "word_nikkud": "תִּרְכֹּבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5849-tirkovet",
+ "gender": "feminine"
+ }
+ ],
+ "תרכובות": [
+ {
+ "word_nikkud": "תִּרְכֹּבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5849-tirkovet",
+ "gender": "feminine"
+ }
+ ],
+ "תרכובת־": [
+ {
+ "word_nikkud": "תִּרְכֹּבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5849-tirkovet",
+ "gender": "feminine"
+ }
+ ],
+ "תרכובות־": [
+ {
+ "word_nikkud": "תִּרְכֹּבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5849-tirkovet",
+ "gender": "feminine"
+ }
+ ],
+ "התרכבות": [
+ {
+ "word_nikkud": "הִתְרַכְּבוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2041-hitrakvut",
+ "gender": "feminine"
+ }
+ ],
+ "התרכבויות": [
+ {
+ "word_nikkud": "הִתְרַכְּבוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2041-hitrakvut",
+ "gender": "feminine"
+ }
+ ],
+ "התרכבות־": [
+ {
+ "word_nikkud": "הִתְרַכְּבוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2041-hitrakvut",
+ "gender": "feminine"
+ }
+ ],
+ "התרכבויות־": [
+ {
+ "word_nikkud": "הִתְרַכְּבוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2041-hitrakvut",
+ "gender": "feminine"
+ }
+ ],
+ "הרכב": [
+ {
+ "word_nikkud": "הֶרְכֵּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2941-herkev",
+ "gender": "masculine"
+ }
+ ],
+ "הרכבים": [
+ {
+ "word_nikkud": "הֶרְכֵּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2941-herkev",
+ "gender": "masculine"
+ }
+ ],
+ "הרכב־": [
+ {
+ "word_nikkud": "הֶרְכֵּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2941-herkev",
+ "gender": "masculine"
+ }
+ ],
+ "הרכבי־": [
+ {
+ "word_nikkud": "הֶרְכֵּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2941-herkev",
+ "gender": "masculine"
+ }
+ ],
+ "הרכבה": [
+ {
+ "word_nikkud": "הַרְכָּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2942-harkava",
+ "gender": "feminine"
+ }
+ ],
+ "הרכבות": [
+ {
+ "word_nikkud": "הַרְכָּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2942-harkava",
+ "gender": "feminine"
+ }
+ ],
+ "הרכבת־": [
+ {
+ "word_nikkud": "הַרְכָּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2942-harkava",
+ "gender": "feminine"
+ }
+ ],
+ "הרכבות־": [
+ {
+ "word_nikkud": "הַרְכָּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2942-harkava",
+ "gender": "feminine"
+ }
+ ],
+ "רכב": [
+ {
+ "word_nikkud": "רֶכֶב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3183-rechev",
+ "gender": "masculine"
+ }
+ ],
+ "רכבים": [
+ {
+ "word_nikkud": "רֶכֶב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3183-rechev",
+ "gender": "masculine"
+ }
+ ],
+ "רכב־": [
+ {
+ "word_nikkud": "רֶכֶב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3183-rechev",
+ "gender": "masculine"
+ }
+ ],
+ "רכבי־": [
+ {
+ "word_nikkud": "רֶכֶב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3183-rechev",
+ "gender": "masculine"
+ }
+ ],
+ "רכבת": [
+ {
+ "word_nikkud": "רַכֶּבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3300-rakevet",
+ "gender": "feminine"
+ }
+ ],
+ "רכבות": [
+ {
+ "word_nikkud": "רַכֶּבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3300-rakevet",
+ "gender": "feminine"
+ }
+ ],
+ "רכבת־": [
+ {
+ "word_nikkud": "רַכֶּבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3300-rakevet",
+ "gender": "feminine"
+ }
+ ],
+ "רכבות־": [
+ {
+ "word_nikkud": "רַכֶּבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3300-rakevet",
+ "gender": "feminine"
+ }
+ ],
+ "רכיב": [
+ {
+ "word_nikkud": "רְכִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3538-rechiv",
+ "gender": "masculine"
+ }
+ ],
+ "רכיבים": [
+ {
+ "word_nikkud": "רְכִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3538-rechiv",
+ "gender": "masculine"
+ }
+ ],
+ "רכיב־": [
+ {
+ "word_nikkud": "רְכִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3538-rechiv",
+ "gender": "masculine"
+ }
+ ],
+ "רכיבי־": [
+ {
+ "word_nikkud": "רְכִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3538-rechiv",
+ "gender": "masculine"
+ }
+ ],
+ "מרכבה": [
+ {
+ "word_nikkud": "מֶרְכָּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3846-merkava",
+ "gender": "feminine"
+ }
+ ],
+ "מרכבות": [
+ {
+ "word_nikkud": "מֶרְכָּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3846-merkava",
+ "gender": "feminine"
+ }
+ ],
+ "מרכבת־": [
+ {
+ "word_nikkud": "מֶרְכָּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3846-merkava",
+ "gender": "feminine"
+ }
+ ],
+ "מרכבות־": [
+ {
+ "word_nikkud": "מֶרְכָּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3846-merkava",
+ "gender": "feminine"
+ }
+ ],
+ "תרכיב": [
+ {
+ "word_nikkud": "תַּרְכִּיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8323-tarkiv",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיבים": [
+ {
+ "word_nikkud": "תַּרְכִּיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8323-tarkiv",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיב־": [
+ {
+ "word_nikkud": "תַּרְכִּיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8323-tarkiv",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיבי־": [
+ {
+ "word_nikkud": "תַּרְכִּיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8323-tarkiv",
+ "gender": "masculine"
+ }
+ ],
+ "מרכיב": [
+ {
+ "word_nikkud": "מַרְכִּיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9231-markiv",
+ "gender": "masculine"
+ }
+ ],
+ "מרכיבים": [
+ {
+ "word_nikkud": "מַרְכִּיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9231-markiv",
+ "gender": "masculine"
+ }
+ ],
+ "מרכיב־": [
+ {
+ "word_nikkud": "מַרְכִּיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9231-markiv",
+ "gender": "masculine"
+ }
+ ],
+ "מרכיבי־": [
+ {
+ "word_nikkud": "מַרְכִּיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9231-markiv",
+ "gender": "masculine"
+ }
+ ],
+ "רכבל": [
+ {
+ "word_nikkud": "רַכֶּבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8649-rakevel",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "רַכֶּבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8649-rakevel",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוז": [
+ {
+ "word_nikkud": "רִכּוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6703-rikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוזים": [
+ {
+ "word_nikkud": "רִכּוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6703-rikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוז־": [
+ {
+ "word_nikkud": "רִכּוּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6703-rikuz",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוזי־": [
+ {
+ "word_nikkud": "רִכּוּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6703-rikuz",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיז": [
+ {
+ "word_nikkud": "תַּרְכִּיז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3618-tarkiz",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיזים": [
+ {
+ "word_nikkud": "תַּרְכִּיז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3618-tarkiz",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיז־": [
+ {
+ "word_nikkud": "תַּרְכִּיז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3618-tarkiz",
+ "gender": "masculine"
+ }
+ ],
+ "תרכיזי־": [
+ {
+ "word_nikkud": "תַּרְכִּיז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3618-tarkiz",
+ "gender": "masculine"
+ }
+ ],
+ "מרכז": [
+ {
+ "word_nikkud": "מֶרְכָּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3850-merkaz",
+ "gender": "masculine"
+ }
+ ],
+ "מרכזים": [
+ {
+ "word_nikkud": "מֶרְכָּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3850-merkaz",
+ "gender": "masculine"
+ }
+ ],
+ "מרכז־": [
+ {
+ "word_nikkud": "מֶרְכָּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3850-merkaz",
+ "gender": "masculine"
+ }
+ ],
+ "מרכזי־": [
+ {
+ "word_nikkud": "מֶרְכָּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3850-merkaz",
+ "gender": "masculine"
+ }
+ ],
+ "רכז": [
+ {
+ "word_nikkud": "רַכָּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4937-rakaz",
+ "gender": "masculine"
+ }
+ ],
+ "רכזים": [
+ {
+ "word_nikkud": "רַכָּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4937-rakaz",
+ "gender": "masculine"
+ }
+ ],
+ "רכז־": [
+ {
+ "word_nikkud": "רַכָּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4937-rakaz",
+ "gender": "masculine"
+ }
+ ],
+ "רכזי־": [
+ {
+ "word_nikkud": "רַכָּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4937-rakaz",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוך": [
+ {
+ "word_nikkud": "רִכּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4472-rikuch",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוכים": [
+ {
+ "word_nikkud": "רִכּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4472-rikuch",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוך־": [
+ {
+ "word_nikkud": "רִכּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4472-rikuch",
+ "gender": "masculine"
+ }
+ ],
+ "ריכוכי־": [
+ {
+ "word_nikkud": "רִכּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4472-rikuch",
+ "gender": "masculine"
+ }
+ ],
+ "רכילות": [
+ {
+ "word_nikkud": "רְכִילוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8644-rechilut",
+ "gender": "feminine"
+ }
+ ],
+ "רכילות־": [
+ {
+ "word_nikkud": "רְכִילוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8644-rechilut",
+ "gender": "feminine"
+ }
+ ],
+ "רוכסן": [
+ {
+ "word_nikkud": "רוֹכְסָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8184-rochsan",
+ "gender": "masculine"
+ }
+ ],
+ "רוכסנים": [
+ {
+ "word_nikkud": "רוֹכְסָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8184-rochsan",
+ "gender": "masculine"
+ }
+ ],
+ "רוכסן־": [
+ {
+ "word_nikkud": "רוֹכְסָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8184-rochsan",
+ "gender": "masculine"
+ }
+ ],
+ "רוכסני־": [
+ {
+ "word_nikkud": "רוֹכְסָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8184-rochsan",
+ "gender": "masculine"
+ }
+ ],
+ "רכישה": [
+ {
+ "word_nikkud": "רְכִישָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4228-rechisha",
+ "gender": "feminine"
+ }
+ ],
+ "רכישות": [
+ {
+ "word_nikkud": "רְכִישָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4228-rechisha",
+ "gender": "feminine"
+ }
+ ],
+ "רכישת־": [
+ {
+ "word_nikkud": "רְכִישָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4228-rechisha",
+ "gender": "feminine"
+ }
+ ],
+ "רכישות־": [
+ {
+ "word_nikkud": "רְכִישָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4228-rechisha",
+ "gender": "feminine"
+ }
+ ],
+ "רכש": [
+ {
+ "word_nikkud": "רֶכֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4520-rechesh",
+ "gender": "masculine"
+ }
+ ],
+ "רכש־": [
+ {
+ "word_nikkud": "רֶכֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4520-rechesh",
+ "gender": "masculine"
+ }
+ ],
+ "רכוש": [
+ {
+ "word_nikkud": "רְכוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8106-rechush",
+ "gender": "masculine"
+ }
+ ],
+ "רכושים": [
+ {
+ "word_nikkud": "רְכוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8106-rechush",
+ "gender": "masculine"
+ }
+ ],
+ "רכוש־": [
+ {
+ "word_nikkud": "רְכוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8106-rechush",
+ "gender": "masculine"
+ }
+ ],
+ "רכושי־": [
+ {
+ "word_nikkud": "רְכוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8106-rechush",
+ "gender": "masculine"
+ }
+ ],
+ "רמז": [
+ {
+ "word_nikkud": "רֶמֶז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6091-remez",
+ "gender": "masculine"
+ }
+ ],
+ "רמזים": [
+ {
+ "word_nikkud": "רֶמֶז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6091-remez",
+ "gender": "masculine"
+ }
+ ],
+ "רמז־": [
+ {
+ "word_nikkud": "רֶמֶז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6091-remez",
+ "gender": "masculine"
+ }
+ ],
+ "רמזי־": [
+ {
+ "word_nikkud": "רֶמֶז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6091-remez",
+ "gender": "masculine"
+ }
+ ],
+ "רמזור": [
+ {
+ "word_nikkud": "רַמְזוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6654-ramzor",
+ "gender": "masculine"
+ }
+ ],
+ "רמזורים": [
+ {
+ "word_nikkud": "רַמְזוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6654-ramzor",
+ "gender": "masculine"
+ }
+ ],
+ "רמזור־": [
+ {
+ "word_nikkud": "רַמְזוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6654-ramzor",
+ "gender": "masculine"
+ }
+ ],
+ "רמזורי־": [
+ {
+ "word_nikkud": "רַמְזוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6654-ramzor",
+ "gender": "masculine"
+ }
+ ],
+ "רומח": [
+ {
+ "word_nikkud": "רֹמַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3975-romach",
+ "gender": "masculine"
+ }
+ ],
+ "רמחים": [
+ {
+ "word_nikkud": "רֹמַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3975-romach",
+ "gender": "masculine"
+ }
+ ],
+ "רומח־": [
+ {
+ "word_nikkud": "רֹמַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3975-romach",
+ "gender": "masculine"
+ }
+ ],
+ "רמחי־": [
+ {
+ "word_nikkud": "רֹמַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3975-romach",
+ "gender": "masculine"
+ }
+ ],
+ "רמייה": [
+ {
+ "word_nikkud": "רְמִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8635-remiya",
+ "gender": "feminine"
+ }
+ ],
+ "רמיות": [
+ {
+ "word_nikkud": "רְמִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8635-remiya",
+ "gender": "feminine"
+ }
+ ],
+ "רמיית־": [
+ {
+ "word_nikkud": "רְמִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8635-remiya",
+ "gender": "feminine"
+ }
+ ],
+ "רמיות־": [
+ {
+ "word_nikkud": "רְמִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8635-remiya",
+ "gender": "feminine"
+ }
+ ],
+ "מרמה": [
+ {
+ "word_nikkud": "מִרְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3765-mirma",
+ "gender": "feminine"
+ }
+ ],
+ "מרמת־": [
+ {
+ "word_nikkud": "מִרְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3765-mirma",
+ "gender": "feminine"
+ }
+ ],
+ "רמאי": [
+ {
+ "word_nikkud": "רַמַּאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3953-ramay",
+ "gender": "masculine"
+ }
+ ],
+ "רמאים": [
+ {
+ "word_nikkud": "רַמַּאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3953-ramay",
+ "gender": "masculine"
+ }
+ ],
+ "רמאי־": [
+ {
+ "word_nikkud": "רַמַּאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3953-ramay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "רַמַּאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3953-ramay",
+ "gender": "masculine"
+ }
+ ],
+ "תרמית": [
+ {
+ "word_nikkud": "תַּרְמִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7932-tarmit",
+ "gender": "feminine"
+ }
+ ],
+ "תרמיות": [
+ {
+ "word_nikkud": "תַּרְמִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7932-tarmit",
+ "gender": "feminine"
+ }
+ ],
+ "תרמית־": [
+ {
+ "word_nikkud": "תַּרְמִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7932-tarmit",
+ "gender": "feminine"
+ }
+ ],
+ "תרמיות־": [
+ {
+ "word_nikkud": "תַּרְמִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7932-tarmit",
+ "gender": "feminine"
+ }
+ ],
+ "תרמיל": [
+ {
+ "word_nikkud": "תַּרְמִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6533-tarmil",
+ "gender": "masculine"
+ }
+ ],
+ "תרמילים": [
+ {
+ "word_nikkud": "תַּרְמִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6533-tarmil",
+ "gender": "masculine"
+ }
+ ],
+ "תרמיל־": [
+ {
+ "word_nikkud": "תַּרְמִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6533-tarmil",
+ "gender": "masculine"
+ }
+ ],
+ "תרמילי־": [
+ {
+ "word_nikkud": "תַּרְמִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6533-tarmil",
+ "gender": "masculine"
+ }
+ ],
+ "רמקול": [
+ {
+ "word_nikkud": "רַמְקוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7646-ramkol",
+ "gender": "masculine"
+ }
+ ],
+ "רמקולים": [
+ {
+ "word_nikkud": "רַמְקוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7646-ramkol",
+ "gender": "masculine"
+ }
+ ],
+ "רמקול־": [
+ {
+ "word_nikkud": "רַמְקוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7646-ramkol",
+ "gender": "masculine"
+ }
+ ],
+ "רמקולי־": [
+ {
+ "word_nikkud": "רַמְקוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7646-ramkol",
+ "gender": "masculine"
+ }
+ ],
+ "רמש": [
+ {
+ "word_nikkud": "רֶמֶשׂ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6906-remes",
+ "gender": "masculine"
+ }
+ ],
+ "רמשים": [
+ {
+ "word_nikkud": "רֶמֶשׂ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6906-remes",
+ "gender": "masculine"
+ }
+ ],
+ "רמש־": [
+ {
+ "word_nikkud": "רֶמֶשׂ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6906-remes",
+ "gender": "masculine"
+ }
+ ],
+ "רמשי־": [
+ {
+ "word_nikkud": "רֶמֶשׂ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6906-remes",
+ "gender": "masculine"
+ }
+ ],
+ "רינה": [
+ {
+ "word_nikkud": "רִנָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5643-rina",
+ "gender": "feminine"
+ }
+ ],
+ "רינות": [
+ {
+ "word_nikkud": "רִנָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5643-rina",
+ "gender": "feminine"
+ }
+ ],
+ "רינת־": [
+ {
+ "word_nikkud": "רִנָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5643-rina",
+ "gender": "feminine"
+ }
+ ],
+ "רינות־": [
+ {
+ "word_nikkud": "רִנָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5643-rina",
+ "gender": "feminine"
+ }
+ ],
+ "רננה": [
+ {
+ "word_nikkud": "רְנָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5642-renana",
+ "gender": "feminine"
+ }
+ ],
+ "רננות": [
+ {
+ "word_nikkud": "רְנָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5642-renana",
+ "gender": "feminine"
+ }
+ ],
+ "רננת־": [
+ {
+ "word_nikkud": "רְנָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5642-renana",
+ "gender": "feminine"
+ }
+ ],
+ "רננות־": [
+ {
+ "word_nikkud": "רְנָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5642-renana",
+ "gender": "feminine"
+ }
+ ],
+ "רסן": [
+ {
+ "word_nikkud": "רֶסֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8176-resen",
+ "gender": "masculine"
+ }
+ ],
+ "רסנים": [
+ {
+ "word_nikkud": "רֶסֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8176-resen",
+ "gender": "masculine"
+ }
+ ],
+ "רסן־": [
+ {
+ "word_nikkud": "רֶסֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8176-resen",
+ "gender": "masculine"
+ }
+ ],
+ "רסני־": [
+ {
+ "word_nikkud": "רֶסֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8176-resen",
+ "gender": "masculine"
+ }
+ ],
+ "ריסוס": [
+ {
+ "word_nikkud": "רִסּוּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6417-risus",
+ "gender": "masculine"
+ }
+ ],
+ "ריסוסים": [
+ {
+ "word_nikkud": "רִסּוּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6417-risus",
+ "gender": "masculine"
+ }
+ ],
+ "ריסוס־": [
+ {
+ "word_nikkud": "רִסּוּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6417-risus",
+ "gender": "masculine"
+ }
+ ],
+ "ריסוסי־": [
+ {
+ "word_nikkud": "רִסּוּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6417-risus",
+ "gender": "masculine"
+ }
+ ],
+ "רסיס": [
+ {
+ "word_nikkud": "רְסִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8015-resis",
+ "gender": "masculine"
+ }
+ ],
+ "רסיסים": [
+ {
+ "word_nikkud": "רְסִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8015-resis",
+ "gender": "masculine"
+ }
+ ],
+ "רסיס־": [
+ {
+ "word_nikkud": "רְסִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8015-resis",
+ "gender": "masculine"
+ }
+ ],
+ "רסיסי־": [
+ {
+ "word_nikkud": "רְסִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8015-resis",
+ "gender": "masculine"
+ }
+ ],
+ "התרסקות": [
+ {
+ "word_nikkud": "הִתְרַסְּקוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3715-hitraskut",
+ "gender": "feminine"
+ }
+ ],
+ "התרסקויות": [
+ {
+ "word_nikkud": "הִתְרַסְּקוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3715-hitraskut",
+ "gender": "feminine"
+ }
+ ],
+ "התרסקות־": [
+ {
+ "word_nikkud": "הִתְרַסְּקוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3715-hitraskut",
+ "gender": "feminine"
+ }
+ ],
+ "התרסקויות־": [
+ {
+ "word_nikkud": "הִתְרַסְּקוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3715-hitraskut",
+ "gender": "feminine"
+ }
+ ],
+ "רסק": [
+ {
+ "word_nikkud": "רֶסֶק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6229-resek",
+ "gender": "masculine"
+ }
+ ],
+ "רסקים": [
+ {
+ "word_nikkud": "רֶסֶק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6229-resek",
+ "gender": "masculine"
+ }
+ ],
+ "רסק־": [
+ {
+ "word_nikkud": "רֶסֶק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6229-resek",
+ "gender": "masculine"
+ }
+ ],
+ "רסקי־": [
+ {
+ "word_nikkud": "רֶסֶק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6229-resek",
+ "gender": "masculine"
+ }
+ ],
+ "רוע": [
+ {
+ "word_nikkud": "רֹעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7759-roa",
+ "gender": "masculine"
+ }
+ ],
+ "רוע־": [
+ {
+ "word_nikkud": "רֹעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7759-roa",
+ "gender": "masculine"
+ }
+ ],
+ "רעב": [
+ {
+ "word_nikkud": "רָעָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3341-raav",
+ "gender": "masculine"
+ }
+ ],
+ "רעב־": [
+ {
+ "word_nikkud": "רָעָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3341-raav",
+ "gender": "masculine"
+ }
+ ],
+ "רעבתן": [
+ {
+ "word_nikkud": "רְעַבְתָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3459-reavtan",
+ "gender": "masculine"
+ }
+ ],
+ "רעבתנים": [
+ {
+ "word_nikkud": "רְעַבְתָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3459-reavtan",
+ "gender": "masculine"
+ }
+ ],
+ "רעבתן־": [
+ {
+ "word_nikkud": "רְעַבְתָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3459-reavtan",
+ "gender": "masculine"
+ }
+ ],
+ "רעבתני־": [
+ {
+ "word_nikkud": "רְעַבְתָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3459-reavtan",
+ "gender": "masculine"
+ }
+ ],
+ "רעד": [
+ {
+ "word_nikkud": "רַעַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4775-raad",
+ "gender": "masculine"
+ }
+ ],
+ "רעדים": [
+ {
+ "word_nikkud": "רַעַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4775-raad",
+ "gender": "masculine"
+ }
+ ],
+ "רעד־": [
+ {
+ "word_nikkud": "רַעַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4775-raad",
+ "gender": "masculine"
+ }
+ ],
+ "רעדי־": [
+ {
+ "word_nikkud": "רַעַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4775-raad",
+ "gender": "masculine"
+ }
+ ],
+ "רעידה": [
+ {
+ "word_nikkud": "רְעִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8797-reida",
+ "gender": "feminine"
+ }
+ ],
+ "רעידות": [
+ {
+ "word_nikkud": "רְעִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8797-reida",
+ "gender": "feminine"
+ }
+ ],
+ "רעידת־": [
+ {
+ "word_nikkud": "רְעִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8797-reida",
+ "gender": "feminine"
+ }
+ ],
+ "רעידות־": [
+ {
+ "word_nikkud": "רְעִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8797-reida",
+ "gender": "feminine"
+ }
+ ],
+ "רעות": [
+ {
+ "word_nikkud": "רֵעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8161-reut",
+ "gender": "feminine"
+ }
+ ],
+ "רעות־": [
+ {
+ "word_nikkud": "רֵעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8161-reut",
+ "gender": "feminine"
+ }
+ ],
+ "רעיון": [
+ {
+ "word_nikkud": "רַעֲיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5050-raayon",
+ "gender": "masculine"
+ }
+ ],
+ "רעיונות": [
+ {
+ "word_nikkud": "רַעֲיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5050-raayon",
+ "gender": "masculine"
+ }
+ ],
+ "רעיון־": [
+ {
+ "word_nikkud": "רַעֲיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5050-raayon",
+ "gender": "masculine"
+ }
+ ],
+ "רעיונות־": [
+ {
+ "word_nikkud": "רַעֲיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5050-raayon",
+ "gender": "masculine"
+ }
+ ],
+ "מרעית": [
+ {
+ "word_nikkud": "מַרְעִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8033-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מרעיות": [
+ {
+ "word_nikkud": "מַרְעִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8033-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מרעית־": [
+ {
+ "word_nikkud": "מַרְעִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8033-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מרעיות־": [
+ {
+ "word_nikkud": "מַרְעִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8033-marit",
+ "gender": "feminine"
+ }
+ ],
+ "מרעה": [
+ {
+ "word_nikkud": "מִרְעֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6816-mire",
+ "gender": "masculine"
+ }
+ ],
+ "מרעים": [
+ {
+ "word_nikkud": "מִרְעֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6816-mire",
+ "gender": "masculine"
+ }
+ ],
+ "מרעה־": [
+ {
+ "word_nikkud": "מִרְעֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6816-mire",
+ "gender": "masculine"
+ }
+ ],
+ "מרעי־": [
+ {
+ "word_nikkud": "מִרְעֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6816-mire",
+ "gender": "masculine"
+ }
+ ],
+ "רעידת אדמה": [
+ {
+ "word_nikkud": "רְעִידַת אֲדָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8798-reidat-adama",
+ "gender": ""
+ }
+ ],
+ "רעידות אדמה": [
+ {
+ "word_nikkud": "רְעִידַת אֲדָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8798-reidat-adama",
+ "gender": ""
+ }
+ ],
+ "רעילות": [
+ {
+ "word_nikkud": "רְעִילוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8522-reilut",
+ "gender": "feminine"
+ }
+ ],
+ "רעילויות": [
+ {
+ "word_nikkud": "רְעִילוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8522-reilut",
+ "gender": "feminine"
+ }
+ ],
+ "רעילות־": [
+ {
+ "word_nikkud": "רְעִילוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8522-reilut",
+ "gender": "feminine"
+ }
+ ],
+ "רעילויות־": [
+ {
+ "word_nikkud": "רְעִילוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8522-reilut",
+ "gender": "feminine"
+ }
+ ],
+ "הרעלה": [
+ {
+ "word_nikkud": "הַרְעָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2914-harala",
+ "gender": "feminine"
+ }
+ ],
+ "הרעלות": [
+ {
+ "word_nikkud": "הַרְעָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2914-harala",
+ "gender": "feminine"
+ }
+ ],
+ "הרעלת־": [
+ {
+ "word_nikkud": "הַרְעָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2914-harala",
+ "gender": "feminine"
+ }
+ ],
+ "הרעלות־": [
+ {
+ "word_nikkud": "הַרְעָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2914-harala",
+ "gender": "feminine"
+ }
+ ],
+ "רעל": [
+ {
+ "word_nikkud": "רַעַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4776-raal",
+ "gender": "masculine"
+ }
+ ],
+ "רעלים": [
+ {
+ "word_nikkud": "רַעַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4776-raal",
+ "gender": "masculine"
+ }
+ ],
+ "רעל־": [
+ {
+ "word_nikkud": "רַעַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4776-raal",
+ "gender": "masculine"
+ }
+ ],
+ "רעלי־": [
+ {
+ "word_nikkud": "רַעַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4776-raal",
+ "gender": "masculine"
+ }
+ ],
+ "תרעלה": [
+ {
+ "word_nikkud": "תַּרְעֵלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5001-tarela",
+ "gender": "feminine"
+ }
+ ],
+ "תרעלות": [
+ {
+ "word_nikkud": "תַּרְעֵלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5001-tarela",
+ "gender": "feminine"
+ }
+ ],
+ "תרעלת־": [
+ {
+ "word_nikkud": "תַּרְעֵלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5001-tarela",
+ "gender": "feminine"
+ }
+ ],
+ "תרעלות־": [
+ {
+ "word_nikkud": "תַּרְעֵלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5001-tarela",
+ "gender": "feminine"
+ }
+ ],
+ "רעם": [
+ {
+ "word_nikkud": "רַעַם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4777-raam",
+ "gender": "masculine"
+ }
+ ],
+ "רעמים": [
+ {
+ "word_nikkud": "רַעַם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4777-raam",
+ "gender": "masculine"
+ }
+ ],
+ "רעם־": [
+ {
+ "word_nikkud": "רַעַם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4777-raam",
+ "gender": "masculine"
+ }
+ ],
+ "רעמי־": [
+ {
+ "word_nikkud": "רַעַם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4777-raam",
+ "gender": "masculine"
+ }
+ ],
+ "רענון": [
+ {
+ "word_nikkud": "רִעְנוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4006-rianun",
+ "gender": "masculine"
+ }
+ ],
+ "רענונים": [
+ {
+ "word_nikkud": "רִעְנוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4006-rianun",
+ "gender": "masculine"
+ }
+ ],
+ "רענון־": [
+ {
+ "word_nikkud": "רִעְנוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4006-rianun",
+ "gender": "masculine"
+ }
+ ],
+ "רענוני־": [
+ {
+ "word_nikkud": "רִעְנוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4006-rianun",
+ "gender": "masculine"
+ }
+ ],
+ "רעף": [
+ {
+ "word_nikkud": "רַעַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4778-raaf",
+ "gender": "masculine"
+ }
+ ],
+ "רעפים": [
+ {
+ "word_nikkud": "רַעַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4778-raaf",
+ "gender": "masculine"
+ }
+ ],
+ "רעף־": [
+ {
+ "word_nikkud": "רַעַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4778-raaf",
+ "gender": "masculine"
+ }
+ ],
+ "רעפי־": [
+ {
+ "word_nikkud": "רַעַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4778-raaf",
+ "gender": "masculine"
+ }
+ ],
+ "רעש": [
+ {
+ "word_nikkud": "רַעַשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4774-raash",
+ "gender": "masculine"
+ }
+ ],
+ "רעשים": [
+ {
+ "word_nikkud": "רַעַשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4774-raash",
+ "gender": "masculine"
+ }
+ ],
+ "רעש־": [
+ {
+ "word_nikkud": "רַעַשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4774-raash",
+ "gender": "masculine"
+ }
+ ],
+ "רעשי־": [
+ {
+ "word_nikkud": "רַעַשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4774-raash",
+ "gender": "masculine"
+ }
+ ],
+ "רעשן": [
+ {
+ "word_nikkud": "רַעֲשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9021-raashan",
+ "gender": "masculine"
+ }
+ ],
+ "רעשנים": [
+ {
+ "word_nikkud": "רַעֲשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9021-raashan",
+ "gender": "masculine"
+ }
+ ],
+ "רעשן־": [
+ {
+ "word_nikkud": "רַעֲשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9021-raashan",
+ "gender": "masculine"
+ }
+ ],
+ "רעשני־": [
+ {
+ "word_nikkud": "רַעֲשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9021-raashan",
+ "gender": "masculine"
+ }
+ ],
+ "רופא": [
+ {
+ "word_nikkud": "רוֹפֵא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5514-rofe",
+ "gender": "masculine"
+ }
+ ],
+ "רופאים": [
+ {
+ "word_nikkud": "רוֹפֵא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5514-rofe",
+ "gender": "masculine"
+ }
+ ],
+ "רופא־": [
+ {
+ "word_nikkud": "רוֹפֵא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5514-rofe",
+ "gender": "masculine"
+ }
+ ],
+ "רופאי־": [
+ {
+ "word_nikkud": "רוֹפֵא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5514-rofe",
+ "gender": "masculine"
+ }
+ ],
+ "מרפאה": [
+ {
+ "word_nikkud": "מִרְפָּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3573-mirpaa",
+ "gender": "feminine"
+ }
+ ],
+ "מרפאות": [
+ {
+ "word_nikkud": "מִרְפָּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3573-mirpaa",
+ "gender": "feminine"
+ }
+ ],
+ "מרפאת־": [
+ {
+ "word_nikkud": "מִרְפָּאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3573-mirpaa",
+ "gender": "feminine"
+ }
+ ],
+ "מרפאות־": [
+ {
+ "word_nikkud": "מִרְפָּאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3573-mirpaa",
+ "gender": "feminine"
+ }
+ ],
+ "רפואה": [
+ {
+ "word_nikkud": "רְפוּאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3661-refua",
+ "gender": "feminine"
+ }
+ ],
+ "רפואות": [
+ {
+ "word_nikkud": "רְפוּאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3661-refua",
+ "gender": "feminine"
+ }
+ ],
+ "רפואת־": [
+ {
+ "word_nikkud": "רְפוּאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3661-refua",
+ "gender": "feminine"
+ }
+ ],
+ "רפואות־": [
+ {
+ "word_nikkud": "רְפוּאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3661-refua",
+ "gender": "feminine"
+ }
+ ],
+ "תרופה": [
+ {
+ "word_nikkud": "תְּרוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4390-trufa",
+ "gender": "feminine"
+ }
+ ],
+ "תרופות": [
+ {
+ "word_nikkud": "תְּרוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4390-trufa",
+ "gender": "feminine"
+ }
+ ],
+ "תרופת־": [
+ {
+ "word_nikkud": "תְּרוּפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4390-trufa",
+ "gender": "feminine"
+ }
+ ],
+ "תרופות־": [
+ {
+ "word_nikkud": "תְּרוּפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4390-trufa",
+ "gender": "feminine"
+ }
+ ],
+ "ריפוד": [
+ {
+ "word_nikkud": "רִפּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6645-ripud",
+ "gender": "masculine"
+ }
+ ],
+ "ריפודים": [
+ {
+ "word_nikkud": "רִפּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6645-ripud",
+ "gender": "masculine"
+ }
+ ],
+ "ריפוד־": [
+ {
+ "word_nikkud": "רִפּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6645-ripud",
+ "gender": "masculine"
+ }
+ ],
+ "ריפודי־": [
+ {
+ "word_nikkud": "רִפּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6645-ripud",
+ "gender": "masculine"
+ }
+ ],
+ "רפידה": [
+ {
+ "word_nikkud": "רְפִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9072-refida",
+ "gender": "feminine"
+ }
+ ],
+ "רפידות": [
+ {
+ "word_nikkud": "רְפִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9072-refida",
+ "gender": "feminine"
+ }
+ ],
+ "רפידת־": [
+ {
+ "word_nikkud": "רְפִידָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9072-refida",
+ "gender": "feminine"
+ }
+ ],
+ "רפידות־": [
+ {
+ "word_nikkud": "רְפִידָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9072-refida",
+ "gender": "feminine"
+ }
+ ],
+ "ריפוי": [
+ {
+ "word_nikkud": "רִפּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8728-ripuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריפויים": [
+ {
+ "word_nikkud": "רִפּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8728-ripuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריפוי־": [
+ {
+ "word_nikkud": "רִפּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8728-ripuy",
+ "gender": "masculine"
+ }
+ ],
+ "ריפויי־": [
+ {
+ "word_nikkud": "רִפּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8728-ripuy",
+ "gender": "masculine"
+ }
+ ],
+ "הרפיה": [
+ {
+ "word_nikkud": "הַרְפָּיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7813-harpaya",
+ "gender": "feminine"
+ }
+ ],
+ "הרפיות": [
+ {
+ "word_nikkud": "הַרְפָּיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7813-harpaya",
+ "gender": "feminine"
+ }
+ ],
+ "הרפיית־": [
+ {
+ "word_nikkud": "הַרְפָּיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7813-harpaya",
+ "gender": "feminine"
+ }
+ ],
+ "הרפיות־": [
+ {
+ "word_nikkud": "הַרְפָּיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7813-harpaya",
+ "gender": "feminine"
+ }
+ ],
+ "רפיון": [
+ {
+ "word_nikkud": "רִפְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3591-rifyon",
+ "gender": "masculine"
+ }
+ ],
+ "רפיונות": [
+ {
+ "word_nikkud": "רִפְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3591-rifyon",
+ "gender": "masculine"
+ }
+ ],
+ "רפיון־": [
+ {
+ "word_nikkud": "רִפְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3591-rifyon",
+ "gender": "masculine"
+ }
+ ],
+ "רפיונות־": [
+ {
+ "word_nikkud": "רִפְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3591-rifyon",
+ "gender": "masculine"
+ }
+ ],
+ "מרפסת": [
+ {
+ "word_nikkud": "מִרְפֶּסֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3911-mirpeset",
+ "gender": "feminine"
+ }
+ ],
+ "מרפסות": [
+ {
+ "word_nikkud": "מִרְפֶּסֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3911-mirpeset",
+ "gender": "feminine"
+ }
+ ],
+ "מרפסת־": [
+ {
+ "word_nikkud": "מִרְפֶּסֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3911-mirpeset",
+ "gender": "feminine"
+ }
+ ],
+ "מרפסות־": [
+ {
+ "word_nikkud": "מִרְפֶּסֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3911-mirpeset",
+ "gender": "feminine"
+ }
+ ],
+ "רפיסות": [
+ {
+ "word_nikkud": "רְפִיסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9065-refisut",
+ "gender": "feminine"
+ }
+ ],
+ "רפיסות־": [
+ {
+ "word_nikkud": "רְפִיסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9065-refisut",
+ "gender": "feminine"
+ }
+ ],
+ "התרפסות": [
+ {
+ "word_nikkud": "הִתְרַפְּסוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9066-hitrapsut",
+ "gender": "feminine"
+ }
+ ],
+ "התרפסויות": [
+ {
+ "word_nikkud": "הִתְרַפְּסוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9066-hitrapsut",
+ "gender": "feminine"
+ }
+ ],
+ "התרפסות־": [
+ {
+ "word_nikkud": "הִתְרַפְּסוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9066-hitrapsut",
+ "gender": "feminine"
+ }
+ ],
+ "התרפסויות־": [
+ {
+ "word_nikkud": "הִתְרַפְּסוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9066-hitrapsut",
+ "gender": "feminine"
+ }
+ ],
+ "רף": [
+ {
+ "word_nikkud": "רַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6904-raf",
+ "gender": "masculine"
+ }
+ ],
+ "רפים": [
+ {
+ "word_nikkud": "רַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6904-raf",
+ "gender": "masculine"
+ }
+ ],
+ "רף־": [
+ {
+ "word_nikkud": "רַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6904-raf",
+ "gender": "masculine"
+ }
+ ],
+ "רפי־": [
+ {
+ "word_nikkud": "רַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6904-raf",
+ "gender": "masculine"
+ }
+ ],
+ "מרפק": [
+ {
+ "word_nikkud": "מַרְפֵּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5044-marpek",
+ "gender": "masculine"
+ }
+ ],
+ "מרפקים": [
+ {
+ "word_nikkud": "מַרְפֵּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5044-marpek",
+ "gender": "masculine"
+ }
+ ],
+ "מרפק־": [
+ {
+ "word_nikkud": "מַרְפֵּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5044-marpek",
+ "gender": "masculine"
+ }
+ ],
+ "מרפקי־": [
+ {
+ "word_nikkud": "מַרְפֵּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5044-marpek",
+ "gender": "masculine"
+ }
+ ],
+ "רפרוף": [
+ {
+ "word_nikkud": "רִפְרוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6607-rifruf",
+ "gender": "masculine"
+ }
+ ],
+ "רפרופים": [
+ {
+ "word_nikkud": "רִפְרוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6607-rifruf",
+ "gender": "masculine"
+ }
+ ],
+ "רפרוף־": [
+ {
+ "word_nikkud": "רִפְרוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6607-rifruf",
+ "gender": "masculine"
+ }
+ ],
+ "רפרופי־": [
+ {
+ "word_nikkud": "רִפְרוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6607-rifruf",
+ "gender": "masculine"
+ }
+ ],
+ "רפש": [
+ {
+ "word_nikkud": "רֶפֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6478-refesh",
+ "gender": "masculine"
+ }
+ ],
+ "רפשים": [
+ {
+ "word_nikkud": "רֶפֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6478-refesh",
+ "gender": "masculine"
+ }
+ ],
+ "רפש־": [
+ {
+ "word_nikkud": "רֶפֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6478-refesh",
+ "gender": "masculine"
+ }
+ ],
+ "רפשי־": [
+ {
+ "word_nikkud": "רֶפֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6478-refesh",
+ "gender": "masculine"
+ }
+ ],
+ "רפת": [
+ {
+ "word_nikkud": "רֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8207-refet",
+ "gender": "feminine"
+ }
+ ],
+ "רפתים": [
+ {
+ "word_nikkud": "רֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8207-refet",
+ "gender": "feminine"
+ }
+ ],
+ "רפת־": [
+ {
+ "word_nikkud": "רֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8207-refet",
+ "gender": "feminine"
+ }
+ ],
+ "רפתי־": [
+ {
+ "word_nikkud": "רֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8207-refet",
+ "gender": "feminine"
+ }
+ ],
+ "הרצאה": [
+ {
+ "word_nikkud": "הַרְצָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3880-hartzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרצאות": [
+ {
+ "word_nikkud": "הַרְצָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3880-hartzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרצאת־": [
+ {
+ "word_nikkud": "הַרְצָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3880-hartzaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרצאות־": [
+ {
+ "word_nikkud": "הַרְצָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3880-hartzaa",
+ "gender": "feminine"
+ }
+ ],
+ "רצח": [
+ {
+ "word_nikkud": "רֶצַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4437-retzach",
+ "gender": "masculine"
+ }
+ ],
+ "רצח־": [
+ {
+ "word_nikkud": "רֶצַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4437-retzach",
+ "gender": "masculine"
+ }
+ ],
+ "רצון": [
+ {
+ "word_nikkud": "רָצוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3780-ratzon",
+ "gender": "masculine"
+ }
+ ],
+ "רצונות": [
+ {
+ "word_nikkud": "רָצוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3780-ratzon",
+ "gender": "masculine"
+ }
+ ],
+ "רצון־": [
+ {
+ "word_nikkud": "רָצוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3780-ratzon",
+ "gender": "masculine"
+ }
+ ],
+ "רצונות־": [
+ {
+ "word_nikkud": "רָצוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3780-ratzon",
+ "gender": "masculine"
+ }
+ ],
+ "רצינות": [
+ {
+ "word_nikkud": "רְצִינוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5108-retzinut",
+ "gender": "feminine"
+ }
+ ],
+ "רצינות־": [
+ {
+ "word_nikkud": "רְצִינוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5108-retzinut",
+ "gender": "feminine"
+ }
+ ],
+ "מרצע": [
+ {
+ "word_nikkud": "מַרְצֵעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4314-martzea",
+ "gender": "masculine"
+ }
+ ],
+ "מרצעים": [
+ {
+ "word_nikkud": "מַרְצֵעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4314-martzea",
+ "gender": "masculine"
+ }
+ ],
+ "מרצע־": [
+ {
+ "word_nikkud": "מַרְצֵעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4314-martzea",
+ "gender": "masculine"
+ }
+ ],
+ "מרצעי־": [
+ {
+ "word_nikkud": "מַרְצֵעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4314-martzea",
+ "gender": "masculine"
+ }
+ ],
+ "רצועה": [
+ {
+ "word_nikkud": "רְצוּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8193-retzua",
+ "gender": "feminine"
+ }
+ ],
+ "רצועות": [
+ {
+ "word_nikkud": "רְצוּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8193-retzua",
+ "gender": "feminine"
+ }
+ ],
+ "רצועת־": [
+ {
+ "word_nikkud": "רְצוּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8193-retzua",
+ "gender": "feminine"
+ }
+ ],
+ "רצועות־": [
+ {
+ "word_nikkud": "רְצוּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8193-retzua",
+ "gender": "feminine"
+ }
+ ],
+ "ריצוף": [
+ {
+ "word_nikkud": "רִצּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2996-ritzuf",
+ "gender": "masculine"
+ }
+ ],
+ "ריצופים": [
+ {
+ "word_nikkud": "רִצּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2996-ritzuf",
+ "gender": "masculine"
+ }
+ ],
+ "ריצוף־": [
+ {
+ "word_nikkud": "רִצּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2996-ritzuf",
+ "gender": "masculine"
+ }
+ ],
+ "ריצופי־": [
+ {
+ "word_nikkud": "רִצּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2996-ritzuf",
+ "gender": "masculine"
+ }
+ ],
+ "רצפה": [
+ {
+ "word_nikkud": "רִצְפָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3224-ritzpa",
+ "gender": "feminine"
+ }
+ ],
+ "רצפות": [
+ {
+ "word_nikkud": "רִצְפָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3224-ritzpa",
+ "gender": "feminine"
+ }
+ ],
+ "רצפת־": [
+ {
+ "word_nikkud": "רִצְפָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3224-ritzpa",
+ "gender": "feminine"
+ }
+ ],
+ "רצפות־": [
+ {
+ "word_nikkud": "רִצְפָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3224-ritzpa",
+ "gender": "feminine"
+ }
+ ],
+ "רציף": [
+ {
+ "word_nikkud": "רָצִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4859-ratzif",
+ "gender": "masculine"
+ }
+ ],
+ "רציפים": [
+ {
+ "word_nikkud": "רָצִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4859-ratzif",
+ "gender": "masculine"
+ }
+ ],
+ "רציף־": [
+ {
+ "word_nikkud": "רָצִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4859-ratzif",
+ "gender": "masculine"
+ }
+ ],
+ "רציפי־": [
+ {
+ "word_nikkud": "רָצִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4859-ratzif",
+ "gender": "masculine"
+ }
+ ],
+ "רצף": [
+ {
+ "word_nikkud": "רֶצֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7859-retzef",
+ "gender": "masculine"
+ }
+ ],
+ "רצפים": [
+ {
+ "word_nikkud": "רֶצֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7859-retzef",
+ "gender": "masculine"
+ }
+ ],
+ "רצף־": [
+ {
+ "word_nikkud": "רֶצֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7859-retzef",
+ "gender": "masculine"
+ }
+ ],
+ "רצפי־": [
+ {
+ "word_nikkud": "רֶצֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7859-retzef",
+ "gender": "masculine"
+ }
+ ],
+ "מרצפת": [
+ {
+ "word_nikkud": "מִרְצֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7049-mirtzefet",
+ "gender": "feminine"
+ }
+ ],
+ "מרצפות": [
+ {
+ "word_nikkud": "מִרְצֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7049-mirtzefet",
+ "gender": "feminine"
+ }
+ ],
+ "מרצפת־": [
+ {
+ "word_nikkud": "מִרְצֶפֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7049-mirtzefet",
+ "gender": "feminine"
+ }
+ ],
+ "מרצפות־": [
+ {
+ "word_nikkud": "מִרְצֶפֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7049-mirtzefet",
+ "gender": "feminine"
+ }
+ ],
+ "רקב": [
+ {
+ "word_nikkud": "רָקָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3343-rakav",
+ "gender": "masculine"
+ }
+ ],
+ "רקב־": [
+ {
+ "word_nikkud": "רָקָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3343-rakav",
+ "gender": "masculine"
+ }
+ ],
+ "ריקבון": [
+ {
+ "word_nikkud": "רִקָּבוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5386-rikavon",
+ "gender": "masculine"
+ }
+ ],
+ "ריקבון־": [
+ {
+ "word_nikkud": "רִקָּבוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5386-rikavon",
+ "gender": "masculine"
+ }
+ ],
+ "ריקוד": [
+ {
+ "word_nikkud": "רִקּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2997-rikud",
+ "gender": "masculine"
+ }
+ ],
+ "ריקודים": [
+ {
+ "word_nikkud": "רִקּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2997-rikud",
+ "gender": "masculine"
+ }
+ ],
+ "ריקוד־": [
+ {
+ "word_nikkud": "רִקּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2997-rikud",
+ "gender": "masculine"
+ }
+ ],
+ "ריקודי־": [
+ {
+ "word_nikkud": "רִקּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2997-rikud",
+ "gender": "masculine"
+ }
+ ],
+ "רקדן": [
+ {
+ "word_nikkud": "רַקְדָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3448-rakdan",
+ "gender": "masculine"
+ }
+ ],
+ "רקדנים": [
+ {
+ "word_nikkud": "רַקְדָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3448-rakdan",
+ "gender": "masculine"
+ }
+ ],
+ "רקדן־": [
+ {
+ "word_nikkud": "רַקְדָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3448-rakdan",
+ "gender": "masculine"
+ }
+ ],
+ "רקדני־": [
+ {
+ "word_nikkud": "רַקְדָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3448-rakdan",
+ "gender": "masculine"
+ }
+ ],
+ "רוקחות": [
+ {
+ "word_nikkud": "רוֹקְחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6567-rokchut",
+ "gender": "feminine"
+ }
+ ],
+ "רוקחות־": [
+ {
+ "word_nikkud": "רוֹקְחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6567-rokchut",
+ "gender": "feminine"
+ }
+ ],
+ "רוקח": [
+ {
+ "word_nikkud": "רוֹקֵחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6566-rokeach",
+ "gender": "masculine"
+ }
+ ],
+ "רוקחים": [
+ {
+ "word_nikkud": "רוֹקֵחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6566-rokeach",
+ "gender": "masculine"
+ }
+ ],
+ "רוקח־": [
+ {
+ "word_nikkud": "רוֹקֵחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6566-rokeach",
+ "gender": "masculine"
+ }
+ ],
+ "רוקחי־": [
+ {
+ "word_nikkud": "רוֹקֵחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6566-rokeach",
+ "gender": "masculine"
+ }
+ ],
+ "מרקחת": [
+ {
+ "word_nikkud": "מִרְקַחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6603-mirkachat",
+ "gender": "feminine"
+ }
+ ],
+ "מרקחות": [
+ {
+ "word_nikkud": "מִרְקַחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6603-mirkachat",
+ "gender": "feminine"
+ }
+ ],
+ "מרקחת־": [
+ {
+ "word_nikkud": "מִרְקַחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6603-mirkachat",
+ "gender": "feminine"
+ }
+ ],
+ "מרקחות־": [
+ {
+ "word_nikkud": "מִרְקַחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6603-mirkachat",
+ "gender": "feminine"
+ }
+ ],
+ "רקטה": [
+ {
+ "word_nikkud": "רָקֶטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8633-raketa",
+ "gender": "feminine"
+ }
+ ],
+ "רקטות": [
+ {
+ "word_nikkud": "רָקֶטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8633-raketa",
+ "gender": "feminine"
+ }
+ ],
+ "רקטת־": [
+ {
+ "word_nikkud": "רָקֶטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8633-raketa",
+ "gender": "feminine"
+ }
+ ],
+ "רקטות־": [
+ {
+ "word_nikkud": "רָקֶטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8633-raketa",
+ "gender": "feminine"
+ }
+ ],
+ "רקמה": [
+ {
+ "word_nikkud": "רִקְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3711-rikma",
+ "gender": "feminine"
+ }
+ ],
+ "רקמות": [
+ {
+ "word_nikkud": "רִקְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3711-rikma",
+ "gender": "feminine"
+ }
+ ],
+ "רקמת־": [
+ {
+ "word_nikkud": "רִקְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3711-rikma",
+ "gender": "feminine"
+ }
+ ],
+ "רקמות־": [
+ {
+ "word_nikkud": "רִקְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3711-rikma",
+ "gender": "feminine"
+ }
+ ],
+ "מרקם": [
+ {
+ "word_nikkud": "מִרְקָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7295-mirkam",
+ "gender": "masculine"
+ }
+ ],
+ "מרקמים": [
+ {
+ "word_nikkud": "מִרְקָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7295-mirkam",
+ "gender": "masculine"
+ }
+ ],
+ "מרקם־": [
+ {
+ "word_nikkud": "מִרְקָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7295-mirkam",
+ "gender": "masculine"
+ }
+ ],
+ "מרקמי־": [
+ {
+ "word_nikkud": "מִרְקָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7295-mirkam",
+ "gender": "masculine"
+ }
+ ],
+ "רקיע": [
+ {
+ "word_nikkud": "רָקִיעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3165-rakia",
+ "gender": "masculine"
+ }
+ ],
+ "רקיעים": [
+ {
+ "word_nikkud": "רָקִיעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3165-rakia",
+ "gender": "masculine"
+ }
+ ],
+ "רקיע־": [
+ {
+ "word_nikkud": "רָקִיעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3165-rakia",
+ "gender": "masculine"
+ }
+ ],
+ "רקיעי־": [
+ {
+ "word_nikkud": "רָקִיעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3165-rakia",
+ "gender": "masculine"
+ }
+ ],
+ "מרקע": [
+ {
+ "word_nikkud": "מִרְקָע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3424-mirka",
+ "gender": "masculine"
+ }
+ ],
+ "מרקעים": [
+ {
+ "word_nikkud": "מִרְקָע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3424-mirka",
+ "gender": "masculine"
+ }
+ ],
+ "מרקע־": [
+ {
+ "word_nikkud": "מִרְקָע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3424-mirka",
+ "gender": "masculine"
+ }
+ ],
+ "מרקעי־": [
+ {
+ "word_nikkud": "מִרְקָע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3424-mirka",
+ "gender": "masculine"
+ }
+ ],
+ "רקע": [
+ {
+ "word_nikkud": "רֶקַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8470-reka",
+ "gender": "masculine"
+ }
+ ],
+ "רקעים": [
+ {
+ "word_nikkud": "רֶקַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8470-reka",
+ "gender": "masculine"
+ }
+ ],
+ "רקע־": [
+ {
+ "word_nikkud": "רֶקַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8470-reka",
+ "gender": "masculine"
+ }
+ ],
+ "רקעי־": [
+ {
+ "word_nikkud": "רֶקַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8470-reka",
+ "gender": "masculine"
+ }
+ ],
+ "רקה": [
+ {
+ "word_nikkud": "רַקָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5272-raka",
+ "gender": "feminine"
+ }
+ ],
+ "רקות": [
+ {
+ "word_nikkud": "רַקָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5272-raka",
+ "gender": "feminine"
+ }
+ ],
+ "רקת־": [
+ {
+ "word_nikkud": "רַקָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5272-raka",
+ "gender": "feminine"
+ }
+ ],
+ "רקות־": [
+ {
+ "word_nikkud": "רַקָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5272-raka",
+ "gender": "feminine"
+ }
+ ],
+ "רשות": [
+ {
+ "word_nikkud": "רָשׁוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3776-rashut",
+ "gender": "feminine"
+ }
+ ],
+ "רשויות": [
+ {
+ "word_nikkud": "רָשׁוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3776-rashut",
+ "gender": "feminine"
+ }
+ ],
+ "רשות־": [
+ {
+ "word_nikkud": "רָשׁוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3776-rashut",
+ "gender": "feminine"
+ }
+ ],
+ "רשויות־": [
+ {
+ "word_nikkud": "רָשׁוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3776-rashut",
+ "gender": "feminine"
+ }
+ ],
+ "רישוי": [
+ {
+ "word_nikkud": "רִשּׁוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7418-rishuy",
+ "gender": "masculine"
+ }
+ ],
+ "רישויים": [
+ {
+ "word_nikkud": "רִשּׁוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7418-rishuy",
+ "gender": "masculine"
+ }
+ ],
+ "רישוי־": [
+ {
+ "word_nikkud": "רִשּׁוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7418-rishuy",
+ "gender": "masculine"
+ }
+ ],
+ "רישויי־": [
+ {
+ "word_nikkud": "רִשּׁוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7418-rishuy",
+ "gender": "masculine"
+ }
+ ],
+ "רישיון": [
+ {
+ "word_nikkud": "רִשָּׁיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4014-rishayon",
+ "gender": "masculine"
+ }
+ ],
+ "רישיונות": [
+ {
+ "word_nikkud": "רִשָּׁיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4014-rishayon",
+ "gender": "masculine"
+ }
+ ],
+ "רישיון־": [
+ {
+ "word_nikkud": "רִשָּׁיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4014-rishayon",
+ "gender": "masculine"
+ }
+ ],
+ "רישיונות־": [
+ {
+ "word_nikkud": "רִשָּׁיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4014-rishayon",
+ "gender": "masculine"
+ }
+ ],
+ "התרשלות": [
+ {
+ "word_nikkud": "הִתְרַשְּׁלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7846-hitrashlut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשלויות": [
+ {
+ "word_nikkud": "הִתְרַשְּׁלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7846-hitrashlut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשלות־": [
+ {
+ "word_nikkud": "הִתְרַשְּׁלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7846-hitrashlut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשלויות־": [
+ {
+ "word_nikkud": "הִתְרַשְּׁלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7846-hitrashlut",
+ "gender": "feminine"
+ }
+ ],
+ "רשלנות": [
+ {
+ "word_nikkud": "רַשְׁלָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9278-rashlanut",
+ "gender": "feminine"
+ }
+ ],
+ "רשלנות־": [
+ {
+ "word_nikkud": "רַשְׁלָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9278-rashlanut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשמות": [
+ {
+ "word_nikkud": "הִתְרַשְּׁמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3028-hitrashmut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשמויות": [
+ {
+ "word_nikkud": "הִתְרַשְּׁמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3028-hitrashmut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשמות־": [
+ {
+ "word_nikkud": "הִתְרַשְּׁמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3028-hitrashmut",
+ "gender": "feminine"
+ }
+ ],
+ "התרשמויות־": [
+ {
+ "word_nikkud": "הִתְרַשְּׁמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3028-hitrashmut",
+ "gender": "feminine"
+ }
+ ],
+ "הרשמה": [
+ {
+ "word_nikkud": "הַרְשָׁמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3387-harshama",
+ "gender": "feminine"
+ }
+ ],
+ "הרשמות": [
+ {
+ "word_nikkud": "הַרְשָׁמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3387-harshama",
+ "gender": "feminine"
+ }
+ ],
+ "הרשמת־": [
+ {
+ "word_nikkud": "הַרְשָׁמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3387-harshama",
+ "gender": "feminine"
+ }
+ ],
+ "הרשמות־": [
+ {
+ "word_nikkud": "הַרְשָׁמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3387-harshama",
+ "gender": "feminine"
+ }
+ ],
+ "תרשים": [
+ {
+ "word_nikkud": "תַּרְשִׁים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3619-tarshim",
+ "gender": "masculine"
+ }
+ ],
+ "תרשימים": [
+ {
+ "word_nikkud": "תַּרְשִׁים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3619-tarshim",
+ "gender": "masculine"
+ }
+ ],
+ "תרשים־": [
+ {
+ "word_nikkud": "תַּרְשִׁים",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3619-tarshim",
+ "gender": "masculine"
+ }
+ ],
+ "תרשימי־": [
+ {
+ "word_nikkud": "תַּרְשִׁים",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3619-tarshim",
+ "gender": "masculine"
+ }
+ ],
+ "רושם": [
+ {
+ "word_nikkud": "רֹשֶׁם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3845-roshem",
+ "gender": "masculine"
+ }
+ ],
+ "רשמים": [
+ {
+ "word_nikkud": "רֹשֶׁם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3845-roshem",
+ "gender": "masculine"
+ }
+ ],
+ "רושם־": [
+ {
+ "word_nikkud": "רֹשֶׁם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3845-roshem",
+ "gender": "masculine"
+ }
+ ],
+ "רשמי־": [
+ {
+ "word_nikkud": "רֹשֶׁם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3845-roshem",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "רֹשֶׁם",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3845-roshem",
+ "gender": "masculine"
+ }
+ ],
+ "רשימה": [
+ {
+ "word_nikkud": "רְשִׁימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4901-reshima",
+ "gender": "feminine"
+ }
+ ],
+ "רשימות": [
+ {
+ "word_nikkud": "רְשִׁימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4901-reshima",
+ "gender": "feminine"
+ }
+ ],
+ "רשימת־": [
+ {
+ "word_nikkud": "רְשִׁימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4901-reshima",
+ "gender": "feminine"
+ }
+ ],
+ "רשימות־": [
+ {
+ "word_nikkud": "רְשִׁימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4901-reshima",
+ "gender": "feminine"
+ }
+ ],
+ "רישום": [
+ {
+ "word_nikkud": "רִשּׁוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6288-rishum",
+ "gender": "masculine"
+ }
+ ],
+ "רישומים": [
+ {
+ "word_nikkud": "רִשּׁוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6288-rishum",
+ "gender": "masculine"
+ }
+ ],
+ "רישום־": [
+ {
+ "word_nikkud": "רִשּׁוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6288-rishum",
+ "gender": "masculine"
+ }
+ ],
+ "רישומי־": [
+ {
+ "word_nikkud": "רִשּׁוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6288-rishum",
+ "gender": "masculine"
+ }
+ ],
+ "מרשם": [
+ {
+ "word_nikkud": "מִרְשָׁם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7013-mirsham",
+ "gender": "masculine"
+ }
+ ],
+ "מרשמים": [
+ {
+ "word_nikkud": "מִרְשָׁם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7013-mirsham",
+ "gender": "masculine"
+ }
+ ],
+ "מרשם־": [
+ {
+ "word_nikkud": "מִרְשָׁם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7013-mirsham",
+ "gender": "masculine"
+ }
+ ],
+ "מרשמי־": [
+ {
+ "word_nikkud": "מִרְשָׁם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7013-mirsham",
+ "gender": "masculine"
+ }
+ ],
+ "רשע": [
+ {
+ "word_nikkud": "רֶשַׁע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3802-resha",
+ "gender": "masculine"
+ }
+ ],
+ "רשעים": [
+ {
+ "word_nikkud": "רֶשַׁע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3802-resha",
+ "gender": "masculine"
+ }
+ ],
+ "רשע־": [
+ {
+ "word_nikkud": "רֶשַׁע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3802-resha",
+ "gender": "masculine"
+ }
+ ],
+ "רשעי־": [
+ {
+ "word_nikkud": "רֶשַׁע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3802-resha",
+ "gender": "masculine"
+ }
+ ],
+ "רשעה": [
+ {
+ "word_nikkud": "רִשְׁעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3803-risha",
+ "gender": "feminine"
+ }
+ ],
+ "רשעות": [
+ {
+ "word_nikkud": "רִשְׁעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3803-risha",
+ "gender": "feminine"
+ }
+ ],
+ "רשעת־": [
+ {
+ "word_nikkud": "רִשְׁעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3803-risha",
+ "gender": "feminine"
+ }
+ ],
+ "רשעות־": [
+ {
+ "word_nikkud": "רִשְׁעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3803-risha",
+ "gender": "feminine"
+ }
+ ],
+ "הרשעה": [
+ {
+ "word_nikkud": "הַרְשָׁעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4343-harshaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרשעות": [
+ {
+ "word_nikkud": "הַרְשָׁעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4343-harshaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרשעת־": [
+ {
+ "word_nikkud": "הַרְשָׁעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4343-harshaa",
+ "gender": "feminine"
+ }
+ ],
+ "הרשעות־": [
+ {
+ "word_nikkud": "הַרְשָׁעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4343-harshaa",
+ "gender": "feminine"
+ }
+ ],
+ "רשף": [
+ {
+ "word_nikkud": "רֶשֶׁף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4562-reshef",
+ "gender": "masculine"
+ }
+ ],
+ "רשפים": [
+ {
+ "word_nikkud": "רֶשֶׁף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4562-reshef",
+ "gender": "masculine"
+ }
+ ],
+ "רשף־": [
+ {
+ "word_nikkud": "רֶשֶׁף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4562-reshef",
+ "gender": "masculine"
+ }
+ ],
+ "רשפי־": [
+ {
+ "word_nikkud": "רֶשֶׁף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4562-reshef",
+ "gender": "masculine"
+ }
+ ],
+ "רשרוש": [
+ {
+ "word_nikkud": "רִשְׁרוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9177-rishrush",
+ "gender": "masculine"
+ }
+ ],
+ "רשרוש־": [
+ {
+ "word_nikkud": "רִשְׁרוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9177-rishrush",
+ "gender": "masculine"
+ }
+ ],
+ "רשת": [
+ {
+ "word_nikkud": "רֶשֶׁת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3382-reshet",
+ "gender": "feminine"
+ }
+ ],
+ "רשתות": [
+ {
+ "word_nikkud": "רֶשֶׁת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3382-reshet",
+ "gender": "feminine"
+ }
+ ],
+ "רשת־": [
+ {
+ "word_nikkud": "רֶשֶׁת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3382-reshet",
+ "gender": "feminine"
+ }
+ ],
+ "רשתות־": [
+ {
+ "word_nikkud": "רֶשֶׁת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3382-reshet",
+ "gender": "feminine"
+ }
+ ],
+ "רתיחה": [
+ {
+ "word_nikkud": "רְתִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8518-reticha",
+ "gender": "feminine"
+ }
+ ],
+ "רתיחת־": [
+ {
+ "word_nikkud": "רְתִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8518-reticha",
+ "gender": "feminine"
+ }
+ ],
+ "ריתוך": [
+ {
+ "word_nikkud": "רִתּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6586-rituch",
+ "gender": "masculine"
+ }
+ ],
+ "ריתוכים": [
+ {
+ "word_nikkud": "רִתּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6586-rituch",
+ "gender": "masculine"
+ }
+ ],
+ "ריתוך־": [
+ {
+ "word_nikkud": "רִתּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6586-rituch",
+ "gender": "masculine"
+ }
+ ],
+ "ריתוכי־": [
+ {
+ "word_nikkud": "רִתּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6586-rituch",
+ "gender": "masculine"
+ }
+ ],
+ "רותם": [
+ {
+ "word_nikkud": "רֹתֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8380-rotem",
+ "gender": "masculine"
+ }
+ ],
+ "רתמים": [
+ {
+ "word_nikkud": "רֹתֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8380-rotem",
+ "gender": "masculine"
+ }
+ ],
+ "רותם־": [
+ {
+ "word_nikkud": "רֹתֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8380-rotem",
+ "gender": "masculine"
+ }
+ ],
+ "רתמי־": [
+ {
+ "word_nikkud": "רֹתֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8380-rotem",
+ "gender": "masculine"
+ }
+ ],
+ "מרתף": [
+ {
+ "word_nikkud": "מַרְתֵּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3933-martef",
+ "gender": "masculine"
+ }
+ ],
+ "מרתפים": [
+ {
+ "word_nikkud": "מַרְתֵּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3933-martef",
+ "gender": "masculine"
+ }
+ ],
+ "מרתף־": [
+ {
+ "word_nikkud": "מַרְתֵּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3933-martef",
+ "gender": "masculine"
+ }
+ ],
+ "מרתפי־": [
+ {
+ "word_nikkud": "מַרְתֵּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3933-martef",
+ "gender": "masculine"
+ }
+ ],
+ "משאב": [
+ {
+ "word_nikkud": "מַשְׁאָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3519-mashav",
+ "gender": "masculine"
+ }
+ ],
+ "משאבים": [
+ {
+ "word_nikkud": "מַשְׁאָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3519-mashav",
+ "gender": "masculine"
+ }
+ ],
+ "משאב־": [
+ {
+ "word_nikkud": "מַשְׁאָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3519-mashav",
+ "gender": "masculine"
+ }
+ ],
+ "משאבי־": [
+ {
+ "word_nikkud": "מַשְׁאָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3519-mashav",
+ "gender": "masculine"
+ }
+ ],
+ "משאבה": [
+ {
+ "word_nikkud": "מַשְׁאֵבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7026-masheva",
+ "gender": "feminine"
+ }
+ ],
+ "משאבות": [
+ {
+ "word_nikkud": "מַשְׁאֵבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7026-masheva",
+ "gender": "feminine"
+ }
+ ],
+ "משאבת־": [
+ {
+ "word_nikkud": "מַשְׁאֵבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7026-masheva",
+ "gender": "feminine"
+ }
+ ],
+ "משאבות־": [
+ {
+ "word_nikkud": "מַשְׁאֵבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7026-masheva",
+ "gender": "feminine"
+ }
+ ],
+ "שואה": [
+ {
+ "word_nikkud": "שׁוֹאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7205-shoa",
+ "gender": "feminine"
+ }
+ ],
+ "שואות": [
+ {
+ "word_nikkud": "שׁוֹאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7205-shoa",
+ "gender": "feminine"
+ }
+ ],
+ "שואת־": [
+ {
+ "word_nikkud": "שׁוֹאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7205-shoa",
+ "gender": "feminine"
+ }
+ ],
+ "שואות־": [
+ {
+ "word_nikkud": "שׁוֹאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7205-shoa",
+ "gender": "feminine"
+ }
+ ],
+ "שאלה": [
+ {
+ "word_nikkud": "שְׁאֵלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2843-sheela",
+ "gender": "feminine"
+ }
+ ],
+ "שאלות": [
+ {
+ "word_nikkud": "שְׁאֵלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2843-sheela",
+ "gender": "feminine"
+ }
+ ],
+ "שאלת־": [
+ {
+ "word_nikkud": "שְׁאֵלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2843-sheela",
+ "gender": "feminine"
+ }
+ ],
+ "שאלות־": [
+ {
+ "word_nikkud": "שְׁאֵלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2843-sheela",
+ "gender": "feminine"
+ }
+ ],
+ "השאלה": [
+ {
+ "word_nikkud": "הַשְׁאָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2917-hashala",
+ "gender": "feminine"
+ }
+ ],
+ "השאלות": [
+ {
+ "word_nikkud": "הַשְׁאָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2917-hashala",
+ "gender": "feminine"
+ }
+ ],
+ "השאלת־": [
+ {
+ "word_nikkud": "הַשְׁאָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2917-hashala",
+ "gender": "feminine"
+ }
+ ],
+ "השאלות־": [
+ {
+ "word_nikkud": "הַשְׁאָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2917-hashala",
+ "gender": "feminine"
+ }
+ ],
+ "משאל": [
+ {
+ "word_nikkud": "מִשְׁאָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3944-mishal",
+ "gender": "masculine"
+ }
+ ],
+ "משאלים": [
+ {
+ "word_nikkud": "מִשְׁאָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3944-mishal",
+ "gender": "masculine"
+ }
+ ],
+ "משאל־": [
+ {
+ "word_nikkud": "מִשְׁאָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3944-mishal",
+ "gender": "masculine"
+ }
+ ],
+ "משאלי־": [
+ {
+ "word_nikkud": "מִשְׁאָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3944-mishal",
+ "gender": "masculine"
+ }
+ ],
+ "שאילה": [
+ {
+ "word_nikkud": "שְׁאִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5113-sheila",
+ "gender": "feminine"
+ }
+ ],
+ "שאילות": [
+ {
+ "word_nikkud": "שְׁאִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5113-sheila",
+ "gender": "feminine"
+ }
+ ],
+ "שאילת־": [
+ {
+ "word_nikkud": "שְׁאִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5113-sheila",
+ "gender": "feminine"
+ }
+ ],
+ "שאילות־": [
+ {
+ "word_nikkud": "שְׁאִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5113-sheila",
+ "gender": "feminine"
+ }
+ ],
+ "שאלון": [
+ {
+ "word_nikkud": "שְׁאֵלוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7658-sheelon",
+ "gender": "masculine"
+ }
+ ],
+ "שאלונים": [
+ {
+ "word_nikkud": "שְׁאֵלוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7658-sheelon",
+ "gender": "masculine"
+ }
+ ],
+ "שאלון־": [
+ {
+ "word_nikkud": "שְׁאֵלוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7658-sheelon",
+ "gender": "masculine"
+ }
+ ],
+ "שאלוני־": [
+ {
+ "word_nikkud": "שְׁאֵלוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7658-sheelon",
+ "gender": "masculine"
+ }
+ ],
+ "משאלה": [
+ {
+ "word_nikkud": "מִשְׁאָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6811-mishala",
+ "gender": "feminine"
+ }
+ ],
+ "משאלות": [
+ {
+ "word_nikkud": "מִשְׁאָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6811-mishala",
+ "gender": "feminine"
+ }
+ ],
+ "משאלת־": [
+ {
+ "word_nikkud": "מִשְׁאָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6811-mishala",
+ "gender": "feminine"
+ }
+ ],
+ "משאלות־": [
+ {
+ "word_nikkud": "מִשְׁאָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6811-mishala",
+ "gender": "feminine"
+ }
+ ],
+ "שאיפה": [
+ {
+ "word_nikkud": "שְׁאִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4279-sheifa",
+ "gender": "feminine"
+ }
+ ],
+ "שאיפות": [
+ {
+ "word_nikkud": "שְׁאִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4279-sheifa",
+ "gender": "feminine"
+ }
+ ],
+ "שאיפת־": [
+ {
+ "word_nikkud": "שְׁאִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4279-sheifa",
+ "gender": "feminine"
+ }
+ ],
+ "שאיפות־": [
+ {
+ "word_nikkud": "שְׁאִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4279-sheifa",
+ "gender": "feminine"
+ }
+ ],
+ "משאף": [
+ {
+ "word_nikkud": "מַשְׁאֵף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8878-mashef",
+ "gender": "masculine"
+ }
+ ],
+ "משאפים": [
+ {
+ "word_nikkud": "מַשְׁאֵף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8878-mashef",
+ "gender": "masculine"
+ }
+ ],
+ "משאף־": [
+ {
+ "word_nikkud": "מַשְׁאֵף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8878-mashef",
+ "gender": "masculine"
+ }
+ ],
+ "משאפי־": [
+ {
+ "word_nikkud": "מַשְׁאֵף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8878-mashef",
+ "gender": "masculine"
+ }
+ ],
+ "שאר": [
+ {
+ "word_nikkud": "שְׁאָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3501-shear",
+ "gender": "masculine"
+ }
+ ],
+ "שאר־": [
+ {
+ "word_nikkud": "שְׁאָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3501-shear",
+ "gender": "masculine"
+ }
+ ],
+ "שאור": [
+ {
+ "word_nikkud": "שְׂאוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6196-seor",
+ "gender": "masculine"
+ }
+ ],
+ "שאור־": [
+ {
+ "word_nikkud": "שְׂאוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6196-seor",
+ "gender": "masculine"
+ }
+ ],
+ "שארית": [
+ {
+ "word_nikkud": "שְׁאֵרִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6743-sheerit",
+ "gender": "feminine"
+ }
+ ],
+ "שאריות": [
+ {
+ "word_nikkud": "שְׁאֵרִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6743-sheerit",
+ "gender": "feminine"
+ }
+ ],
+ "שארית־": [
+ {
+ "word_nikkud": "שְׁאֵרִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6743-sheerit",
+ "gender": "feminine"
+ }
+ ],
+ "שאריות־": [
+ {
+ "word_nikkud": "שְׁאֵרִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6743-sheerit",
+ "gender": "feminine"
+ }
+ ],
+ "הישארות": [
+ {
+ "word_nikkud": "הִשָּׁאֲרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8566-hishaarut",
+ "gender": "feminine"
+ }
+ ],
+ "הישארות־": [
+ {
+ "word_nikkud": "הִשָּׁאֲרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8566-hishaarut",
+ "gender": "feminine"
+ }
+ ],
+ "שביב": [
+ {
+ "word_nikkud": "שְׁבִיב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8143-shviv",
+ "gender": "masculine"
+ }
+ ],
+ "שביבים": [
+ {
+ "word_nikkud": "שְׁבִיב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8143-shviv",
+ "gender": "masculine"
+ }
+ ],
+ "שביב־": [
+ {
+ "word_nikkud": "שְׁבִיב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8143-shviv",
+ "gender": "masculine"
+ }
+ ],
+ "שביבי־": [
+ {
+ "word_nikkud": "שְׁבִיב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8143-shviv",
+ "gender": "masculine"
+ }
+ ],
+ "שבב": [
+ {
+ "word_nikkud": "שְׁבָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6716-shvav",
+ "gender": "masculine"
+ }
+ ],
+ "שבבים": [
+ {
+ "word_nikkud": "שְׁבָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6716-shvav",
+ "gender": "masculine"
+ }
+ ],
+ "שבב־": [
+ {
+ "word_nikkud": "שְׁבָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6716-shvav",
+ "gender": "masculine"
+ }
+ ],
+ "שבבי־": [
+ {
+ "word_nikkud": "שְׁבָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6716-shvav",
+ "gender": "masculine"
+ }
+ ],
+ "שבח": [
+ {
+ "word_nikkud": "שֶׁבַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5254-shevach",
+ "gender": "masculine"
+ }
+ ],
+ "שבחים": [
+ {
+ "word_nikkud": "שֶׁבַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5254-shevach",
+ "gender": "masculine"
+ }
+ ],
+ "שבח־": [
+ {
+ "word_nikkud": "שֶׁבַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5254-shevach",
+ "gender": "masculine"
+ }
+ ],
+ "שבחי־": [
+ {
+ "word_nikkud": "שֶׁבַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5254-shevach",
+ "gender": "masculine"
+ }
+ ],
+ "שבט": [
+ {
+ "word_nikkud": "שֵׁבֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7629-shevet",
+ "gender": "masculine"
+ }
+ ],
+ "שבטים": [
+ {
+ "word_nikkud": "שֵׁבֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7629-shevet",
+ "gender": "masculine"
+ }
+ ],
+ "שבט־": [
+ {
+ "word_nikkud": "שֵׁבֶט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7629-shevet",
+ "gender": "masculine"
+ }
+ ],
+ "שבטי־": [
+ {
+ "word_nikkud": "שֵׁבֶט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7629-shevet",
+ "gender": "masculine"
+ }
+ ],
+ "שבי": [
+ {
+ "word_nikkud": "שֶׁבִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8417-shevi",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "שֶׁבִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8417-shevi",
+ "gender": "masculine"
+ }
+ ],
+ "שבי־": [
+ {
+ "word_nikkud": "שֶׁבִי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8417-shevi",
+ "gender": "masculine"
+ }
+ ],
+ "שיבולת": [
+ {
+ "word_nikkud": "שִׁבֹּלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3270-shibolet",
+ "gender": "feminine"
+ }
+ ],
+ "שיבולים": [
+ {
+ "word_nikkud": "שִׁבֹּלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3270-shibolet",
+ "gender": "feminine"
+ }
+ ],
+ "שיבולת־": [
+ {
+ "word_nikkud": "שִׁבֹּלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3270-shibolet",
+ "gender": "feminine"
+ }
+ ],
+ "שיבולי־": [
+ {
+ "word_nikkud": "שִׁבֹּלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3270-shibolet",
+ "gender": "feminine"
+ }
+ ],
+ "שביל": [
+ {
+ "word_nikkud": "שְׁבִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3836-shvil",
+ "gender": "masculine"
+ }
+ ],
+ "שבילים": [
+ {
+ "word_nikkud": "שְׁבִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3836-shvil",
+ "gender": "masculine"
+ }
+ ],
+ "שביל־": [
+ {
+ "word_nikkud": "שְׁבִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3836-shvil",
+ "gender": "masculine"
+ }
+ ],
+ "שבילי־": [
+ {
+ "word_nikkud": "שְׁבִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3836-shvil",
+ "gender": "masculine"
+ }
+ ],
+ "שביעה": [
+ {
+ "word_nikkud": "שְׂבִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5862-svia",
+ "gender": "feminine"
+ }
+ ],
+ "שביעות": [
+ {
+ "word_nikkud": "שְׂבִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5862-svia",
+ "gender": "feminine"
+ }
+ ],
+ "שביעת־": [
+ {
+ "word_nikkud": "שְׂבִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5862-svia",
+ "gender": "feminine"
+ }
+ ],
+ "שביעות־": [
+ {
+ "word_nikkud": "שְׂבִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5862-svia",
+ "gender": "feminine"
+ }
+ ],
+ "שבועה": [
+ {
+ "word_nikkud": "שְׁבוּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3662-shvua",
+ "gender": "feminine"
+ }
+ ],
+ "שבועות": [
+ {
+ "word_nikkud": "שְׁבוּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3662-shvua",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שָׁבוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3958-shavua",
+ "gender": "masculine"
+ }
+ ],
+ "שבועת־": [
+ {
+ "word_nikkud": "שְׁבוּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3662-shvua",
+ "gender": "feminine"
+ }
+ ],
+ "שבועות־": [
+ {
+ "word_nikkud": "שְׁבוּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3662-shvua",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שָׁבוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3958-shavua",
+ "gender": "masculine"
+ }
+ ],
+ "שבוע": [
+ {
+ "word_nikkud": "שָׁבוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3958-shavua",
+ "gender": "masculine"
+ }
+ ],
+ "שבוע־": [
+ {
+ "word_nikkud": "שָׁבוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3958-shavua",
+ "gender": "masculine"
+ }
+ ],
+ "שבועיים": [
+ {
+ "word_nikkud": "שְׁבוּעַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7865-shvuayim",
+ "gender": "masculine"
+ }
+ ],
+ "משבצת": [
+ {
+ "word_nikkud": "מִשְׁבֶּצֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3278-mishbetzet",
+ "gender": "feminine"
+ }
+ ],
+ "משבצות": [
+ {
+ "word_nikkud": "מִשְׁבֶּצֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3278-mishbetzet",
+ "gender": "feminine"
+ }
+ ],
+ "משבצת־": [
+ {
+ "word_nikkud": "מִשְׁבֶּצֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3278-mishbetzet",
+ "gender": "feminine"
+ }
+ ],
+ "משבצות־": [
+ {
+ "word_nikkud": "מִשְׁבֶּצֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3278-mishbetzet",
+ "gender": "feminine"
+ }
+ ],
+ "שבץ": [
+ {
+ "word_nikkud": "שָׁבָץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9030-shavatz",
+ "gender": "masculine"
+ }
+ ],
+ "שבצים": [
+ {
+ "word_nikkud": "שָׁבָץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9030-shavatz",
+ "gender": "masculine"
+ }
+ ],
+ "שבץ־": [
+ {
+ "word_nikkud": "שָׁבָץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9030-shavatz",
+ "gender": "masculine"
+ }
+ ],
+ "שבצי־": [
+ {
+ "word_nikkud": "שָׁבָץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9030-shavatz",
+ "gender": "masculine"
+ }
+ ],
+ "משבר": [
+ {
+ "word_nikkud": "מַשְׁבֵּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3515-mashber",
+ "gender": "masculine"
+ }
+ ],
+ "משברים": [
+ {
+ "word_nikkud": "מַשְׁבֵּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3515-mashber",
+ "gender": "masculine"
+ }
+ ],
+ "משבר־": [
+ {
+ "word_nikkud": "מַשְׁבֵּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3515-mashber",
+ "gender": "masculine"
+ }
+ ],
+ "משברי־": [
+ {
+ "word_nikkud": "מַשְׁבֵּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3515-mashber",
+ "gender": "masculine"
+ }
+ ],
+ "שבר": [
+ {
+ "word_nikkud": "שֶׁבֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4379-shever",
+ "gender": "masculine"
+ }
+ ],
+ "שברים": [
+ {
+ "word_nikkud": "שֶׁבֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4379-shever",
+ "gender": "masculine"
+ }
+ ],
+ "שבר־": [
+ {
+ "word_nikkud": "שֶׁבֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4379-shever",
+ "gender": "masculine"
+ }
+ ],
+ "שברי־": [
+ {
+ "word_nikkud": "שֶׁבֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4379-shever",
+ "gender": "masculine"
+ }
+ ],
+ "שבריר": [
+ {
+ "word_nikkud": "שַׁבְרִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7897-shavrir",
+ "gender": "masculine"
+ }
+ ],
+ "שברירים": [
+ {
+ "word_nikkud": "שַׁבְרִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7897-shavrir",
+ "gender": "masculine"
+ }
+ ],
+ "שבריר־": [
+ {
+ "word_nikkud": "שַׁבְרִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7897-shavrir",
+ "gender": "masculine"
+ }
+ ],
+ "שברירי־": [
+ {
+ "word_nikkud": "שַׁבְרִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7897-shavrir",
+ "gender": "masculine"
+ }
+ ],
+ "שיבוש": [
+ {
+ "word_nikkud": "שִׁבּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8068-shibush",
+ "gender": "masculine"
+ }
+ ],
+ "שיבושים": [
+ {
+ "word_nikkud": "שִׁבּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8068-shibush",
+ "gender": "masculine"
+ }
+ ],
+ "שיבוש־": [
+ {
+ "word_nikkud": "שִׁבּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8068-shibush",
+ "gender": "masculine"
+ }
+ ],
+ "שיבושי־": [
+ {
+ "word_nikkud": "שִׁבּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8068-shibush",
+ "gender": "masculine"
+ }
+ ],
+ "שביתה": [
+ {
+ "word_nikkud": "שְׁבִיתָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5077-shvita",
+ "gender": "feminine"
+ }
+ ],
+ "שביתות": [
+ {
+ "word_nikkud": "שְׁבִיתָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5077-shvita",
+ "gender": "feminine"
+ }
+ ],
+ "שביתת־": [
+ {
+ "word_nikkud": "שְׁבִיתָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5077-shvita",
+ "gender": "feminine"
+ }
+ ],
+ "שביתות־": [
+ {
+ "word_nikkud": "שְׁבִיתָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5077-shvita",
+ "gender": "feminine"
+ }
+ ],
+ "שבת": [
+ {
+ "word_nikkud": "שַׁבָּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5078-shabat",
+ "gender": "feminine"
+ }
+ ],
+ "שבתות": [
+ {
+ "word_nikkud": "שַׁבָּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5078-shabat",
+ "gender": "feminine"
+ }
+ ],
+ "שבת־": [
+ {
+ "word_nikkud": "שַׁבָּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5078-shabat",
+ "gender": "feminine"
+ }
+ ],
+ "שבתות־": [
+ {
+ "word_nikkud": "שַׁבָּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5078-shabat",
+ "gender": "feminine"
+ }
+ ],
+ "שבתאי": [
+ {
+ "word_nikkud": "שַׁבְּתַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8002-shabtay",
+ "gender": "masculine"
+ }
+ ],
+ "שגיאה": [
+ {
+ "word_nikkud": "שְׁגִיאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5183-shgia",
+ "gender": "feminine"
+ }
+ ],
+ "שגיאות": [
+ {
+ "word_nikkud": "שְׁגִיאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5183-shgia",
+ "gender": "feminine"
+ }
+ ],
+ "שגיאת־": [
+ {
+ "word_nikkud": "שְׁגִיאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5183-shgia",
+ "gender": "feminine"
+ }
+ ],
+ "שגיאות־": [
+ {
+ "word_nikkud": "שְׁגִיאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5183-shgia",
+ "gender": "feminine"
+ }
+ ],
+ "משגב": [
+ {
+ "word_nikkud": "מִשְׂגָּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9086-misgav",
+ "gender": "masculine"
+ }
+ ],
+ "משגבים": [
+ {
+ "word_nikkud": "מִשְׂגָּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9086-misgav",
+ "gender": "masculine"
+ }
+ ],
+ "משגב־": [
+ {
+ "word_nikkud": "מִשְׂגָּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9086-misgav",
+ "gender": "masculine"
+ }
+ ],
+ "משגבי־": [
+ {
+ "word_nikkud": "מִשְׂגָּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9086-misgav",
+ "gender": "masculine"
+ }
+ ],
+ "השגחה": [
+ {
+ "word_nikkud": "הַשְׁגָּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4370-hashgacha",
+ "gender": "feminine"
+ }
+ ],
+ "השגחות": [
+ {
+ "word_nikkud": "הַשְׁגָּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4370-hashgacha",
+ "gender": "feminine"
+ }
+ ],
+ "השגחת־": [
+ {
+ "word_nikkud": "הַשְׁגָּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4370-hashgacha",
+ "gender": "feminine"
+ }
+ ],
+ "השגחות־": [
+ {
+ "word_nikkud": "הַשְׁגָּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4370-hashgacha",
+ "gender": "feminine"
+ }
+ ],
+ "משגיח": [
+ {
+ "word_nikkud": "מַשְׁגִּיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7940-mashgiach",
+ "gender": "masculine"
+ }
+ ],
+ "משגיחים": [
+ {
+ "word_nikkud": "מַשְׁגִּיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7940-mashgiach",
+ "gender": "masculine"
+ }
+ ],
+ "משגיח־": [
+ {
+ "word_nikkud": "מַשְׁגִּיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7940-mashgiach",
+ "gender": "masculine"
+ }
+ ],
+ "משגיחי־": [
+ {
+ "word_nikkud": "מַשְׁגִּיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7940-mashgiach",
+ "gender": "masculine"
+ }
+ ],
+ "שיגיון": [
+ {
+ "word_nikkud": "שִׁגָּיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5297-shigayon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגיונות": [
+ {
+ "word_nikkud": "שִׁגָּיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5297-shigayon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגיון־": [
+ {
+ "word_nikkud": "שִׁגָּיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5297-shigayon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגיונות־": [
+ {
+ "word_nikkud": "שִׁגָּיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5297-shigayon",
+ "gender": "masculine"
+ }
+ ],
+ "משגל": [
+ {
+ "word_nikkud": "מִשְׁגָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8286-mishgal",
+ "gender": "masculine"
+ }
+ ],
+ "משגלים": [
+ {
+ "word_nikkud": "מִשְׁגָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8286-mishgal",
+ "gender": "masculine"
+ }
+ ],
+ "משגל־": [
+ {
+ "word_nikkud": "מִשְׁגָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8286-mishgal",
+ "gender": "masculine"
+ }
+ ],
+ "משגלי־": [
+ {
+ "word_nikkud": "מִשְׁגָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8286-mishgal",
+ "gender": "masculine"
+ }
+ ],
+ "שיגעון": [
+ {
+ "word_nikkud": "שִׁגָּעוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3583-shigaon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגעונות": [
+ {
+ "word_nikkud": "שִׁגָּעוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3583-shigaon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגעון־": [
+ {
+ "word_nikkud": "שִׁגָּעוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3583-shigaon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגעונות־": [
+ {
+ "word_nikkud": "שִׁגָּעוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3583-shigaon",
+ "gender": "masculine"
+ }
+ ],
+ "שיגור": [
+ {
+ "word_nikkud": "שִׁגּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6963-shigur",
+ "gender": "masculine"
+ }
+ ],
+ "שיגורים": [
+ {
+ "word_nikkud": "שִׁגּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6963-shigur",
+ "gender": "masculine"
+ }
+ ],
+ "שיגור־": [
+ {
+ "word_nikkud": "שִׁגּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6963-shigur",
+ "gender": "masculine"
+ }
+ ],
+ "שיגורי־": [
+ {
+ "word_nikkud": "שִׁגּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6963-shigur",
+ "gender": "masculine"
+ }
+ ],
+ "שגרה": [
+ {
+ "word_nikkud": "שִׁגְרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7041-shigra",
+ "gender": "feminine"
+ }
+ ],
+ "שגרת־": [
+ {
+ "word_nikkud": "שִׁגְרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7041-shigra",
+ "gender": "feminine"
+ }
+ ],
+ "שגרירות": [
+ {
+ "word_nikkud": "שַׁגְרִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4806-shagrirut",
+ "gender": "feminine"
+ }
+ ],
+ "שגרירויות": [
+ {
+ "word_nikkud": "שַׁגְרִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4806-shagrirut",
+ "gender": "feminine"
+ }
+ ],
+ "שגרירות־": [
+ {
+ "word_nikkud": "שַׁגְרִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4806-shagrirut",
+ "gender": "feminine"
+ }
+ ],
+ "שגרירויות־": [
+ {
+ "word_nikkud": "שַׁגְרִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4806-shagrirut",
+ "gender": "feminine"
+ }
+ ],
+ "שגריר": [
+ {
+ "word_nikkud": "שַׁגְרִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4805-shagrir",
+ "gender": "masculine"
+ }
+ ],
+ "שגרירים": [
+ {
+ "word_nikkud": "שַׁגְרִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4805-shagrir",
+ "gender": "masculine"
+ }
+ ],
+ "שגריר־": [
+ {
+ "word_nikkud": "שַׁגְרִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4805-shagrir",
+ "gender": "masculine"
+ }
+ ],
+ "שגרירי־": [
+ {
+ "word_nikkud": "שַׁגְרִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4805-shagrir",
+ "gender": "masculine"
+ }
+ ],
+ "שגשוג": [
+ {
+ "word_nikkud": "שִׂגְשׂוּג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7297-sigsug",
+ "gender": "masculine"
+ }
+ ],
+ "שגשוגים": [
+ {
+ "word_nikkud": "שִׂגְשׂוּג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7297-sigsug",
+ "gender": "masculine"
+ }
+ ],
+ "שגשוג־": [
+ {
+ "word_nikkud": "שִׂגְשׂוּג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7297-sigsug",
+ "gender": "masculine"
+ }
+ ],
+ "שגשוגי־": [
+ {
+ "word_nikkud": "שִׂגְשׂוּג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7297-sigsug",
+ "gender": "masculine"
+ }
+ ],
+ "שוד": [
+ {
+ "word_nikkud": "שֹׁד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5333-shod",
+ "gender": "masculine"
+ }
+ ],
+ "שוד־": [
+ {
+ "word_nikkud": "שֹׁד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5333-shod",
+ "gender": "masculine"
+ }
+ ],
+ "שידה": [
+ {
+ "word_nikkud": "שִׁדָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8101-shida",
+ "gender": "feminine"
+ }
+ ],
+ "שידות": [
+ {
+ "word_nikkud": "שִׁדָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8101-shida",
+ "gender": "feminine"
+ }
+ ],
+ "שידת־": [
+ {
+ "word_nikkud": "שִׁדָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8101-shida",
+ "gender": "feminine"
+ }
+ ],
+ "שידות־": [
+ {
+ "word_nikkud": "שִׁדָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8101-shida",
+ "gender": "feminine"
+ }
+ ],
+ "שדה תעופה": [
+ {
+ "word_nikkud": "שְׂדֵה תְּעוּפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8052-sde-teufa",
+ "gender": ""
+ }
+ ],
+ "שדות תעופה": [
+ {
+ "word_nikkud": "שְׂדֵה תְּעוּפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8052-sde-teufa",
+ "gender": ""
+ }
+ ],
+ "שידוך": [
+ {
+ "word_nikkud": "שִׁדּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8266-shiduch",
+ "gender": "masculine"
+ }
+ ],
+ "שידוכים": [
+ {
+ "word_nikkud": "שִׁדּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8266-shiduch",
+ "gender": "masculine"
+ }
+ ],
+ "שידוך־": [
+ {
+ "word_nikkud": "שִׁדּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8266-shiduch",
+ "gender": "masculine"
+ }
+ ],
+ "שידוכי־": [
+ {
+ "word_nikkud": "שִׁדּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8266-shiduch",
+ "gender": "masculine"
+ }
+ ],
+ "שדכן": [
+ {
+ "word_nikkud": "שַׁדְכָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3449-shadchan",
+ "gender": "masculine"
+ }
+ ],
+ "שדכנים": [
+ {
+ "word_nikkud": "שַׁדְכָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3449-shadchan",
+ "gender": "masculine"
+ }
+ ],
+ "שדכן־": [
+ {
+ "word_nikkud": "שַׁדְכָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3449-shadchan",
+ "gender": "masculine"
+ }
+ ],
+ "שדכני־": [
+ {
+ "word_nikkud": "שַׁדְכָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3449-shadchan",
+ "gender": "masculine"
+ }
+ ],
+ "השתדלות": [
+ {
+ "word_nikkud": "הִשְׁתַּדְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7338-hishtadlut",
+ "gender": "feminine"
+ }
+ ],
+ "השתדלויות": [
+ {
+ "word_nikkud": "הִשְׁתַּדְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7338-hishtadlut",
+ "gender": "feminine"
+ }
+ ],
+ "השתדלות־": [
+ {
+ "word_nikkud": "הִשְׁתַּדְּלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7338-hishtadlut",
+ "gender": "feminine"
+ }
+ ],
+ "השתדלויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּדְּלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7338-hishtadlut",
+ "gender": "feminine"
+ }
+ ],
+ "שידור": [
+ {
+ "word_nikkud": "שִׁדּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7057-shidur",
+ "gender": "masculine"
+ }
+ ],
+ "שידורים": [
+ {
+ "word_nikkud": "שִׁדּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7057-shidur",
+ "gender": "masculine"
+ }
+ ],
+ "שידור־": [
+ {
+ "word_nikkud": "שִׁדּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7057-shidur",
+ "gender": "masculine"
+ }
+ ],
+ "שידורי־": [
+ {
+ "word_nikkud": "שִׁדּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7057-shidur",
+ "gender": "masculine"
+ }
+ ],
+ "משדר": [
+ {
+ "word_nikkud": "מִשְׁדָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5190-mishdar",
+ "gender": "masculine"
+ }
+ ],
+ "משדרים": [
+ {
+ "word_nikkud": "מִשְׁדָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5190-mishdar",
+ "gender": "masculine"
+ }
+ ],
+ "משדר־": [
+ {
+ "word_nikkud": "מִשְׁדָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5190-mishdar",
+ "gender": "masculine"
+ }
+ ],
+ "משדרי־": [
+ {
+ "word_nikkud": "מִשְׁדָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5190-mishdar",
+ "gender": "masculine"
+ }
+ ],
+ "שדרה": [
+ {
+ "word_nikkud": "שְׂדֵרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7348-sdera",
+ "gender": "feminine"
+ }
+ ],
+ "שדרות": [
+ {
+ "word_nikkud": "שְׂדֵרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7348-sdera",
+ "gender": "feminine"
+ }
+ ],
+ "שדרת־": [
+ {
+ "word_nikkud": "שְׂדֵרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7348-sdera",
+ "gender": "feminine"
+ }
+ ],
+ "שדרות־": [
+ {
+ "word_nikkud": "שְׂדֵרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7348-sdera",
+ "gender": "feminine"
+ }
+ ],
+ "תשדיר": [
+ {
+ "word_nikkud": "תַּשְׁדִּיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7919-tashdir",
+ "gender": "masculine"
+ }
+ ],
+ "תשדירים": [
+ {
+ "word_nikkud": "תַּשְׁדִּיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7919-tashdir",
+ "gender": "masculine"
+ }
+ ],
+ "תשדיר־": [
+ {
+ "word_nikkud": "תַּשְׁדִּיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7919-tashdir",
+ "gender": "masculine"
+ }
+ ],
+ "תשדירי־": [
+ {
+ "word_nikkud": "תַּשְׁדִּיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7919-tashdir",
+ "gender": "masculine"
+ }
+ ],
+ "שה": [
+ {
+ "word_nikkud": "שֶׂה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4416-se",
+ "gender": "masculine"
+ }
+ ],
+ "שיים": [
+ {
+ "word_nikkud": "שֶׂה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4416-se",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "שַׁי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7536-shay",
+ "gender": "masculine"
+ }
+ ],
+ "שה־": [
+ {
+ "word_nikkud": "שֶׂה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4416-se",
+ "gender": "masculine"
+ }
+ ],
+ "שיי־": [
+ {
+ "word_nikkud": "שֶׂה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4416-se",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "שַׁי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7536-shay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "שַׁי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7536-shay",
+ "gender": "masculine"
+ }
+ ],
+ "שהייה": [
+ {
+ "word_nikkud": "שְׁהִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8339-shehiya",
+ "gender": "feminine"
+ }
+ ],
+ "שהיות": [
+ {
+ "word_nikkud": "שְׁהִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8339-shehiya",
+ "gender": "feminine"
+ }
+ ],
+ "שהיית־": [
+ {
+ "word_nikkud": "שְׁהִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8339-shehiya",
+ "gender": "feminine"
+ }
+ ],
+ "שהיות־": [
+ {
+ "word_nikkud": "שְׁהִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8339-shehiya",
+ "gender": "feminine"
+ }
+ ],
+ "השהיה": [
+ {
+ "word_nikkud": "הַשְׁהָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3838-hashhaya",
+ "gender": "feminine"
+ }
+ ],
+ "השהיות": [
+ {
+ "word_nikkud": "הַשְׁהָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3838-hashhaya",
+ "gender": "feminine"
+ }
+ ],
+ "השהיית־": [
+ {
+ "word_nikkud": "הַשְׁהָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3838-hashhaya",
+ "gender": "feminine"
+ }
+ ],
+ "השהיות־": [
+ {
+ "word_nikkud": "הַשְׁהָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3838-hashhaya",
+ "gender": "feminine"
+ }
+ ],
+ "שווא": [
+ {
+ "word_nikkud": "שָׁוְא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8434-shav",
+ "gender": "masculine"
+ }
+ ],
+ "שווא־": [
+ {
+ "word_nikkud": "שָׁוְא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8434-shav",
+ "gender": "masculine"
+ }
+ ],
+ "השוואה": [
+ {
+ "word_nikkud": "הַשְׁוָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4025-hashvaa",
+ "gender": "feminine"
+ }
+ ],
+ "השוואות": [
+ {
+ "word_nikkud": "הַשְׁוָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4025-hashvaa",
+ "gender": "feminine"
+ }
+ ],
+ "השוואת־": [
+ {
+ "word_nikkud": "הַשְׁוָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4025-hashvaa",
+ "gender": "feminine"
+ }
+ ],
+ "השוואות־": [
+ {
+ "word_nikkud": "הַשְׁוָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4025-hashvaa",
+ "gender": "feminine"
+ }
+ ],
+ "תשובה": [
+ {
+ "word_nikkud": "תְּשׁוּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3744-tshuva",
+ "gender": "feminine"
+ }
+ ],
+ "תשובות": [
+ {
+ "word_nikkud": "תְּשׁוּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3744-tshuva",
+ "gender": "feminine"
+ }
+ ],
+ "תשובת־": [
+ {
+ "word_nikkud": "תְּשׁוּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3744-tshuva",
+ "gender": "feminine"
+ }
+ ],
+ "תשובות־": [
+ {
+ "word_nikkud": "תְּשׁוּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3744-tshuva",
+ "gender": "feminine"
+ }
+ ],
+ "משוב": [
+ {
+ "word_nikkud": "מָשׁוֹב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5369-mashov",
+ "gender": "masculine"
+ }
+ ],
+ "משובים": [
+ {
+ "word_nikkud": "מָשׁוֹב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5369-mashov",
+ "gender": "masculine"
+ }
+ ],
+ "משוב־": [
+ {
+ "word_nikkud": "מָשׁוֹב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5369-mashov",
+ "gender": "masculine"
+ }
+ ],
+ "משובי־": [
+ {
+ "word_nikkud": "מָשׁוֹב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5369-mashov",
+ "gender": "masculine"
+ }
+ ],
+ "שיבה": [
+ {
+ "word_nikkud": "שִׁיבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5130-shiva",
+ "gender": "feminine"
+ }
+ ],
+ "שיבות": [
+ {
+ "word_nikkud": "שִׁיבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5130-shiva",
+ "gender": "feminine"
+ }
+ ],
+ "שיבת־": [
+ {
+ "word_nikkud": "שִׁיבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5130-shiva",
+ "gender": "feminine"
+ }
+ ],
+ "שיבות־": [
+ {
+ "word_nikkud": "שִׁיבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5130-shiva",
+ "gender": "feminine"
+ }
+ ],
+ "משיבון": [
+ {
+ "word_nikkud": "מְשִׁיבוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6362-meshivon",
+ "gender": "masculine"
+ }
+ ],
+ "משיבונים": [
+ {
+ "word_nikkud": "מְשִׁיבוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6362-meshivon",
+ "gender": "masculine"
+ }
+ ],
+ "משיבון־": [
+ {
+ "word_nikkud": "מְשִׁיבוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6362-meshivon",
+ "gender": "masculine"
+ }
+ ],
+ "משיבוני־": [
+ {
+ "word_nikkud": "מְשִׁיבוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6362-meshivon",
+ "gender": "masculine"
+ }
+ ],
+ "שיטה": [
+ {
+ "word_nikkud": "שִׁיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5892-shita",
+ "gender": "feminine"
+ }
+ ],
+ "שיטות": [
+ {
+ "word_nikkud": "שִׁיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5892-shita",
+ "gender": "feminine"
+ }
+ ],
+ "שיטת־": [
+ {
+ "word_nikkud": "שִׁיטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5892-shita",
+ "gender": "feminine"
+ }
+ ],
+ "שיטות־": [
+ {
+ "word_nikkud": "שִׁיטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5892-shita",
+ "gender": "feminine"
+ }
+ ],
+ "שוט": [
+ {
+ "word_nikkud": "שׁוֹט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9003-shot",
+ "gender": ""
+ }
+ ],
+ "שוטים": [
+ {
+ "word_nikkud": "שׁוֹט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9003-shot",
+ "gender": ""
+ }
+ ],
+ "שוט־": [
+ {
+ "word_nikkud": "שׁוֹט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9003-shot",
+ "gender": ""
+ }
+ ],
+ "שוטי־": [
+ {
+ "word_nikkud": "שׁוֹט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9003-shot",
+ "gender": ""
+ }
+ ],
+ "שוויון": [
+ {
+ "word_nikkud": "שִׁוְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8653-shivyon",
+ "gender": "masculine"
+ }
+ ],
+ "שוויונות": [
+ {
+ "word_nikkud": "שִׁוְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8653-shivyon",
+ "gender": "masculine"
+ }
+ ],
+ "שוויון־": [
+ {
+ "word_nikkud": "שִׁוְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8653-shivyon",
+ "gender": "masculine"
+ }
+ ],
+ "שוויונות־": [
+ {
+ "word_nikkud": "שִׁוְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8653-shivyon",
+ "gender": "masculine"
+ }
+ ],
+ "שווי": [
+ {
+ "word_nikkud": "שֹׁוִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7826-shovi",
+ "gender": "masculine"
+ }
+ ],
+ "שווי־": [
+ {
+ "word_nikkud": "שֹׁוִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7826-shovi",
+ "gender": "masculine"
+ }
+ ],
+ "שולחן": [
+ {
+ "word_nikkud": "שֻׁלְחָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4939-shulchan",
+ "gender": "masculine"
+ }
+ ],
+ "שולחנות": [
+ {
+ "word_nikkud": "שֻׁלְחָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4939-shulchan",
+ "gender": "masculine"
+ }
+ ],
+ "שולחן־": [
+ {
+ "word_nikkud": "שֻׁלְחָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4939-shulchan",
+ "gender": "masculine"
+ }
+ ],
+ "שולחנות־": [
+ {
+ "word_nikkud": "שֻׁלְחָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4939-shulchan",
+ "gender": "masculine"
+ }
+ ],
+ "שוליים": [
+ {
+ "word_nikkud": "שׁוּלַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4485-shulayim",
+ "gender": "masculine"
+ }
+ ],
+ "שולי־": [
+ {
+ "word_nikkud": "שׁוּלַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4485-shulayim",
+ "gender": "masculine"
+ }
+ ],
+ "שום": [
+ {
+ "word_nikkud": "שׁוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6870-shum",
+ "gender": "masculine"
+ }
+ ],
+ "שומים": [
+ {
+ "word_nikkud": "שׁוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6870-shum",
+ "gender": "masculine"
+ }
+ ],
+ "שום־": [
+ {
+ "word_nikkud": "שׁוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6870-shum",
+ "gender": "masculine"
+ }
+ ],
+ "שומי־": [
+ {
+ "word_nikkud": "שׁוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6870-shum",
+ "gender": "masculine"
+ }
+ ],
+ "שומר": [
+ {
+ "word_nikkud": "שֻׁמָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8696-shumar",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "שׁוֹמֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8695-shomer",
+ "gender": "masculine"
+ }
+ ],
+ "שומר־": [
+ {
+ "word_nikkud": "שֻׁמָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8696-shumar",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "שׁוֹמֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8695-shomer",
+ "gender": "masculine"
+ }
+ ],
+ "שומשום": [
+ {
+ "word_nikkud": "שֻׁמְשֹׁם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9289-shumshom",
+ "gender": ""
+ }
+ ],
+ "שומשומין": [
+ {
+ "word_nikkud": "שֻׁמְשֹׁם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9289-shumshom",
+ "gender": ""
+ }
+ ],
+ "שומשום־": [
+ {
+ "word_nikkud": "שֻׁמְשֹׁם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9289-shumshom",
+ "gender": ""
+ }
+ ],
+ "שומשומי־": [
+ {
+ "word_nikkud": "שֻׁמְשֹׁם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9289-shumshom",
+ "gender": ""
+ }
+ ],
+ "תשועה": [
+ {
+ "word_nikkud": "תְּשׁוּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8311-tshua",
+ "gender": "feminine"
+ }
+ ],
+ "תשועות": [
+ {
+ "word_nikkud": "תְּשׁוּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8311-tshua",
+ "gender": "feminine"
+ }
+ ],
+ "תשועת־": [
+ {
+ "word_nikkud": "תְּשׁוּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8311-tshua",
+ "gender": "feminine"
+ }
+ ],
+ "תשועות־": [
+ {
+ "word_nikkud": "תְּשׁוּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8311-tshua",
+ "gender": "feminine"
+ }
+ ],
+ "שועל": [
+ {
+ "word_nikkud": "שׁוּעָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7738-shual",
+ "gender": "masculine"
+ }
+ ],
+ "שועלים": [
+ {
+ "word_nikkud": "שׁוּעָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7738-shual",
+ "gender": "masculine"
+ }
+ ],
+ "שועל־": [
+ {
+ "word_nikkud": "שׁוּעָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7738-shual",
+ "gender": "masculine"
+ }
+ ],
+ "שועלי־": [
+ {
+ "word_nikkud": "שׁוּעָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7738-shual",
+ "gender": "masculine"
+ }
+ ],
+ "שופין": [
+ {
+ "word_nikkud": "שׁוֹפִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8093-shofin",
+ "gender": ""
+ }
+ ],
+ "שופיןים": [
+ {
+ "word_nikkud": "שׁוֹפִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8093-shofin",
+ "gender": ""
+ }
+ ],
+ "שופין־": [
+ {
+ "word_nikkud": "שׁוֹפִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8093-shofin",
+ "gender": ""
+ }
+ ],
+ "שופיןי־": [
+ {
+ "word_nikkud": "שׁוֹפִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8093-shofin",
+ "gender": ""
+ }
+ ],
+ "שוק": [
+ {
+ "word_nikkud": "שׁוֹק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6364-shok",
+ "gender": "feminine"
+ }
+ ],
+ "שוקיים": [
+ {
+ "word_nikkud": "שׁוֹק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6364-shok",
+ "gender": "feminine"
+ }
+ ],
+ "שוק־": [
+ {
+ "word_nikkud": "שׁוֹק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6364-shok",
+ "gender": "feminine"
+ }
+ ],
+ "שוקי־": [
+ {
+ "word_nikkud": "שׁוֹק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6364-shok",
+ "gender": "feminine"
+ }
+ ],
+ "תשוקה": [
+ {
+ "word_nikkud": "תְּשׁוּקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6752-tshuka",
+ "gender": "feminine"
+ }
+ ],
+ "תשוקות": [
+ {
+ "word_nikkud": "תְּשׁוּקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6752-tshuka",
+ "gender": "feminine"
+ }
+ ],
+ "תשוקת־": [
+ {
+ "word_nikkud": "תְּשׁוּקָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6752-tshuka",
+ "gender": "feminine"
+ }
+ ],
+ "תשוקות־": [
+ {
+ "word_nikkud": "תְּשׁוּקָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6752-tshuka",
+ "gender": "feminine"
+ }
+ ],
+ "שיווק": [
+ {
+ "word_nikkud": "שִׁוּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6755-shivuk",
+ "gender": "masculine"
+ }
+ ],
+ "שיווק־": [
+ {
+ "word_nikkud": "שִׁוּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6755-shivuk",
+ "gender": "masculine"
+ }
+ ],
+ "שוקולד": [
+ {
+ "word_nikkud": "שׁוֹקוֹלָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6208-shokolad",
+ "gender": "masculine"
+ }
+ ],
+ "שוקולדה": [
+ {
+ "word_nikkud": "שׁוֹקוֹלָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6209-shokolada",
+ "gender": "feminine"
+ }
+ ],
+ "שור": [
+ {
+ "word_nikkud": "שׁוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4336-shor",
+ "gender": "masculine"
+ }
+ ],
+ "שוורים": [
+ {
+ "word_nikkud": "שׁוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4336-shor",
+ "gender": "masculine"
+ }
+ ],
+ "שור־": [
+ {
+ "word_nikkud": "שׁוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4336-shor",
+ "gender": "masculine"
+ }
+ ],
+ "שורי־": [
+ {
+ "word_nikkud": "שׁוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4336-shor",
+ "gender": "masculine"
+ }
+ ],
+ "תשורה": [
+ {
+ "word_nikkud": "תְּשׁוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5080-tshura",
+ "gender": "feminine"
+ }
+ ],
+ "תשורות": [
+ {
+ "word_nikkud": "תְּשׁוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5080-tshura",
+ "gender": "feminine"
+ }
+ ],
+ "תשורת־": [
+ {
+ "word_nikkud": "תְּשׁוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5080-tshura",
+ "gender": "feminine"
+ }
+ ],
+ "תשורות־": [
+ {
+ "word_nikkud": "תְּשׁוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5080-tshura",
+ "gender": "feminine"
+ }
+ ],
+ "שורה": [
+ {
+ "word_nikkud": "שׁוּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6701-shura",
+ "gender": "feminine"
+ }
+ ],
+ "שורות": [
+ {
+ "word_nikkud": "שׁוּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6701-shura",
+ "gender": "feminine"
+ }
+ ],
+ "שורת־": [
+ {
+ "word_nikkud": "שׁוּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6701-shura",
+ "gender": "feminine"
+ }
+ ],
+ "שורות־": [
+ {
+ "word_nikkud": "שׁוּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6701-shura",
+ "gender": "feminine"
+ }
+ ],
+ "שושלת": [
+ {
+ "word_nikkud": "שׁוֹשֶׁלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6699-shoshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שושלות": [
+ {
+ "word_nikkud": "שׁוֹשֶׁלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6699-shoshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שושלת־": [
+ {
+ "word_nikkud": "שׁוֹשֶׁלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6699-shoshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שושלות־": [
+ {
+ "word_nikkud": "שׁוֹשֶׁלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6699-shoshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שושן": [
+ {
+ "word_nikkud": "שׁוֹשָׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7310-shoshan",
+ "gender": ""
+ }
+ ],
+ "שושנים": [
+ {
+ "word_nikkud": "שׁוֹשָׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7310-shoshan",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "שׁוֹשַׁנָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8359-shoshana",
+ "gender": "feminine"
+ }
+ ],
+ "שושן־": [
+ {
+ "word_nikkud": "שׁוֹשָׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7310-shoshan",
+ "gender": ""
+ }
+ ],
+ "שושני־": [
+ {
+ "word_nikkud": "שׁוֹשָׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7310-shoshan",
+ "gender": ""
+ },
+ {
+ "word_nikkud": "שׁוֹשַׁנָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8359-shoshana",
+ "gender": "feminine"
+ }
+ ],
+ "שושנה": [
+ {
+ "word_nikkud": "שׁוֹשַׁנָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8359-shoshana",
+ "gender": "feminine"
+ }
+ ],
+ "שושנת־": [
+ {
+ "word_nikkud": "שׁוֹשַׁנָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8359-shoshana",
+ "gender": "feminine"
+ }
+ ],
+ "שזיף": [
+ {
+ "word_nikkud": "שְׁזִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7556-shezif",
+ "gender": "masculine"
+ }
+ ],
+ "שזיפים": [
+ {
+ "word_nikkud": "שְׁזִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7556-shezif",
+ "gender": "masculine"
+ }
+ ],
+ "שזיף־": [
+ {
+ "word_nikkud": "שְׁזִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7556-shezif",
+ "gender": "masculine"
+ }
+ ],
+ "שזיפי־": [
+ {
+ "word_nikkud": "שְׁזִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7556-shezif",
+ "gender": "masculine"
+ }
+ ],
+ "שיזוף": [
+ {
+ "word_nikkud": "שִׁזּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7510-shizuf",
+ "gender": "masculine"
+ }
+ ],
+ "שיזופים": [
+ {
+ "word_nikkud": "שִׁזּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7510-shizuf",
+ "gender": "masculine"
+ }
+ ],
+ "שיזוף־": [
+ {
+ "word_nikkud": "שִׁזּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7510-shizuf",
+ "gender": "masculine"
+ }
+ ],
+ "שיזופי־": [
+ {
+ "word_nikkud": "שִׁזּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7510-shizuf",
+ "gender": "masculine"
+ }
+ ],
+ "שוחד": [
+ {
+ "word_nikkud": "שֹׁחַד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3904-shochad",
+ "gender": "masculine"
+ }
+ ],
+ "שחדים": [
+ {
+ "word_nikkud": "שֹׁחַד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3904-shochad",
+ "gender": "masculine"
+ }
+ ],
+ "שוחד־": [
+ {
+ "word_nikkud": "שֹׁחַד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3904-shochad",
+ "gender": "masculine"
+ }
+ ],
+ "שחדי־": [
+ {
+ "word_nikkud": "שֹׁחַד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3904-shochad",
+ "gender": "masculine"
+ }
+ ],
+ "שחייה": [
+ {
+ "word_nikkud": "שְׂחִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7078-schiya",
+ "gender": "feminine"
+ }
+ ],
+ "שחיות": [
+ {
+ "word_nikkud": "שְׂחִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7078-schiya",
+ "gender": "feminine"
+ }
+ ],
+ "שחיית־": [
+ {
+ "word_nikkud": "שְׂחִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7078-schiya",
+ "gender": "feminine"
+ }
+ ],
+ "שחיות־": [
+ {
+ "word_nikkud": "שְׂחִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7078-schiya",
+ "gender": "feminine"
+ }
+ ],
+ "שחיין": [
+ {
+ "word_nikkud": "שַׂחְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3450-sachyan",
+ "gender": "masculine"
+ }
+ ],
+ "שחיינים": [
+ {
+ "word_nikkud": "שַׂחְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3450-sachyan",
+ "gender": "masculine"
+ }
+ ],
+ "שחיין־": [
+ {
+ "word_nikkud": "שַׂחְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3450-sachyan",
+ "gender": "masculine"
+ }
+ ],
+ "שחייני־": [
+ {
+ "word_nikkud": "שַׂחְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3450-sachyan",
+ "gender": "masculine"
+ }
+ ],
+ "שחל": [
+ {
+ "word_nikkud": "שַׁחַל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7937-shachal",
+ "gender": "masculine"
+ }
+ ],
+ "שחלים": [
+ {
+ "word_nikkud": "שַׁחַל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7937-shachal",
+ "gender": "masculine"
+ }
+ ],
+ "שחל־": [
+ {
+ "word_nikkud": "שַׁחַל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7937-shachal",
+ "gender": "masculine"
+ }
+ ],
+ "שחלי־": [
+ {
+ "word_nikkud": "שַׁחַל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7937-shachal",
+ "gender": "masculine"
+ }
+ ],
+ "שחמט": [
+ {
+ "word_nikkud": "שַׁחְמָט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6653-shachmat",
+ "gender": "masculine"
+ }
+ ],
+ "שחמט־": [
+ {
+ "word_nikkud": "שַׁחְמָט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6653-shachmat",
+ "gender": "masculine"
+ }
+ ],
+ "שחפת": [
+ {
+ "word_nikkud": "שַׁחֶפֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5444-shachefet",
+ "gender": "feminine"
+ }
+ ],
+ "שחפת־": [
+ {
+ "word_nikkud": "שַׁחֶפֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5444-shachefet",
+ "gender": "feminine"
+ }
+ ],
+ "שחף": [
+ {
+ "word_nikkud": "שַׁחַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7762-shachaf",
+ "gender": "masculine"
+ }
+ ],
+ "שחפים": [
+ {
+ "word_nikkud": "שַׁחַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7762-shachaf",
+ "gender": "masculine"
+ }
+ ],
+ "שחף־": [
+ {
+ "word_nikkud": "שַׁחַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7762-shachaf",
+ "gender": "masculine"
+ }
+ ],
+ "שחפי־": [
+ {
+ "word_nikkud": "שַׁחַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7762-shachaf",
+ "gender": "masculine"
+ }
+ ],
+ "שחץ": [
+ {
+ "word_nikkud": "שַׁחַץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3907-shachatz",
+ "gender": "masculine"
+ }
+ ],
+ "שחץ־": [
+ {
+ "word_nikkud": "שַׁחַץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3907-shachatz",
+ "gender": "masculine"
+ }
+ ],
+ "שחצן": [
+ {
+ "word_nikkud": "שַׁחְצָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3908-shachtzan",
+ "gender": "masculine"
+ }
+ ],
+ "שחצנים": [
+ {
+ "word_nikkud": "שַׁחְצָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3908-shachtzan",
+ "gender": "masculine"
+ }
+ ],
+ "שחצן־": [
+ {
+ "word_nikkud": "שַׁחְצָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3908-shachtzan",
+ "gender": "masculine"
+ }
+ ],
+ "שחצני־": [
+ {
+ "word_nikkud": "שַׁחְצָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3908-shachtzan",
+ "gender": "masculine"
+ }
+ ],
+ "משחק": [
+ {
+ "word_nikkud": "מִשְׂחָק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3162-mischak",
+ "gender": "masculine"
+ }
+ ],
+ "משחקים": [
+ {
+ "word_nikkud": "מִשְׂחָק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3162-mischak",
+ "gender": "masculine"
+ }
+ ],
+ "משחק־": [
+ {
+ "word_nikkud": "מִשְׂחָק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3162-mischak",
+ "gender": "masculine"
+ }
+ ],
+ "משחקי־": [
+ {
+ "word_nikkud": "מִשְׂחָק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3162-mischak",
+ "gender": "masculine"
+ }
+ ],
+ "שחקן": [
+ {
+ "word_nikkud": "שַׂחְקָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3163-sachkan",
+ "gender": "masculine"
+ }
+ ],
+ "שחקנים": [
+ {
+ "word_nikkud": "שַׂחְקָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3163-sachkan",
+ "gender": "masculine"
+ }
+ ],
+ "שחקן־": [
+ {
+ "word_nikkud": "שַׂחְקָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3163-sachkan",
+ "gender": "masculine"
+ }
+ ],
+ "שחקני־": [
+ {
+ "word_nikkud": "שַׂחְקָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3163-sachkan",
+ "gender": "masculine"
+ }
+ ],
+ "השחרה": [
+ {
+ "word_nikkud": "הַשְׁחָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2915-hashchara",
+ "gender": "feminine"
+ }
+ ],
+ "השחרת־": [
+ {
+ "word_nikkud": "הַשְׁחָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2915-hashchara",
+ "gender": "feminine"
+ }
+ ],
+ "שחר": [
+ {
+ "word_nikkud": "שַׁחַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4116-shachar",
+ "gender": "masculine"
+ }
+ ],
+ "שחרים": [
+ {
+ "word_nikkud": "שַׁחַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4116-shachar",
+ "gender": "masculine"
+ }
+ ],
+ "שחר־": [
+ {
+ "word_nikkud": "שַׁחַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4116-shachar",
+ "gender": "masculine"
+ }
+ ],
+ "שחרי־": [
+ {
+ "word_nikkud": "שַׁחַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4116-shachar",
+ "gender": "masculine"
+ }
+ ],
+ "שוחר": [
+ {
+ "word_nikkud": "שׁוֹחֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8179-shocher",
+ "gender": "masculine"
+ }
+ ],
+ "שוחרים": [
+ {
+ "word_nikkud": "שׁוֹחֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8179-shocher",
+ "gender": "masculine"
+ }
+ ],
+ "שוחר־": [
+ {
+ "word_nikkud": "שׁוֹחֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8179-shocher",
+ "gender": "masculine"
+ }
+ ],
+ "שוחרי־": [
+ {
+ "word_nikkud": "שׁוֹחֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8179-shocher",
+ "gender": "masculine"
+ }
+ ],
+ "שחרור": [
+ {
+ "word_nikkud": "שִׁחְרוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4290-shichrur",
+ "gender": "masculine"
+ }
+ ],
+ "שחרורים": [
+ {
+ "word_nikkud": "שִׁחְרוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4290-shichrur",
+ "gender": "masculine"
+ }
+ ],
+ "שחרור־": [
+ {
+ "word_nikkud": "שִׁחְרוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4290-shichrur",
+ "gender": "masculine"
+ }
+ ],
+ "שחרורי־": [
+ {
+ "word_nikkud": "שִׁחְרוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4290-shichrur",
+ "gender": "masculine"
+ }
+ ],
+ "שחיתות": [
+ {
+ "word_nikkud": "שְׁחִיתוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6520-shchitut",
+ "gender": "feminine"
+ }
+ ],
+ "שחיתויות": [
+ {
+ "word_nikkud": "שְׁחִיתוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6520-shchitut",
+ "gender": "feminine"
+ }
+ ],
+ "שחיתות־": [
+ {
+ "word_nikkud": "שְׁחִיתוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6520-shchitut",
+ "gender": "feminine"
+ }
+ ],
+ "שחיתויות־": [
+ {
+ "word_nikkud": "שְׁחִיתוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6520-shchitut",
+ "gender": "feminine"
+ }
+ ],
+ "שטח": [
+ {
+ "word_nikkud": "שֶׁטַח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6095-shetach",
+ "gender": "masculine"
+ }
+ ],
+ "שטחים": [
+ {
+ "word_nikkud": "שֶׁטַח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6095-shetach",
+ "gender": "masculine"
+ }
+ ],
+ "שטח־": [
+ {
+ "word_nikkud": "שֶׁטַח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6095-shetach",
+ "gender": "masculine"
+ }
+ ],
+ "שטחי־": [
+ {
+ "word_nikkud": "שֶׁטַח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6095-shetach",
+ "gender": "masculine"
+ }
+ ],
+ "שטיח": [
+ {
+ "word_nikkud": "שָׁטִיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4103-shatiach",
+ "gender": "masculine"
+ }
+ ],
+ "שטיחים": [
+ {
+ "word_nikkud": "שָׁטִיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4103-shatiach",
+ "gender": "masculine"
+ }
+ ],
+ "שטיח־": [
+ {
+ "word_nikkud": "שָׁטִיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4103-shatiach",
+ "gender": "masculine"
+ }
+ ],
+ "שטיחי־": [
+ {
+ "word_nikkud": "שָׁטִיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4103-shatiach",
+ "gender": "masculine"
+ }
+ ],
+ "שטיחון": [
+ {
+ "word_nikkud": "שְׁטִיחוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9079-shtichon",
+ "gender": "masculine"
+ }
+ ],
+ "שטיחונים": [
+ {
+ "word_nikkud": "שְׁטִיחוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9079-shtichon",
+ "gender": "masculine"
+ }
+ ],
+ "שטיחון־": [
+ {
+ "word_nikkud": "שְׁטִיחוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9079-shtichon",
+ "gender": "masculine"
+ }
+ ],
+ "שטיחוני־": [
+ {
+ "word_nikkud": "שְׁטִיחוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9079-shtichon",
+ "gender": "masculine"
+ }
+ ],
+ "שטח הפקר": [
+ {
+ "word_nikkud": "שֶׁטַח הֶפְקֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7591-shetach-hefker",
+ "gender": ""
+ }
+ ],
+ "שטחי הפקר": [
+ {
+ "word_nikkud": "שֶׁטַח הֶפְקֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7591-shetach-hefker",
+ "gender": ""
+ }
+ ],
+ "שטות": [
+ {
+ "word_nikkud": "שְׁטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3759-shtut",
+ "gender": "feminine"
+ }
+ ],
+ "שטות־": [
+ {
+ "word_nikkud": "שְׁטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3759-shtut",
+ "gender": "feminine"
+ }
+ ],
+ "שיטפון": [
+ {
+ "word_nikkud": "שִׁטָּפוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3584-shitafon",
+ "gender": "masculine"
+ }
+ ],
+ "שיטפונות": [
+ {
+ "word_nikkud": "שִׁטָּפוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3584-shitafon",
+ "gender": "masculine"
+ }
+ ],
+ "שיטפון־": [
+ {
+ "word_nikkud": "שִׁטָּפוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3584-shitafon",
+ "gender": "masculine"
+ }
+ ],
+ "שיטפונות־": [
+ {
+ "word_nikkud": "שִׁטָּפוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3584-shitafon",
+ "gender": "masculine"
+ }
+ ],
+ "שטיפה": [
+ {
+ "word_nikkud": "שְׁטִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9035-shtifa",
+ "gender": "feminine"
+ }
+ ],
+ "שטיפות": [
+ {
+ "word_nikkud": "שְׁטִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9035-shtifa",
+ "gender": "feminine"
+ }
+ ],
+ "שטיפת־": [
+ {
+ "word_nikkud": "שְׁטִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9035-shtifa",
+ "gender": "feminine"
+ }
+ ],
+ "שטיפות־": [
+ {
+ "word_nikkud": "שְׁטִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9035-shtifa",
+ "gender": "feminine"
+ }
+ ],
+ "משטר": [
+ {
+ "word_nikkud": "מִשְׁטָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5683-mishtar",
+ "gender": "masculine"
+ }
+ ],
+ "משטרים": [
+ {
+ "word_nikkud": "מִשְׁטָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5683-mishtar",
+ "gender": "masculine"
+ }
+ ],
+ "משטר־": [
+ {
+ "word_nikkud": "מִשְׁטָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5683-mishtar",
+ "gender": "masculine"
+ }
+ ],
+ "משטרי־": [
+ {
+ "word_nikkud": "מִשְׁטָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5683-mishtar",
+ "gender": "masculine"
+ }
+ ],
+ "שוטר": [
+ {
+ "word_nikkud": "שׁוֹטֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4664-shoter",
+ "gender": "masculine"
+ }
+ ],
+ "שוטרים": [
+ {
+ "word_nikkud": "שׁוֹטֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4664-shoter",
+ "gender": "masculine"
+ }
+ ],
+ "שוטר־": [
+ {
+ "word_nikkud": "שׁוֹטֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4664-shoter",
+ "gender": "masculine"
+ }
+ ],
+ "שוטרי־": [
+ {
+ "word_nikkud": "שׁוֹטֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4664-shoter",
+ "gender": "masculine"
+ }
+ ],
+ "משטרה": [
+ {
+ "word_nikkud": "מִשְׁטָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4665-mishtara",
+ "gender": "feminine"
+ }
+ ],
+ "משטרות": [
+ {
+ "word_nikkud": "מִשְׁטָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4665-mishtara",
+ "gender": "feminine"
+ }
+ ],
+ "משטרת־": [
+ {
+ "word_nikkud": "מִשְׁטָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4665-mishtara",
+ "gender": "feminine"
+ }
+ ],
+ "משטרות־": [
+ {
+ "word_nikkud": "מִשְׁטָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4665-mishtara",
+ "gender": "feminine"
+ }
+ ],
+ "שטר": [
+ {
+ "word_nikkud": "שְׁטָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7821-shtar",
+ "gender": "masculine"
+ }
+ ],
+ "שטרות": [
+ {
+ "word_nikkud": "שְׁטָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7821-shtar",
+ "gender": "masculine"
+ }
+ ],
+ "שטר־": [
+ {
+ "word_nikkud": "שְׁטָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7821-shtar",
+ "gender": "masculine"
+ }
+ ],
+ "שטרי־": [
+ {
+ "word_nikkud": "שְׁטָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7821-shtar",
+ "gender": "masculine"
+ }
+ ],
+ "שטרודל": [
+ {
+ "word_nikkud": "שְׁטְרוּדֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5348-shtrudel",
+ "gender": "masculine"
+ }
+ ],
+ "שיבולת שועל": [
+ {
+ "word_nikkud": "שִׁבֹּלֶת שׁוּעָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7965-shibolet-shual",
+ "gender": ""
+ }
+ ],
+ "שיה": [
+ {
+ "word_nikkud": "שֵׂיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4417-seya",
+ "gender": "masculine"
+ }
+ ],
+ "שיות": [
+ {
+ "word_nikkud": "שֵׂיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4417-seya",
+ "gender": "masculine"
+ }
+ ],
+ "שיית־": [
+ {
+ "word_nikkud": "שֵׂיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4417-seya",
+ "gender": "masculine"
+ }
+ ],
+ "שיות־": [
+ {
+ "word_nikkud": "שֵׂיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4417-seya",
+ "gender": "masculine"
+ }
+ ],
+ "שיחה": [
+ {
+ "word_nikkud": "שִׂיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4849-sicha",
+ "gender": "feminine"
+ }
+ ],
+ "שיחות": [
+ {
+ "word_nikkud": "שִׂיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4849-sicha",
+ "gender": "feminine"
+ }
+ ],
+ "שיחת־": [
+ {
+ "word_nikkud": "שִׂיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4849-sicha",
+ "gender": "feminine"
+ }
+ ],
+ "שיחות־": [
+ {
+ "word_nikkud": "שִׂיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4849-sicha",
+ "gender": "feminine"
+ }
+ ],
+ "שיח": [
+ {
+ "word_nikkud": "שִׂיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6763-siach",
+ "gender": "masculine"
+ }
+ ],
+ "שיחים": [
+ {
+ "word_nikkud": "שִׂיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6763-siach",
+ "gender": "masculine"
+ }
+ ],
+ "שיח־": [
+ {
+ "word_nikkud": "שִׂיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6763-siach",
+ "gender": "masculine"
+ }
+ ],
+ "שיחי־": [
+ {
+ "word_nikkud": "שִׂיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6763-siach",
+ "gender": "masculine"
+ }
+ ],
+ "שיט": [
+ {
+ "word_nikkud": "שַׁיִט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6838-shayit",
+ "gender": "masculine"
+ }
+ ],
+ "שייטים": [
+ {
+ "word_nikkud": "שַׁיִט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6838-shayit",
+ "gender": "masculine"
+ }
+ ],
+ "שיט־": [
+ {
+ "word_nikkud": "שַׁיִט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6838-shayit",
+ "gender": "masculine"
+ }
+ ],
+ "שיטי־": [
+ {
+ "word_nikkud": "שַׁיִט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6838-shayit",
+ "gender": "masculine"
+ }
+ ],
+ "שיוט": [
+ {
+ "word_nikkud": "שִׁיּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4691-shiyut",
+ "gender": "masculine"
+ }
+ ],
+ "שיוטים": [
+ {
+ "word_nikkud": "שִׁיּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4691-shiyut",
+ "gender": "masculine"
+ }
+ ],
+ "שיוט־": [
+ {
+ "word_nikkud": "שִׁיּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4691-shiyut",
+ "gender": "masculine"
+ }
+ ],
+ "שיוטי־": [
+ {
+ "word_nikkud": "שִׁיּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4691-shiyut",
+ "gender": "masculine"
+ }
+ ],
+ "שיי": [
+ {
+ "word_nikkud": "שַׁי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7536-shay",
+ "gender": "masculine"
+ }
+ ],
+ "שייש": [
+ {
+ "word_nikkud": "שַׁיִשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8438-shayish",
+ "gender": ""
+ }
+ ],
+ "שישים": [
+ {
+ "word_nikkud": "שַׁיִשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8438-shayish",
+ "gender": ""
+ }
+ ],
+ "שיש־": [
+ {
+ "word_nikkud": "שַׁיִשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8438-shayish",
+ "gender": ""
+ }
+ ],
+ "שישי־": [
+ {
+ "word_nikkud": "שַׁיִשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8438-shayish",
+ "gender": ""
+ }
+ ],
+ "משימה": [
+ {
+ "word_nikkud": "מְשִׂימָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3756-mesima",
+ "gender": "feminine"
+ }
+ ],
+ "משימות": [
+ {
+ "word_nikkud": "מְשִׂימָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3756-mesima",
+ "gender": "feminine"
+ }
+ ],
+ "משימת־": [
+ {
+ "word_nikkud": "מְשִׂימָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3756-mesima",
+ "gender": "feminine"
+ }
+ ],
+ "משימות־": [
+ {
+ "word_nikkud": "מְשִׂימָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3756-mesima",
+ "gender": "feminine"
+ }
+ ],
+ "השמה": [
+ {
+ "word_nikkud": "הֲשָׂמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3929-hasama",
+ "gender": "feminine"
+ }
+ ],
+ "השמות": [
+ {
+ "word_nikkud": "הֲשָׂמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3929-hasama",
+ "gender": "feminine"
+ }
+ ],
+ "השמת־": [
+ {
+ "word_nikkud": "הֲשָׂמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3929-hasama",
+ "gender": "feminine"
+ }
+ ],
+ "השמות־": [
+ {
+ "word_nikkud": "הֲשָׂמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3929-hasama",
+ "gender": "feminine"
+ }
+ ],
+ "תשומה": [
+ {
+ "word_nikkud": "תְּשׂוּמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7645-tsuma",
+ "gender": "feminine"
+ }
+ ],
+ "תשומות": [
+ {
+ "word_nikkud": "תְּשׂוּמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7645-tsuma",
+ "gender": "feminine"
+ }
+ ],
+ "תשומת־": [
+ {
+ "word_nikkud": "תְּשׂוּמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7645-tsuma",
+ "gender": "feminine"
+ }
+ ],
+ "תשומות־": [
+ {
+ "word_nikkud": "תְּשׂוּמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7645-tsuma",
+ "gender": "feminine"
+ }
+ ],
+ "שייר": [
+ {
+ "word_nikkud": "שְׁיָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9137-shyar",
+ "gender": "masculine"
+ }
+ ],
+ "שיירים": [
+ {
+ "word_nikkud": "שְׁיָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9137-shyar",
+ "gender": "masculine"
+ }
+ ],
+ "שייר־": [
+ {
+ "word_nikkud": "שְׁיָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9137-shyar",
+ "gender": "masculine"
+ }
+ ],
+ "שיירי־": [
+ {
+ "word_nikkud": "שְׁיָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9137-shyar",
+ "gender": "masculine"
+ }
+ ],
+ "שירה": [
+ {
+ "word_nikkud": "שִׁירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4338-shira",
+ "gender": "feminine"
+ }
+ ],
+ "שירות": [
+ {
+ "word_nikkud": "שִׁירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4338-shira",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שֵׁרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6200-sherut",
+ "gender": "masculine"
+ }
+ ],
+ "שירת־": [
+ {
+ "word_nikkud": "שִׁירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4338-shira",
+ "gender": "feminine"
+ }
+ ],
+ "שירות־": [
+ {
+ "word_nikkud": "שִׁירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4338-shira",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שֵׁרוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6200-sherut",
+ "gender": "masculine"
+ }
+ ],
+ "שיור": [
+ {
+ "word_nikkud": "שִׁיּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9032-shiyur",
+ "gender": "masculine"
+ }
+ ],
+ "שיורים": [
+ {
+ "word_nikkud": "שִׁיּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9032-shiyur",
+ "gender": "masculine"
+ }
+ ],
+ "שיור־": [
+ {
+ "word_nikkud": "שִׁיּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9032-shiyur",
+ "gender": "masculine"
+ }
+ ],
+ "שיורי־": [
+ {
+ "word_nikkud": "שִׁיּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9032-shiyur",
+ "gender": "masculine"
+ }
+ ],
+ "ששון": [
+ {
+ "word_nikkud": "שָׂשׂוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8397-sason",
+ "gender": "masculine"
+ }
+ ],
+ "ששונים": [
+ {
+ "word_nikkud": "שָׂשׂוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8397-sason",
+ "gender": "masculine"
+ }
+ ],
+ "ששונות": [
+ {
+ "word_nikkud": "שָׂשׂוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8397-sason",
+ "gender": "masculine"
+ }
+ ],
+ "ששון־": [
+ {
+ "word_nikkud": "שָׂשׂוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8397-sason",
+ "gender": "masculine"
+ }
+ ],
+ "ששוני־": [
+ {
+ "word_nikkud": "שָׂשׂוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8397-sason",
+ "gender": "masculine"
+ }
+ ],
+ "ששונות־": [
+ {
+ "word_nikkud": "שָׂשׂוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8397-sason",
+ "gender": "masculine"
+ }
+ ],
+ "שישייה": [
+ {
+ "word_nikkud": "שִשִּיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8302-shishiya",
+ "gender": "masculine"
+ }
+ ],
+ "שישיות": [
+ {
+ "word_nikkud": "שִשִּיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8302-shishiya",
+ "gender": "masculine"
+ }
+ ],
+ "שישיית־": [
+ {
+ "word_nikkud": "שִשִּיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8302-shishiya",
+ "gender": "masculine"
+ }
+ ],
+ "שישיות־": [
+ {
+ "word_nikkud": "שִשִּיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8302-shishiya",
+ "gender": "masculine"
+ }
+ ],
+ "שיתוף פעולה": [
+ {
+ "word_nikkud": "שִׁתּוּף פְּעֻלָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7392-shituf-peula",
+ "gender": ""
+ }
+ ],
+ "משכב": [
+ {
+ "word_nikkud": "מִשְׁכָּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5811-mishkav",
+ "gender": "masculine"
+ }
+ ],
+ "משכבים": [
+ {
+ "word_nikkud": "מִשְׁכָּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5811-mishkav",
+ "gender": "masculine"
+ }
+ ],
+ "משכב־": [
+ {
+ "word_nikkud": "מִשְׁכָּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5811-mishkav",
+ "gender": "masculine"
+ }
+ ],
+ "משכבי־": [
+ {
+ "word_nikkud": "מִשְׁכָּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5811-mishkav",
+ "gender": "masculine"
+ }
+ ],
+ "שכבה": [
+ {
+ "word_nikkud": "שִׁכְבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3917-shichva",
+ "gender": "feminine"
+ }
+ ],
+ "שכבות": [
+ {
+ "word_nikkud": "שִׁכְבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3917-shichva",
+ "gender": "feminine"
+ }
+ ],
+ "שכבת־": [
+ {
+ "word_nikkud": "שִׁכְבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3917-shichva",
+ "gender": "feminine"
+ }
+ ],
+ "שכבות־": [
+ {
+ "word_nikkud": "שִׁכְבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3917-shichva",
+ "gender": "feminine"
+ }
+ ],
+ "שכיחות": [
+ {
+ "word_nikkud": "שְׁכִיחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5938-shchichut",
+ "gender": "feminine"
+ }
+ ],
+ "שכיחויות": [
+ {
+ "word_nikkud": "שְׁכִיחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5938-shchichut",
+ "gender": "feminine"
+ }
+ ],
+ "שכיחות־": [
+ {
+ "word_nikkud": "שְׁכִיחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5938-shchichut",
+ "gender": "feminine"
+ }
+ ],
+ "שכיחויות־": [
+ {
+ "word_nikkud": "שְׁכִיחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5938-shchichut",
+ "gender": "feminine"
+ }
+ ],
+ "שכל": [
+ {
+ "word_nikkud": "שֵׂכֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3202-sechel",
+ "gender": "masculine"
+ }
+ ],
+ "שכלים": [
+ {
+ "word_nikkud": "שֵׂכֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3202-sechel",
+ "gender": "masculine"
+ }
+ ],
+ "שכל־": [
+ {
+ "word_nikkud": "שֵׂכֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3202-sechel",
+ "gender": "masculine"
+ }
+ ],
+ "שכלי־": [
+ {
+ "word_nikkud": "שֵׂכֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3202-sechel",
+ "gender": "masculine"
+ }
+ ],
+ "שכלתן": [
+ {
+ "word_nikkud": "שְׂכַלְתָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3460-schaltan",
+ "gender": "masculine"
+ }
+ ],
+ "שכלתנים": [
+ {
+ "word_nikkud": "שְׂכַלְתָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3460-schaltan",
+ "gender": "masculine"
+ }
+ ],
+ "שכלתן־": [
+ {
+ "word_nikkud": "שְׂכַלְתָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3460-schaltan",
+ "gender": "masculine"
+ }
+ ],
+ "שכלתני־": [
+ {
+ "word_nikkud": "שְׂכַלְתָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3460-schaltan",
+ "gender": "masculine"
+ }
+ ],
+ "שכול": [
+ {
+ "word_nikkud": "שְׁכוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8707-shchol",
+ "gender": "masculine"
+ }
+ ],
+ "שכול־": [
+ {
+ "word_nikkud": "שְׁכוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8707-shchol",
+ "gender": "masculine"
+ }
+ ],
+ "השכלה": [
+ {
+ "word_nikkud": "הַשְׂכָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7396-haskala",
+ "gender": "feminine"
+ }
+ ],
+ "השכלות": [
+ {
+ "word_nikkud": "הַשְׂכָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7396-haskala",
+ "gender": "feminine"
+ }
+ ],
+ "השכלת־": [
+ {
+ "word_nikkud": "הַשְׂכָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7396-haskala",
+ "gender": "feminine"
+ }
+ ],
+ "השכלות־": [
+ {
+ "word_nikkud": "הַשְׂכָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7396-haskala",
+ "gender": "feminine"
+ }
+ ],
+ "אשכול": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6893-eshkol",
+ "gender": ""
+ }
+ ],
+ "אשכולות": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6893-eshkol",
+ "gender": ""
+ }
+ ],
+ "אשכול־": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6893-eshkol",
+ "gender": ""
+ }
+ ],
+ "אשכולות־": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6893-eshkol",
+ "gender": ""
+ }
+ ],
+ "אשכולית": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹלִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6894-eshkolit",
+ "gender": "feminine"
+ }
+ ],
+ "אשכוליות": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹלִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6894-eshkolit",
+ "gender": "feminine"
+ }
+ ],
+ "אשכולית־": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹלִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6894-eshkolit",
+ "gender": "feminine"
+ }
+ ],
+ "אשכוליות־": [
+ {
+ "word_nikkud": "אֶשְׁכּוֹלִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6894-eshkolit",
+ "gender": "feminine"
+ }
+ ],
+ "שכלול": [
+ {
+ "word_nikkud": "שִׁכְלוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4704-shichlul",
+ "gender": "masculine"
+ }
+ ],
+ "שכלולים": [
+ {
+ "word_nikkud": "שִׁכְלוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4704-shichlul",
+ "gender": "masculine"
+ }
+ ],
+ "שכלול־": [
+ {
+ "word_nikkud": "שִׁכְלוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4704-shichlul",
+ "gender": "masculine"
+ }
+ ],
+ "שכלולי־": [
+ {
+ "word_nikkud": "שִׁכְלוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4704-shichlul",
+ "gender": "masculine"
+ }
+ ],
+ "השתכללות": [
+ {
+ "word_nikkud": "הִשְׁתַּכְלְלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4705-hishtachlelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתכללויות": [
+ {
+ "word_nikkud": "הִשְׁתַּכְלְלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4705-hishtachlelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתכללות־": [
+ {
+ "word_nikkud": "הִשְׁתַּכְלְלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4705-hishtachlelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתכללויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּכְלְלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4705-hishtachlelut",
+ "gender": "feminine"
+ }
+ ],
+ "שכמה": [
+ {
+ "word_nikkud": "שִׁכְמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8579-shichma",
+ "gender": "feminine"
+ }
+ ],
+ "שכמות": [
+ {
+ "word_nikkud": "שִׁכְמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8579-shichma",
+ "gender": "feminine"
+ }
+ ],
+ "שכמת־": [
+ {
+ "word_nikkud": "שִׁכְמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8579-shichma",
+ "gender": "feminine"
+ }
+ ],
+ "שכמות־": [
+ {
+ "word_nikkud": "שִׁכְמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8579-shichma",
+ "gender": "feminine"
+ }
+ ],
+ "שכם": [
+ {
+ "word_nikkud": "שֶׁכֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7173-shechem",
+ "gender": "masculine"
+ }
+ ],
+ "שכמים": [
+ {
+ "word_nikkud": "שֶׁכֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7173-shechem",
+ "gender": "masculine"
+ }
+ ],
+ "שכם־": [
+ {
+ "word_nikkud": "שֶׁכֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7173-shechem",
+ "gender": "masculine"
+ }
+ ],
+ "שכמי־": [
+ {
+ "word_nikkud": "שֶׁכֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7173-shechem",
+ "gender": "masculine"
+ }
+ ],
+ "שכונה": [
+ {
+ "word_nikkud": "שְׁכוּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3664-shchuna",
+ "gender": "feminine"
+ }
+ ],
+ "שכונות": [
+ {
+ "word_nikkud": "שְׁכוּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3664-shchuna",
+ "gender": "feminine"
+ }
+ ],
+ "שכונת־": [
+ {
+ "word_nikkud": "שְׁכוּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3664-shchuna",
+ "gender": "feminine"
+ }
+ ],
+ "שכונות־": [
+ {
+ "word_nikkud": "שְׁכוּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3664-shchuna",
+ "gender": "feminine"
+ }
+ ],
+ "משתכן": [
+ {
+ "word_nikkud": "מִשְׁתַּכֵּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4920-mishtaken",
+ "gender": "masculine"
+ }
+ ],
+ "משתכנים": [
+ {
+ "word_nikkud": "מִשְׁתַּכֵּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4920-mishtaken",
+ "gender": "masculine"
+ }
+ ],
+ "משתכן־": [
+ {
+ "word_nikkud": "מִשְׁתַּכֵּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4920-mishtaken",
+ "gender": "masculine"
+ }
+ ],
+ "משתכני־": [
+ {
+ "word_nikkud": "מִשְׁתַּכֵּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4920-mishtaken",
+ "gender": "masculine"
+ }
+ ],
+ "שכינה": [
+ {
+ "word_nikkud": "שְׁכִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7558-shchina",
+ "gender": "feminine"
+ }
+ ],
+ "שכינת־": [
+ {
+ "word_nikkud": "שְׁכִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7558-shchina",
+ "gender": "feminine"
+ }
+ ],
+ "שכן": [
+ {
+ "word_nikkud": "שָׁכֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6340-shachen",
+ "gender": "masculine"
+ }
+ ],
+ "שכנים": [
+ {
+ "word_nikkud": "שָׁכֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6340-shachen",
+ "gender": "masculine"
+ }
+ ],
+ "שכן־": [
+ {
+ "word_nikkud": "שָׁכֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6340-shachen",
+ "gender": "masculine"
+ }
+ ],
+ "שכני־": [
+ {
+ "word_nikkud": "שָׁכֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6340-shachen",
+ "gender": "masculine"
+ }
+ ],
+ "משכנתה": [
+ {
+ "word_nikkud": "מַשְׁכַּנְתָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6363-mashkanta",
+ "gender": "feminine"
+ }
+ ],
+ "משכנתות": [
+ {
+ "word_nikkud": "מַשְׁכַּנְתָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6363-mashkanta",
+ "gender": "feminine"
+ }
+ ],
+ "משכנתאות": [
+ {
+ "word_nikkud": "מַשְׁכַּנְתָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6363-mashkanta",
+ "gender": "feminine"
+ }
+ ],
+ "משכנתת־": [
+ {
+ "word_nikkud": "מַשְׁכַּנְתָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6363-mashkanta",
+ "gender": "feminine"
+ }
+ ],
+ "משכנתות־": [
+ {
+ "word_nikkud": "מַשְׁכַּנְתָּה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6363-mashkanta",
+ "gender": "feminine"
+ }
+ ],
+ "משכן": [
+ {
+ "word_nikkud": "מִשְׁכָּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6769-mishkan",
+ "gender": "masculine"
+ }
+ ],
+ "משכנות": [
+ {
+ "word_nikkud": "מִשְׁכָּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6769-mishkan",
+ "gender": "masculine"
+ }
+ ],
+ "משכן־": [
+ {
+ "word_nikkud": "מִשְׁכָּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6769-mishkan",
+ "gender": "masculine"
+ }
+ ],
+ "משכנות־": [
+ {
+ "word_nikkud": "מִשְׁכָּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6769-mishkan",
+ "gender": "masculine"
+ }
+ ],
+ "שכנוע": [
+ {
+ "word_nikkud": "שִׁכְנוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6585-shichnua",
+ "gender": "masculine"
+ }
+ ],
+ "שכנועים": [
+ {
+ "word_nikkud": "שִׁכְנוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6585-shichnua",
+ "gender": "masculine"
+ }
+ ],
+ "שכנוע־": [
+ {
+ "word_nikkud": "שִׁכְנוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6585-shichnua",
+ "gender": "masculine"
+ }
+ ],
+ "שכנועי־": [
+ {
+ "word_nikkud": "שִׁכְנוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6585-shichnua",
+ "gender": "masculine"
+ }
+ ],
+ "שכירות": [
+ {
+ "word_nikkud": "שְׂכִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6560-schirut",
+ "gender": "feminine"
+ }
+ ],
+ "שכירויות": [
+ {
+ "word_nikkud": "שְׂכִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6560-schirut",
+ "gender": "feminine"
+ }
+ ],
+ "שכירות־": [
+ {
+ "word_nikkud": "שְׂכִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6560-schirut",
+ "gender": "feminine"
+ }
+ ],
+ "שכירויות־": [
+ {
+ "word_nikkud": "שְׂכִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6560-schirut",
+ "gender": "feminine"
+ }
+ ],
+ "משכורת": [
+ {
+ "word_nikkud": "מַשְׂכֹּרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5431-maskoret",
+ "gender": "feminine"
+ }
+ ],
+ "משכורות": [
+ {
+ "word_nikkud": "מַשְׂכֹּרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5431-maskoret",
+ "gender": "feminine"
+ }
+ ],
+ "משכורת־": [
+ {
+ "word_nikkud": "מַשְׂכֹּרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5431-maskoret",
+ "gender": "feminine"
+ }
+ ],
+ "משכורות־": [
+ {
+ "word_nikkud": "מַשְׂכֹּרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5431-maskoret",
+ "gender": "feminine"
+ }
+ ],
+ "השכרה": [
+ {
+ "word_nikkud": "הַשְׂכָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2924-haskara",
+ "gender": "feminine"
+ }
+ ],
+ "השכרת־": [
+ {
+ "word_nikkud": "הַשְׂכָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2924-haskara",
+ "gender": "feminine"
+ }
+ ],
+ "שכירה": [
+ {
+ "word_nikkud": "שְׂכִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2925-schira",
+ "gender": "feminine"
+ }
+ ],
+ "שכירת־": [
+ {
+ "word_nikkud": "שְׂכִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2925-schira",
+ "gender": "feminine"
+ }
+ ],
+ "שכר": [
+ {
+ "word_nikkud": "שָׂכָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2926-sachar",
+ "gender": "masculine"
+ }
+ ],
+ "שכר־": [
+ {
+ "word_nikkud": "שָׂכָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2926-sachar",
+ "gender": "masculine"
+ }
+ ],
+ "שיכור": [
+ {
+ "word_nikkud": "שִׁכּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7820-shikor",
+ "gender": "masculine"
+ }
+ ],
+ "שיכורים": [
+ {
+ "word_nikkud": "שִׁכּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7820-shikor",
+ "gender": "masculine"
+ }
+ ],
+ "שיכור־": [
+ {
+ "word_nikkud": "שִׁכּוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7820-shikor",
+ "gender": "masculine"
+ }
+ ],
+ "שיכורי־": [
+ {
+ "word_nikkud": "שִׁכּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7820-shikor",
+ "gender": "masculine"
+ }
+ ],
+ "שילוב": [
+ {
+ "word_nikkud": "שִׁלּוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4329-shiluv",
+ "gender": "masculine"
+ }
+ ],
+ "שילובים": [
+ {
+ "word_nikkud": "שִׁלּוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4329-shiluv",
+ "gender": "masculine"
+ }
+ ],
+ "שילוב־": [
+ {
+ "word_nikkud": "שִׁלּוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4329-shiluv",
+ "gender": "masculine"
+ }
+ ],
+ "שילובי־": [
+ {
+ "word_nikkud": "שִׁלּוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4329-shiluv",
+ "gender": "masculine"
+ }
+ ],
+ "תשלובת": [
+ {
+ "word_nikkud": "תִּשְׁלֹבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3258-tishlovet",
+ "gender": "feminine"
+ }
+ ],
+ "תשלובות": [
+ {
+ "word_nikkud": "תִּשְׁלֹבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3258-tishlovet",
+ "gender": "feminine"
+ }
+ ],
+ "תשלובת־": [
+ {
+ "word_nikkud": "תִּשְׁלֹבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3258-tishlovet",
+ "gender": "feminine"
+ }
+ ],
+ "תשלובות־": [
+ {
+ "word_nikkud": "תִּשְׁלֹבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3258-tishlovet",
+ "gender": "feminine"
+ }
+ ],
+ "שלב": [
+ {
+ "word_nikkud": "שָׁלָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3259-shalav",
+ "gender": "masculine"
+ }
+ ],
+ "שלבים": [
+ {
+ "word_nikkud": "שָׁלָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3259-shalav",
+ "gender": "masculine"
+ }
+ ],
+ "שלב־": [
+ {
+ "word_nikkud": "שָׁלָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3259-shalav",
+ "gender": "masculine"
+ }
+ ],
+ "שלבי־": [
+ {
+ "word_nikkud": "שָׁלָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3259-shalav",
+ "gender": "masculine"
+ }
+ ],
+ "משלב": [
+ {
+ "word_nikkud": "מִשְׁלָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3551-mishlav",
+ "gender": "masculine"
+ }
+ ],
+ "משלבים": [
+ {
+ "word_nikkud": "מִשְׁלָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3551-mishlav",
+ "gender": "masculine"
+ }
+ ],
+ "משלב־": [
+ {
+ "word_nikkud": "מִשְׁלָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3551-mishlav",
+ "gender": "masculine"
+ }
+ ],
+ "משלבי־": [
+ {
+ "word_nikkud": "מִשְׁלָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3551-mishlav",
+ "gender": "masculine"
+ }
+ ],
+ "שלג": [
+ {
+ "word_nikkud": "שֶׁלֶג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3185-sheleg",
+ "gender": "masculine"
+ }
+ ],
+ "שלגים": [
+ {
+ "word_nikkud": "שֶׁלֶג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3185-sheleg",
+ "gender": "masculine"
+ }
+ ],
+ "שלג־": [
+ {
+ "word_nikkud": "שֶׁלֶג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3185-sheleg",
+ "gender": "masculine"
+ }
+ ],
+ "שלגי־": [
+ {
+ "word_nikkud": "שֶׁלֶג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3185-sheleg",
+ "gender": "masculine"
+ }
+ ],
+ "שלגון": [
+ {
+ "word_nikkud": "שִׁלְגּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7651-shilgon",
+ "gender": "masculine"
+ }
+ ],
+ "שלגונים": [
+ {
+ "word_nikkud": "שִׁלְגּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7651-shilgon",
+ "gender": "masculine"
+ }
+ ],
+ "שלגון־": [
+ {
+ "word_nikkud": "שִׁלְגּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7651-shilgon",
+ "gender": "masculine"
+ }
+ ],
+ "שלגוני־": [
+ {
+ "word_nikkud": "שִׁלְגּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7651-shilgon",
+ "gender": "masculine"
+ }
+ ],
+ "שלגייה": [
+ {
+ "word_nikkud": "שִׁלְגִּיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9262-shilgiya",
+ "gender": "masculine"
+ }
+ ],
+ "אשלג": [
+ {
+ "word_nikkud": "אַשְׁלָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6206-ashlag",
+ "gender": "masculine"
+ }
+ ],
+ "אשלג־": [
+ {
+ "word_nikkud": "אַשְׁלָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6206-ashlag",
+ "gender": "masculine"
+ }
+ ],
+ "אשלגן": [
+ {
+ "word_nikkud": "אַשְׁלְגַן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6207-ashlegan",
+ "gender": "masculine"
+ }
+ ],
+ "אשלגן־": [
+ {
+ "word_nikkud": "אַשְׁלְגַן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6207-ashlegan",
+ "gender": "masculine"
+ }
+ ],
+ "שלד": [
+ {
+ "word_nikkud": "שֶׁלֶד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6273-sheled",
+ "gender": "masculine"
+ }
+ ],
+ "שלדים": [
+ {
+ "word_nikkud": "שֶׁלֶד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6273-sheled",
+ "gender": "masculine"
+ }
+ ],
+ "שלד־": [
+ {
+ "word_nikkud": "שֶׁלֶד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6273-sheled",
+ "gender": "masculine"
+ }
+ ],
+ "שלדי־": [
+ {
+ "word_nikkud": "שֶׁלֶד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6273-sheled",
+ "gender": "masculine"
+ }
+ ],
+ "שלהבת": [
+ {
+ "word_nikkud": "שַׁלְהֶבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3612-shalhevet",
+ "gender": "feminine"
+ }
+ ],
+ "שלהבות": [
+ {
+ "word_nikkud": "שַׁלְהֶבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3612-shalhevet",
+ "gender": "feminine"
+ }
+ ],
+ "שלהבת־": [
+ {
+ "word_nikkud": "שַׁלְהֶבֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3612-shalhevet",
+ "gender": "feminine"
+ }
+ ],
+ "שלהבות־": [
+ {
+ "word_nikkud": "שַׁלְהֶבֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3612-shalhevet",
+ "gender": "feminine"
+ }
+ ],
+ "שלווה": [
+ {
+ "word_nikkud": "שַׁלְוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3456-shalva",
+ "gender": "feminine"
+ }
+ ],
+ "שלוות־": [
+ {
+ "word_nikkud": "שַׁלְוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3456-shalva",
+ "gender": "feminine"
+ }
+ ],
+ "שלוק": [
+ {
+ "word_nikkud": "שְׁלוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9059-shluk",
+ "gender": ""
+ }
+ ],
+ "שלוקים": [
+ {
+ "word_nikkud": "שְׁלוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9059-shluk",
+ "gender": ""
+ }
+ ],
+ "שלוק־": [
+ {
+ "word_nikkud": "שְׁלוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9059-shluk",
+ "gender": ""
+ }
+ ],
+ "שלוקי־": [
+ {
+ "word_nikkud": "שְׁלוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9059-shluk",
+ "gender": ""
+ }
+ ],
+ "שליחות": [
+ {
+ "word_nikkud": "שְׁלִיחוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8272-shlichut",
+ "gender": "feminine"
+ }
+ ],
+ "שליחויות": [
+ {
+ "word_nikkud": "שְׁלִיחוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8272-shlichut",
+ "gender": "feminine"
+ }
+ ],
+ "שליחות־": [
+ {
+ "word_nikkud": "שְׁלִיחוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8272-shlichut",
+ "gender": "feminine"
+ }
+ ],
+ "שליחויות־": [
+ {
+ "word_nikkud": "שְׁלִיחוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8272-shlichut",
+ "gender": "feminine"
+ }
+ ],
+ "שליח": [
+ {
+ "word_nikkud": "שָׁלִיחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4356-shaliach",
+ "gender": "masculine"
+ }
+ ],
+ "שליחים": [
+ {
+ "word_nikkud": "שָׁלִיחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4356-shaliach",
+ "gender": "masculine"
+ }
+ ],
+ "שליח־": [
+ {
+ "word_nikkud": "שָׁלִיחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4356-shaliach",
+ "gender": "masculine"
+ }
+ ],
+ "שליחי־": [
+ {
+ "word_nikkud": "שָׁלִיחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4356-shaliach",
+ "gender": "masculine"
+ }
+ ],
+ "משלוח": [
+ {
+ "word_nikkud": "מִשְׁלוֹחַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8876-mishloach",
+ "gender": "masculine"
+ }
+ ],
+ "משלוחים": [
+ {
+ "word_nikkud": "מִשְׁלוֹחַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8876-mishloach",
+ "gender": "masculine"
+ }
+ ],
+ "משלוח־": [
+ {
+ "word_nikkud": "מִשְׁלוֹחַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8876-mishloach",
+ "gender": "masculine"
+ }
+ ],
+ "משלוחי־": [
+ {
+ "word_nikkud": "מִשְׁלוֹחַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8876-mishloach",
+ "gender": "masculine"
+ }
+ ],
+ "שלוחה": [
+ {
+ "word_nikkud": "שְׁלוּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8013-shlucha",
+ "gender": "feminine"
+ }
+ ],
+ "שלוחות": [
+ {
+ "word_nikkud": "שְׁלוּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8013-shlucha",
+ "gender": "feminine"
+ }
+ ],
+ "שלוחת־": [
+ {
+ "word_nikkud": "שְׁלוּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8013-shlucha",
+ "gender": "feminine"
+ }
+ ],
+ "שלוחות־": [
+ {
+ "word_nikkud": "שְׁלוּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8013-shlucha",
+ "gender": "feminine"
+ }
+ ],
+ "משלחת": [
+ {
+ "word_nikkud": "מִשְׁלַחַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6948-mishlachat",
+ "gender": "feminine"
+ }
+ ],
+ "משלחות": [
+ {
+ "word_nikkud": "מִשְׁלַחַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6948-mishlachat",
+ "gender": "feminine"
+ }
+ ],
+ "משלחת־": [
+ {
+ "word_nikkud": "מִשְׁלַחַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6948-mishlachat",
+ "gender": "feminine"
+ }
+ ],
+ "משלחות־": [
+ {
+ "word_nikkud": "מִשְׁלַחַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6948-mishlachat",
+ "gender": "feminine"
+ }
+ ],
+ "שליט": [
+ {
+ "word_nikkud": "שַׁלִּיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3321-shalit",
+ "gender": "masculine"
+ }
+ ],
+ "שליטים": [
+ {
+ "word_nikkud": "שַׁלִּיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3321-shalit",
+ "gender": "masculine"
+ }
+ ],
+ "שליט־": [
+ {
+ "word_nikkud": "שַׁלִּיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3321-shalit",
+ "gender": "masculine"
+ }
+ ],
+ "שליטי־": [
+ {
+ "word_nikkud": "שַׁלִּיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3321-shalit",
+ "gender": "masculine"
+ }
+ ],
+ "שלטון": [
+ {
+ "word_nikkud": "שִׁלְטוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3592-shilton",
+ "gender": "masculine"
+ }
+ ],
+ "שלטונות": [
+ {
+ "word_nikkud": "שִׁלְטוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3592-shilton",
+ "gender": "masculine"
+ }
+ ],
+ "שלטון־": [
+ {
+ "word_nikkud": "שִׁלְטוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3592-shilton",
+ "gender": "masculine"
+ }
+ ],
+ "שלטונות־": [
+ {
+ "word_nikkud": "שִׁלְטוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3592-shilton",
+ "gender": "masculine"
+ }
+ ],
+ "שלט": [
+ {
+ "word_nikkud": "שַׁלָּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5987-shalat",
+ "gender": "masculine"
+ }
+ ],
+ "שלטים": [
+ {
+ "word_nikkud": "שַׁלָּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5987-shalat",
+ "gender": "masculine"
+ }
+ ],
+ "שלט־": [
+ {
+ "word_nikkud": "שַׁלָּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5987-shalat",
+ "gender": "masculine"
+ }
+ ],
+ "שלטי־": [
+ {
+ "word_nikkud": "שַׁלָּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5987-shalat",
+ "gender": "masculine"
+ }
+ ],
+ "השתלטות": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּטוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7498-hishtaltut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלטויות": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּטוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7498-hishtaltut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלטות־": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּטוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7498-hishtaltut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלטויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּטוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7498-hishtaltut",
+ "gender": "feminine"
+ }
+ ],
+ "שילוט": [
+ {
+ "word_nikkud": "שִׁלּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9265-shilut",
+ "gender": "masculine"
+ }
+ ],
+ "שילוטים": [
+ {
+ "word_nikkud": "שִׁלּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9265-shilut",
+ "gender": "masculine"
+ }
+ ],
+ "שילוט־": [
+ {
+ "word_nikkud": "שִׁלּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9265-shilut",
+ "gender": "masculine"
+ }
+ ],
+ "שילוטי־": [
+ {
+ "word_nikkud": "שִׁלּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9265-shilut",
+ "gender": "masculine"
+ }
+ ],
+ "שליטה": [
+ {
+ "word_nikkud": "שְׁלִיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9209-shlita",
+ "gender": "feminine"
+ }
+ ],
+ "שליטות": [
+ {
+ "word_nikkud": "שְׁלִיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9209-shlita",
+ "gender": "feminine"
+ }
+ ],
+ "שליטת־": [
+ {
+ "word_nikkud": "שְׁלִיטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9209-shlita",
+ "gender": "feminine"
+ }
+ ],
+ "שליטות־": [
+ {
+ "word_nikkud": "שְׁלִיטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9209-shlita",
+ "gender": "feminine"
+ }
+ ],
+ "אשליה": [
+ {
+ "word_nikkud": "אַשְׁלָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2916-ashlaya",
+ "gender": "feminine"
+ }
+ ],
+ "אשליות": [
+ {
+ "word_nikkud": "אַשְׁלָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2916-ashlaya",
+ "gender": "feminine"
+ }
+ ],
+ "אשליית־": [
+ {
+ "word_nikkud": "אַשְׁלָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2916-ashlaya",
+ "gender": "feminine"
+ }
+ ],
+ "אשליות־": [
+ {
+ "word_nikkud": "אַשְׁלָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2916-ashlaya",
+ "gender": "feminine"
+ }
+ ],
+ "שליה": [
+ {
+ "word_nikkud": "שִׁלְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7790-shilya",
+ "gender": "feminine"
+ }
+ ],
+ "שליות": [
+ {
+ "word_nikkud": "שִׁלְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7790-shilya",
+ "gender": "feminine"
+ }
+ ],
+ "שליית־": [
+ {
+ "word_nikkud": "שִׁלְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7790-shilya",
+ "gender": "feminine"
+ }
+ ],
+ "שליות־": [
+ {
+ "word_nikkud": "שִׁלְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7790-shilya",
+ "gender": "feminine"
+ }
+ ],
+ "שלייתן": [
+ {
+ "word_nikkud": "שִׁלְיָתָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8468-shilyatan",
+ "gender": "masculine"
+ }
+ ],
+ "שלייתנים": [
+ {
+ "word_nikkud": "שִׁלְיָתָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8468-shilyatan",
+ "gender": "masculine"
+ }
+ ],
+ "שלייתן־": [
+ {
+ "word_nikkud": "שִׁלְיָתָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8468-shilyatan",
+ "gender": "masculine"
+ }
+ ],
+ "שלייתני־": [
+ {
+ "word_nikkud": "שִׁלְיָתָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8468-shilyatan",
+ "gender": "masculine"
+ }
+ ],
+ "שליו": [
+ {
+ "word_nikkud": "שְׂלָו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8755-slav",
+ "gender": ""
+ }
+ ],
+ "שליווים": [
+ {
+ "word_nikkud": "שְׂלָו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8755-slav",
+ "gender": ""
+ }
+ ],
+ "שלו־": [
+ {
+ "word_nikkud": "שְׂלָו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8755-slav",
+ "gender": ""
+ }
+ ],
+ "שליווי־": [
+ {
+ "word_nikkud": "שְׂלָו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8755-slav",
+ "gender": ""
+ }
+ ],
+ "השלכה": [
+ {
+ "word_nikkud": "הַשְׁלָכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3879-hashlacha",
+ "gender": "feminine"
+ }
+ ],
+ "השלכות": [
+ {
+ "word_nikkud": "הַשְׁלָכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3879-hashlacha",
+ "gender": "feminine"
+ }
+ ],
+ "השלכת־": [
+ {
+ "word_nikkud": "הַשְׁלָכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3879-hashlacha",
+ "gender": "feminine"
+ }
+ ],
+ "השלכות־": [
+ {
+ "word_nikkud": "הַשְׁלָכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3879-hashlacha",
+ "gender": "feminine"
+ }
+ ],
+ "שלכת": [
+ {
+ "word_nikkud": "שַׁלֶּכֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4099-shalechet",
+ "gender": "feminine"
+ }
+ ],
+ "שלכות": [
+ {
+ "word_nikkud": "שַׁלֶּכֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4099-shalechet",
+ "gender": "feminine"
+ }
+ ],
+ "שלכת־": [
+ {
+ "word_nikkud": "שַׁלֶּכֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4099-shalechet",
+ "gender": "feminine"
+ }
+ ],
+ "שלכות־": [
+ {
+ "word_nikkud": "שַׁלֶּכֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4099-shalechet",
+ "gender": "feminine"
+ }
+ ],
+ "השתוללות": [
+ {
+ "word_nikkud": "הִשְׁתּוֹלְלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4278-hishtolelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתוללויות": [
+ {
+ "word_nikkud": "הִשְׁתּוֹלְלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4278-hishtolelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתוללות־": [
+ {
+ "word_nikkud": "הִשְׁתּוֹלְלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4278-hishtolelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתוללויות־": [
+ {
+ "word_nikkud": "הִשְׁתּוֹלְלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4278-hishtolelut",
+ "gender": "feminine"
+ }
+ ],
+ "שלל": [
+ {
+ "word_nikkud": "שְׁלָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8318-shlal",
+ "gender": "masculine"
+ }
+ ],
+ "שלל־": [
+ {
+ "word_nikkud": "שְׁלָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8318-shlal",
+ "gender": "masculine"
+ }
+ ],
+ "שלולית": [
+ {
+ "word_nikkud": "שְׁלוּלִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9283-shlulit",
+ "gender": "feminine"
+ }
+ ],
+ "שלוליות": [
+ {
+ "word_nikkud": "שְׁלוּלִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9283-shlulit",
+ "gender": "feminine"
+ }
+ ],
+ "שלולית־": [
+ {
+ "word_nikkud": "שְׁלוּלִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9283-shlulit",
+ "gender": "feminine"
+ }
+ ],
+ "שלוליות־": [
+ {
+ "word_nikkud": "שְׁלוּלִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9283-shlulit",
+ "gender": "feminine"
+ }
+ ],
+ "שלילה": [
+ {
+ "word_nikkud": "שְׁלִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9140-shlila",
+ "gender": "feminine"
+ }
+ ],
+ "שלילות": [
+ {
+ "word_nikkud": "שְׁלִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9140-shlila",
+ "gender": "feminine"
+ }
+ ],
+ "שלילת־": [
+ {
+ "word_nikkud": "שְׁלִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9140-shlila",
+ "gender": "feminine"
+ }
+ ],
+ "שלילות־": [
+ {
+ "word_nikkud": "שְׁלִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9140-shlila",
+ "gender": "feminine"
+ }
+ ],
+ "שלמות": [
+ {
+ "word_nikkud": "שְׁלֵמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8399-shlemut",
+ "gender": "feminine"
+ }
+ ],
+ "שלמויות": [
+ {
+ "word_nikkud": "שְׁלֵמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8399-shlemut",
+ "gender": "feminine"
+ }
+ ],
+ "שלמות־": [
+ {
+ "word_nikkud": "שְׁלֵמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8399-shlemut",
+ "gender": "feminine"
+ }
+ ],
+ "שלמויות־": [
+ {
+ "word_nikkud": "שְׁלֵמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8399-shlemut",
+ "gender": "feminine"
+ }
+ ],
+ "שלום": [
+ {
+ "word_nikkud": "שָׁלוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3126-shalom",
+ "gender": "masculine"
+ }
+ ],
+ "שלומות": [
+ {
+ "word_nikkud": "שָׁלוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3126-shalom",
+ "gender": "masculine"
+ }
+ ],
+ "שלום־": [
+ {
+ "word_nikkud": "שָׁלוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3126-shalom",
+ "gender": "masculine"
+ }
+ ],
+ "שלומות־": [
+ {
+ "word_nikkud": "שָׁלוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3126-shalom",
+ "gender": "masculine"
+ }
+ ],
+ "תשלום": [
+ {
+ "word_nikkud": "תַּשְׁלוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3626-tashlum",
+ "gender": "masculine"
+ }
+ ],
+ "תשלומים": [
+ {
+ "word_nikkud": "תַּשְׁלוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3626-tashlum",
+ "gender": "masculine"
+ }
+ ],
+ "תשלום־": [
+ {
+ "word_nikkud": "תַּשְׁלוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3626-tashlum",
+ "gender": "masculine"
+ }
+ ],
+ "תשלומי־": [
+ {
+ "word_nikkud": "תַּשְׁלוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3626-tashlum",
+ "gender": "masculine"
+ }
+ ],
+ "השלמה": [
+ {
+ "word_nikkud": "הַשְׁלָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4384-hashlama",
+ "gender": "feminine"
+ }
+ ],
+ "השלמות": [
+ {
+ "word_nikkud": "הַשְׁלָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4384-hashlama",
+ "gender": "feminine"
+ }
+ ],
+ "השלמת־": [
+ {
+ "word_nikkud": "הַשְׁלָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4384-hashlama",
+ "gender": "feminine"
+ }
+ ],
+ "השלמות־": [
+ {
+ "word_nikkud": "הַשְׁלָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4384-hashlama",
+ "gender": "feminine"
+ }
+ ],
+ "השתלמות": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּמוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4344-hishtalmut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלמויות": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּמוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4344-hishtalmut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלמות־": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּמוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4344-hishtalmut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלמויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּלְּמוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4344-hishtalmut",
+ "gender": "feminine"
+ }
+ ],
+ "שליף": [
+ {
+ "word_nikkud": "שְׁלִיף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6169-shlif",
+ "gender": "masculine"
+ }
+ ],
+ "שליפים": [
+ {
+ "word_nikkud": "שְׁלִיף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6169-shlif",
+ "gender": "masculine"
+ }
+ ],
+ "שליף־": [
+ {
+ "word_nikkud": "שְׁלִיף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6169-shlif",
+ "gender": "masculine"
+ }
+ ],
+ "שליפי־": [
+ {
+ "word_nikkud": "שְׁלִיף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6169-shlif",
+ "gender": "masculine"
+ }
+ ],
+ "שלפוחית": [
+ {
+ "word_nikkud": "שַׁלְפּוּחִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9132-shalpuchit",
+ "gender": "feminine"
+ }
+ ],
+ "שלפוחיות": [
+ {
+ "word_nikkud": "שַׁלְפּוּחִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9132-shalpuchit",
+ "gender": "feminine"
+ }
+ ],
+ "שלפוחית־": [
+ {
+ "word_nikkud": "שַׁלְפּוּחִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9132-shalpuchit",
+ "gender": "feminine"
+ }
+ ],
+ "שלפוחיות־": [
+ {
+ "word_nikkud": "שַׁלְפּוּחִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9132-shalpuchit",
+ "gender": "feminine"
+ }
+ ],
+ "שליש": [
+ {
+ "word_nikkud": "שְׁלִישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4489-shlish",
+ "gender": "masculine"
+ }
+ ],
+ "שלישים": [
+ {
+ "word_nikkud": "שְׁלִישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4489-shlish",
+ "gender": "masculine"
+ }
+ ],
+ "שליש־": [
+ {
+ "word_nikkud": "שְׁלִישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4489-shlish",
+ "gender": "masculine"
+ }
+ ],
+ "שלישי־": [
+ {
+ "word_nikkud": "שְׁלִישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4489-shlish",
+ "gender": "masculine"
+ }
+ ],
+ "שלישייה": [
+ {
+ "word_nikkud": "שְׁלִישִׁיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6274-shlishiya",
+ "gender": "feminine"
+ }
+ ],
+ "שלישייות": [
+ {
+ "word_nikkud": "שְׁלִישִׁיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6274-shlishiya",
+ "gender": "feminine"
+ }
+ ],
+ "שלישיית־": [
+ {
+ "word_nikkud": "שְׁלִישִׁיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6274-shlishiya",
+ "gender": "feminine"
+ }
+ ],
+ "שלישייות־": [
+ {
+ "word_nikkud": "שְׁלִישִׁיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6274-shlishiya",
+ "gender": "feminine"
+ }
+ ],
+ "שלשלת": [
+ {
+ "word_nikkud": "שַׁלְשֶׁלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3675-shalshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שלשלות": [
+ {
+ "word_nikkud": "שַׁלְשֶׁלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3675-shalshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שלשלת־": [
+ {
+ "word_nikkud": "שַׁלְשֶׁלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3675-shalshelet",
+ "gender": "feminine"
+ }
+ ],
+ "שלשלות־": [
+ {
+ "word_nikkud": "שַׁלְשֶׁלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3675-shalshelet",
+ "gender": "feminine"
+ }
+ ],
+ "השתלשלות": [
+ {
+ "word_nikkud": "הִשְׁתַּלְשְׁלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8321-hishtalshelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלשלויות": [
+ {
+ "word_nikkud": "הִשְׁתַּלְשְׁלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8321-hishtalshelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלשלות־": [
+ {
+ "word_nikkud": "הִשְׁתַּלְשְׁלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8321-hishtalshelut",
+ "gender": "feminine"
+ }
+ ],
+ "השתלשלויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּלְשְׁלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8321-hishtalshelut",
+ "gender": "feminine"
+ }
+ ],
+ "שם": [
+ {
+ "word_nikkud": "שֵׁם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3194-shem",
+ "gender": "masculine"
+ }
+ ],
+ "שמות": [
+ {
+ "word_nikkud": "שֵׁם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3194-shem",
+ "gender": "masculine"
+ }
+ ],
+ "שם־": [
+ {
+ "word_nikkud": "שֵׁם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3194-shem",
+ "gender": "masculine"
+ }
+ ],
+ "שמות־": [
+ {
+ "word_nikkud": "שֵׁם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3194-shem",
+ "gender": "masculine"
+ }
+ ],
+ "שמאות": [
+ {
+ "word_nikkud": "שַׁמָּאוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7204-shamaut",
+ "gender": "feminine"
+ }
+ ],
+ "שמאויות": [
+ {
+ "word_nikkud": "שַׁמָּאוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7204-shamaut",
+ "gender": "feminine"
+ }
+ ],
+ "שמאות־": [
+ {
+ "word_nikkud": "שַׁמָּאוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7204-shamaut",
+ "gender": "feminine"
+ }
+ ],
+ "שמאויות־": [
+ {
+ "word_nikkud": "שַׁמָּאוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7204-shamaut",
+ "gender": "feminine"
+ }
+ ],
+ "שמאי": [
+ {
+ "word_nikkud": "שַׁמַּאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3927-shamay",
+ "gender": "masculine"
+ }
+ ],
+ "שמאים": [
+ {
+ "word_nikkud": "שַׁמַּאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3927-shamay",
+ "gender": "masculine"
+ }
+ ],
+ "שמאי־": [
+ {
+ "word_nikkud": "שַׁמַּאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3927-shamay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "שַׁמַּאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3927-shamay",
+ "gender": "masculine"
+ }
+ ],
+ "שמאל": [
+ {
+ "word_nikkud": "שְׂמֹאל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7073-smol",
+ "gender": "masculine"
+ }
+ ],
+ "שמאל־": [
+ {
+ "word_nikkud": "שְׂמֹאל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7073-smol",
+ "gender": "masculine"
+ }
+ ],
+ "השמדה": [
+ {
+ "word_nikkud": "הַשְׁמָדָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2918-hashmada",
+ "gender": "feminine"
+ }
+ ],
+ "השמדת־": [
+ {
+ "word_nikkud": "הַשְׁמָדָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2918-hashmada",
+ "gender": "feminine"
+ }
+ ],
+ "שמחה": [
+ {
+ "word_nikkud": "שִׂמְחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3225-simcha",
+ "gender": "feminine"
+ }
+ ],
+ "שמחת־": [
+ {
+ "word_nikkud": "שִׂמְחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3225-simcha",
+ "gender": "feminine"
+ }
+ ],
+ "שמים": [
+ {
+ "word_nikkud": "שָׁמַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3248-shamayim",
+ "gender": ""
+ }
+ ],
+ "שמי־": [
+ {
+ "word_nikkud": "שָׁמַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3248-shamayim",
+ "gender": ""
+ }
+ ],
+ "שמיכה": [
+ {
+ "word_nikkud": "שְׂמִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5980-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "שמיכות": [
+ {
+ "word_nikkud": "שְׂמִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5980-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "שמיכת־": [
+ {
+ "word_nikkud": "שְׂמִיכָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5980-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "שמיכות־": [
+ {
+ "word_nikkud": "שְׂמִיכָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5980-smicha",
+ "gender": "feminine"
+ }
+ ],
+ "שמלה": [
+ {
+ "word_nikkud": "שִׂמְלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4098-simla",
+ "gender": "feminine"
+ }
+ ],
+ "שמלות": [
+ {
+ "word_nikkud": "שִׂמְלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4098-simla",
+ "gender": "feminine"
+ }
+ ],
+ "שמלת־": [
+ {
+ "word_nikkud": "שִׂמְלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4098-simla",
+ "gender": "feminine"
+ }
+ ],
+ "שמלות־": [
+ {
+ "word_nikkud": "שִׂמְלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4098-simla",
+ "gender": "feminine"
+ }
+ ],
+ "שממה": [
+ {
+ "word_nikkud": "שְׁמָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8639-shmama",
+ "gender": "feminine"
+ }
+ ],
+ "שממות": [
+ {
+ "word_nikkud": "שְׁמָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8639-shmama",
+ "gender": "feminine"
+ }
+ ],
+ "שממת־": [
+ {
+ "word_nikkud": "שְׁמָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8639-shmama",
+ "gender": "feminine"
+ }
+ ],
+ "שממות־": [
+ {
+ "word_nikkud": "שְׁמָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8639-shmama",
+ "gender": "feminine"
+ }
+ ],
+ "שממית": [
+ {
+ "word_nikkud": "שְׂמָמִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8854-smamit",
+ "gender": "feminine"
+ }
+ ],
+ "שממיות": [
+ {
+ "word_nikkud": "שְׂמָמִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8854-smamit",
+ "gender": "feminine"
+ }
+ ],
+ "שממית־": [
+ {
+ "word_nikkud": "שְׂמָמִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8854-smamit",
+ "gender": "feminine"
+ }
+ ],
+ "שממיות־": [
+ {
+ "word_nikkud": "שְׂמָמִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8854-smamit",
+ "gender": "feminine"
+ }
+ ],
+ "שמן": [
+ {
+ "word_nikkud": "שֶׁמֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3186-shemen",
+ "gender": "masculine"
+ }
+ ],
+ "שמנים": [
+ {
+ "word_nikkud": "שֶׁמֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3186-shemen",
+ "gender": "masculine"
+ }
+ ],
+ "שמן־": [
+ {
+ "word_nikkud": "שֶׁמֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3186-shemen",
+ "gender": "masculine"
+ }
+ ],
+ "שמני־": [
+ {
+ "word_nikkud": "שֶׁמֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3186-shemen",
+ "gender": "masculine"
+ }
+ ],
+ "שמנת": [
+ {
+ "word_nikkud": "שַׁמֶּנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3301-shamenet",
+ "gender": "feminine"
+ }
+ ],
+ "שמנות": [
+ {
+ "word_nikkud": "שַׁמֶּנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3301-shamenet",
+ "gender": "feminine"
+ }
+ ],
+ "שמנת־": [
+ {
+ "word_nikkud": "שַׁמֶּנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3301-shamenet",
+ "gender": "feminine"
+ }
+ ],
+ "שמנות־": [
+ {
+ "word_nikkud": "שַׁמֶּנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3301-shamenet",
+ "gender": "feminine"
+ }
+ ],
+ "השמנה": [
+ {
+ "word_nikkud": "הַשְׁמָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8554-hashmana",
+ "gender": "feminine"
+ }
+ ],
+ "השמנות": [
+ {
+ "word_nikkud": "הַשְׁמָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8554-hashmana",
+ "gender": "feminine"
+ }
+ ],
+ "השמנת־": [
+ {
+ "word_nikkud": "הַשְׁמָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8554-hashmana",
+ "gender": "feminine"
+ }
+ ],
+ "השמנות־": [
+ {
+ "word_nikkud": "הַשְׁמָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8554-hashmana",
+ "gender": "feminine"
+ }
+ ],
+ "שימוע": [
+ {
+ "word_nikkud": "שִׁמּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6558-shimua",
+ "gender": "masculine"
+ }
+ ],
+ "שימועים": [
+ {
+ "word_nikkud": "שִׁמּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6558-shimua",
+ "gender": "masculine"
+ }
+ ],
+ "שימוע־": [
+ {
+ "word_nikkud": "שִׁמּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6558-shimua",
+ "gender": "masculine"
+ }
+ ],
+ "שימועי־": [
+ {
+ "word_nikkud": "שִׁמּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6558-shimua",
+ "gender": "masculine"
+ }
+ ],
+ "משמעות": [
+ {
+ "word_nikkud": "מַשְׁמָעוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4532-mashmaut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מִשְׁמַעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3820-mishmaat",
+ "gender": "feminine"
+ }
+ ],
+ "משמעויות": [
+ {
+ "word_nikkud": "מַשְׁמָעוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4532-mashmaut",
+ "gender": "feminine"
+ }
+ ],
+ "משמעות־": [
+ {
+ "word_nikkud": "מַשְׁמָעוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4532-mashmaut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "מִשְׁמַעַת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3820-mishmaat",
+ "gender": "feminine"
+ }
+ ],
+ "משמעויות־": [
+ {
+ "word_nikkud": "מַשְׁמָעוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4532-mashmaut",
+ "gender": "feminine"
+ }
+ ],
+ "שמועה": [
+ {
+ "word_nikkud": "שְׁמוּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3663-shmua",
+ "gender": "feminine"
+ }
+ ],
+ "שמועות": [
+ {
+ "word_nikkud": "שְׁמוּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3663-shmua",
+ "gender": "feminine"
+ }
+ ],
+ "שמועת־": [
+ {
+ "word_nikkud": "שְׁמוּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3663-shmua",
+ "gender": "feminine"
+ }
+ ],
+ "שמועות־": [
+ {
+ "word_nikkud": "שְׁמוּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3663-shmua",
+ "gender": "feminine"
+ }
+ ],
+ "משמעת": [
+ {
+ "word_nikkud": "מִשְׁמַעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3820-mishmaat",
+ "gender": "feminine"
+ }
+ ],
+ "משמעת־": [
+ {
+ "word_nikkud": "מִשְׁמַעַת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3820-mishmaat",
+ "gender": "feminine"
+ }
+ ],
+ "משמע": [
+ {
+ "word_nikkud": "מַשְׁמָע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4531-mashma",
+ "gender": "masculine"
+ }
+ ],
+ "משמעים": [
+ {
+ "word_nikkud": "מַשְׁמָע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4531-mashma",
+ "gender": "masculine"
+ }
+ ],
+ "משמע־": [
+ {
+ "word_nikkud": "מַשְׁמָע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4531-mashma",
+ "gender": "masculine"
+ }
+ ],
+ "משמעי־": [
+ {
+ "word_nikkud": "מַשְׁמָע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4531-mashma",
+ "gender": "masculine"
+ }
+ ],
+ "השמעה": [
+ {
+ "word_nikkud": "הַשְׁמָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8572-hashmaa",
+ "gender": "feminine"
+ }
+ ],
+ "השמעות": [
+ {
+ "word_nikkud": "הַשְׁמָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8572-hashmaa",
+ "gender": "feminine"
+ }
+ ],
+ "השמעת־": [
+ {
+ "word_nikkud": "הַשְׁמָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8572-hashmaa",
+ "gender": "feminine"
+ }
+ ],
+ "השמעות־": [
+ {
+ "word_nikkud": "הַשְׁמָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8572-hashmaa",
+ "gender": "feminine"
+ }
+ ],
+ "שמיעה": [
+ {
+ "word_nikkud": "שְׁמִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6346-shmia",
+ "gender": "feminine"
+ }
+ ],
+ "שמיעות": [
+ {
+ "word_nikkud": "שְׁמִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6346-shmia",
+ "gender": "feminine"
+ }
+ ],
+ "שמיעת־": [
+ {
+ "word_nikkud": "שְׁמִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6346-shmia",
+ "gender": "feminine"
+ }
+ ],
+ "שמיעות־": [
+ {
+ "word_nikkud": "שְׁמִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6346-shmia",
+ "gender": "feminine"
+ }
+ ],
+ "שמץ": [
+ {
+ "word_nikkud": "שֶׁמֶץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6895-shemetz",
+ "gender": "masculine"
+ }
+ ],
+ "שמץ־": [
+ {
+ "word_nikkud": "שֶׁמֶץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6895-shemetz",
+ "gender": "masculine"
+ }
+ ],
+ "משמרת": [
+ {
+ "word_nikkud": "מִשְׁמֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3279-mishmeret",
+ "gender": "feminine"
+ }
+ ],
+ "משמרות": [
+ {
+ "word_nikkud": "מִשְׁמֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3279-mishmeret",
+ "gender": "feminine"
+ }
+ ],
+ "משמרת־": [
+ {
+ "word_nikkud": "מִשְׁמֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3279-mishmeret",
+ "gender": "feminine"
+ }
+ ],
+ "משמרות־": [
+ {
+ "word_nikkud": "מִשְׁמֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3279-mishmeret",
+ "gender": "feminine"
+ }
+ ],
+ "משמר": [
+ {
+ "word_nikkud": "מִשְׁמָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3674-mishmar",
+ "gender": "masculine"
+ }
+ ],
+ "משמרים": [
+ {
+ "word_nikkud": "מִשְׁמָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3674-mishmar",
+ "gender": "masculine"
+ }
+ ],
+ "משמר־": [
+ {
+ "word_nikkud": "מִשְׁמָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3674-mishmar",
+ "gender": "masculine"
+ }
+ ],
+ "משמרי־": [
+ {
+ "word_nikkud": "מִשְׁמָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3674-mishmar",
+ "gender": "masculine"
+ }
+ ],
+ "שמירה": [
+ {
+ "word_nikkud": "שְׁמִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5360-shmira",
+ "gender": "feminine"
+ }
+ ],
+ "שמירות": [
+ {
+ "word_nikkud": "שְׁמִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5360-shmira",
+ "gender": "feminine"
+ }
+ ],
+ "שמירת־": [
+ {
+ "word_nikkud": "שְׁמִירָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5360-shmira",
+ "gender": "feminine"
+ }
+ ],
+ "שמירות־": [
+ {
+ "word_nikkud": "שְׁמִירָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5360-shmira",
+ "gender": "feminine"
+ }
+ ],
+ "שמרן": [
+ {
+ "word_nikkud": "שַׁמְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7439-shamran",
+ "gender": "masculine"
+ }
+ ],
+ "שמרנים": [
+ {
+ "word_nikkud": "שַׁמְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7439-shamran",
+ "gender": "masculine"
+ }
+ ],
+ "שמרן־": [
+ {
+ "word_nikkud": "שַׁמְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7439-shamran",
+ "gender": "masculine"
+ }
+ ],
+ "שמרני־": [
+ {
+ "word_nikkud": "שַׁמְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7439-shamran",
+ "gender": "masculine"
+ }
+ ],
+ "שומרים": [
+ {
+ "word_nikkud": "שׁוֹמֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8695-shomer",
+ "gender": "masculine"
+ }
+ ],
+ "שומרי־": [
+ {
+ "word_nikkud": "שׁוֹמֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8695-shomer",
+ "gender": "masculine"
+ }
+ ],
+ "שמיר": [
+ {
+ "word_nikkud": "שָׁמִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8400-shamir",
+ "gender": "masculine"
+ }
+ ],
+ "שמיר־": [
+ {
+ "word_nikkud": "שָׁמִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8400-shamir",
+ "gender": "masculine"
+ }
+ ],
+ "שימור": [
+ {
+ "word_nikkud": "שִׁמּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4914-shimur",
+ "gender": "masculine"
+ }
+ ],
+ "שימורים": [
+ {
+ "word_nikkud": "שִׁמּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4914-shimur",
+ "gender": "masculine"
+ }
+ ],
+ "שימור־": [
+ {
+ "word_nikkud": "שִׁמּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4914-shimur",
+ "gender": "masculine"
+ }
+ ],
+ "שימורי־": [
+ {
+ "word_nikkud": "שִׁמּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4914-shimur",
+ "gender": "masculine"
+ }
+ ],
+ "שמרים": [
+ {
+ "word_nikkud": "שְׁמָרִים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6451-shmarim",
+ "gender": "masculine"
+ }
+ ],
+ "שמרי־": [
+ {
+ "word_nikkud": "שְׁמָרִים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6451-shmarim",
+ "gender": "masculine"
+ }
+ ],
+ "שמשייה": [
+ {
+ "word_nikkud": "שִׁמְשִׁיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6367-shimshiya",
+ "gender": "masculine"
+ }
+ ],
+ "שמשיות": [
+ {
+ "word_nikkud": "שִׁמְשִׁיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6367-shimshiya",
+ "gender": "masculine"
+ }
+ ],
+ "שמשיית־": [
+ {
+ "word_nikkud": "שִׁמְשִׁיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6367-shimshiya",
+ "gender": "masculine"
+ }
+ ],
+ "שמשיות־": [
+ {
+ "word_nikkud": "שִׁמְשִׁיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6367-shimshiya",
+ "gender": "masculine"
+ }
+ ],
+ "שמש": [
+ {
+ "word_nikkud": "שֶׁמֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6070-shemesh",
+ "gender": "feminine"
+ }
+ ],
+ "שמשות": [
+ {
+ "word_nikkud": "שֶׁמֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6070-shemesh",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שִׁמְשָׁה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9180-shimsha",
+ "gender": "feminine"
+ }
+ ],
+ "שמש־": [
+ {
+ "word_nikkud": "שֶׁמֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6070-shemesh",
+ "gender": "feminine"
+ }
+ ],
+ "שמשות־": [
+ {
+ "word_nikkud": "שֶׁמֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6070-shemesh",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שִׁמְשָׁה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9180-shimsha",
+ "gender": "feminine"
+ }
+ ],
+ "שימוש": [
+ {
+ "word_nikkud": "שִׁמּוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5012-shimush",
+ "gender": "masculine"
+ }
+ ],
+ "שימושים": [
+ {
+ "word_nikkud": "שִׁמּוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5012-shimush",
+ "gender": "masculine"
+ }
+ ],
+ "שימוש־": [
+ {
+ "word_nikkud": "שִׁמּוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5012-shimush",
+ "gender": "masculine"
+ }
+ ],
+ "שימושי־": [
+ {
+ "word_nikkud": "שִׁמּוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5012-shimush",
+ "gender": "masculine"
+ }
+ ],
+ "תשמיש": [
+ {
+ "word_nikkud": "תַּשְׁמִישׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5118-tashmish",
+ "gender": "masculine"
+ }
+ ],
+ "תשמישים": [
+ {
+ "word_nikkud": "תַּשְׁמִישׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5118-tashmish",
+ "gender": "masculine"
+ }
+ ],
+ "תשמיש־": [
+ {
+ "word_nikkud": "תַּשְׁמִישׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5118-tashmish",
+ "gender": "masculine"
+ }
+ ],
+ "תשמישי־": [
+ {
+ "word_nikkud": "תַּשְׁמִישׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5118-tashmish",
+ "gender": "masculine"
+ }
+ ],
+ "משתמש": [
+ {
+ "word_nikkud": "מִשְׁתַּמֵּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7918-mishtamesh",
+ "gender": "masculine"
+ }
+ ],
+ "משתמשים": [
+ {
+ "word_nikkud": "מִשְׁתַּמֵּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7918-mishtamesh",
+ "gender": "masculine"
+ }
+ ],
+ "משתמש־": [
+ {
+ "word_nikkud": "מִשְׁתַּמֵּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7918-mishtamesh",
+ "gender": "masculine"
+ }
+ ],
+ "משתמשי־": [
+ {
+ "word_nikkud": "מִשְׁתַּמֵּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7918-mishtamesh",
+ "gender": "masculine"
+ }
+ ],
+ "שמשה": [
+ {
+ "word_nikkud": "שִׁמְשָׁה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9180-shimsha",
+ "gender": "feminine"
+ }
+ ],
+ "שמשת־": [
+ {
+ "word_nikkud": "שִׁמְשָׁה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9180-shimsha",
+ "gender": "feminine"
+ }
+ ],
+ "שנאה": [
+ {
+ "word_nikkud": "שִׂנְאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3226-sina",
+ "gender": "feminine"
+ }
+ ],
+ "שנאת־": [
+ {
+ "word_nikkud": "שִׂנְאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3226-sina",
+ "gender": "feminine"
+ }
+ ],
+ "שנהבת": [
+ {
+ "word_nikkud": "שַׁנְהֶבֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4736-shanhevet",
+ "gender": "feminine"
+ }
+ ],
+ "שנהבת־": [
+ {
+ "word_nikkud": "שַׁנְהֶבֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4736-shanhevet",
+ "gender": "feminine"
+ }
+ ],
+ "שנהב": [
+ {
+ "word_nikkud": "שֶׁנְהָב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4734-shenhav",
+ "gender": ""
+ }
+ ],
+ "שנהבים": [
+ {
+ "word_nikkud": "שֶׁנְהָב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4734-shenhav",
+ "gender": ""
+ }
+ ],
+ "שנהב־": [
+ {
+ "word_nikkud": "שֶׁנְהָב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4734-shenhav",
+ "gender": ""
+ }
+ ],
+ "שנהבי־": [
+ {
+ "word_nikkud": "שֶׁנְהָב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4734-shenhav",
+ "gender": ""
+ }
+ ],
+ "תשנית": [
+ {
+ "word_nikkud": "תַּשְׁנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5917-tashnit",
+ "gender": "feminine"
+ }
+ ],
+ "תשניות": [
+ {
+ "word_nikkud": "תַּשְׁנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5917-tashnit",
+ "gender": "feminine"
+ }
+ ],
+ "תשנית־": [
+ {
+ "word_nikkud": "תַּשְׁנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5917-tashnit",
+ "gender": "feminine"
+ }
+ ],
+ "תשניות־": [
+ {
+ "word_nikkud": "תַּשְׁנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5917-tashnit",
+ "gender": "feminine"
+ }
+ ],
+ "השתנות": [
+ {
+ "word_nikkud": "הִשְׁתַּנּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8354-hishtanut",
+ "gender": "feminine"
+ }
+ ],
+ "השתנויות": [
+ {
+ "word_nikkud": "הִשְׁתַּנּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8354-hishtanut",
+ "gender": "feminine"
+ }
+ ],
+ "השתנות־": [
+ {
+ "word_nikkud": "הִשְׁתַּנּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8354-hishtanut",
+ "gender": "feminine"
+ }
+ ],
+ "השתנויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּנּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8354-hishtanut",
+ "gender": "feminine"
+ }
+ ],
+ "שני": [
+ {
+ "word_nikkud": "שָׁנִי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6819-shani",
+ "gender": ""
+ }
+ ],
+ "שני־": [
+ {
+ "word_nikkud": "שָׁנִי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6819-shani",
+ "gender": ""
+ }
+ ],
+ "משנה": [
+ {
+ "word_nikkud": "מִשְׁנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7427-mishna",
+ "gender": "feminine"
+ }
+ ],
+ "משניות": [
+ {
+ "word_nikkud": "מִשְׁנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7427-mishna",
+ "gender": "feminine"
+ }
+ ],
+ "משנת־": [
+ {
+ "word_nikkud": "מִשְׁנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7427-mishna",
+ "gender": "feminine"
+ }
+ ],
+ "משנות־": [
+ {
+ "word_nikkud": "מִשְׁנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7427-mishna",
+ "gender": "feminine"
+ }
+ ],
+ "שינוי": [
+ {
+ "word_nikkud": "שִׁנּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6001-shinuy",
+ "gender": "masculine"
+ }
+ ],
+ "שינויים": [
+ {
+ "word_nikkud": "שִׁנּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6001-shinuy",
+ "gender": "masculine"
+ }
+ ],
+ "שינוי־": [
+ {
+ "word_nikkud": "שִׁנּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6001-shinuy",
+ "gender": "masculine"
+ }
+ ],
+ "שינויי־": [
+ {
+ "word_nikkud": "שִׁנּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6001-shinuy",
+ "gender": "masculine"
+ }
+ ],
+ "שנייה": [
+ {
+ "word_nikkud": "שְׁנִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8864-shniya",
+ "gender": "feminine"
+ }
+ ],
+ "שניות": [
+ {
+ "word_nikkud": "שְׁנִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8864-shniya",
+ "gender": "feminine"
+ }
+ ],
+ "שניית־": [
+ {
+ "word_nikkud": "שְׁנִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8864-shniya",
+ "gender": "feminine"
+ }
+ ],
+ "שניות־": [
+ {
+ "word_nikkud": "שְׁנִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8864-shniya",
+ "gender": "feminine"
+ }
+ ],
+ "שניצל": [
+ {
+ "word_nikkud": "שְׁנִיצֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7258-shnitzel",
+ "gender": "masculine"
+ }
+ ],
+ "שניצלים": [
+ {
+ "word_nikkud": "שְׁנִיצֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7258-shnitzel",
+ "gender": "masculine"
+ }
+ ],
+ "שנינות": [
+ {
+ "word_nikkud": "שְׁנִינוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8189-shninut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שְׁנִינָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8188-shnina",
+ "gender": "feminine"
+ }
+ ],
+ "שנינויות": [
+ {
+ "word_nikkud": "שְׁנִינוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8189-shninut",
+ "gender": "feminine"
+ }
+ ],
+ "שנינות־": [
+ {
+ "word_nikkud": "שְׁנִינוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8189-shninut",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שְׁנִינָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8188-shnina",
+ "gender": "feminine"
+ }
+ ],
+ "שנינויות־": [
+ {
+ "word_nikkud": "שְׁנִינוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8189-shninut",
+ "gender": "feminine"
+ }
+ ],
+ "שן": [
+ {
+ "word_nikkud": "שֵׁן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5719-shen",
+ "gender": "feminine"
+ }
+ ],
+ "שיניים": [
+ {
+ "word_nikkud": "שֵׁן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5719-shen",
+ "gender": "feminine"
+ }
+ ],
+ "שן־": [
+ {
+ "word_nikkud": "שֵׁן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5719-shen",
+ "gender": "feminine"
+ }
+ ],
+ "שיני־": [
+ {
+ "word_nikkud": "שֵׁן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5719-shen",
+ "gender": "feminine"
+ }
+ ],
+ "שנינה": [
+ {
+ "word_nikkud": "שְׁנִינָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8188-shnina",
+ "gender": "feminine"
+ }
+ ],
+ "שנינת־": [
+ {
+ "word_nikkud": "שְׁנִינָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8188-shnina",
+ "gender": "feminine"
+ }
+ ],
+ "שינון": [
+ {
+ "word_nikkud": "שִׁנּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8974-shinun",
+ "gender": "masculine"
+ }
+ ],
+ "שינונים": [
+ {
+ "word_nikkud": "שִׁנּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8974-shinun",
+ "gender": "masculine"
+ }
+ ],
+ "שינון־": [
+ {
+ "word_nikkud": "שִׁנּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8974-shinun",
+ "gender": "masculine"
+ }
+ ],
+ "שינוני־": [
+ {
+ "word_nikkud": "שִׁנּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8974-shinun",
+ "gender": "masculine"
+ }
+ ],
+ "השתעבדות": [
+ {
+ "word_nikkud": "הִשְׁתַּעְבְּדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5834-hishtaabdut",
+ "gender": "feminine"
+ }
+ ],
+ "השתעבדויות": [
+ {
+ "word_nikkud": "הִשְׁתַּעְבְּדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5834-hishtaabdut",
+ "gender": "feminine"
+ }
+ ],
+ "השתעבדות־": [
+ {
+ "word_nikkud": "הִשְׁתַּעְבְּדוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5834-hishtaabdut",
+ "gender": "feminine"
+ }
+ ],
+ "השתעבדויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּעְבְּדוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5834-hishtaabdut",
+ "gender": "feminine"
+ }
+ ],
+ "שעבוד": [
+ {
+ "word_nikkud": "שִׁעְבּוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3143-shiabud",
+ "gender": "masculine"
+ }
+ ],
+ "שעבודים": [
+ {
+ "word_nikkud": "שִׁעְבּוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3143-shiabud",
+ "gender": "masculine"
+ }
+ ],
+ "שעבוד־": [
+ {
+ "word_nikkud": "שִׁעְבּוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3143-shiabud",
+ "gender": "masculine"
+ }
+ ],
+ "שעבודי־": [
+ {
+ "word_nikkud": "שִׁעְבּוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3143-shiabud",
+ "gender": "masculine"
+ }
+ ],
+ "שעווה": [
+ {
+ "word_nikkud": "שַׁעֲוָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7216-shaava",
+ "gender": "feminine"
+ }
+ ],
+ "שעוות־": [
+ {
+ "word_nikkud": "שַׁעֲוָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7216-shaava",
+ "gender": "feminine"
+ }
+ ],
+ "שעון עצר": [
+ {
+ "word_nikkud": "שְׁעוֹן עֶצֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8058-sheon-etzer",
+ "gender": ""
+ }
+ ],
+ "שעוני עצר": [
+ {
+ "word_nikkud": "שְׁעוֹן עֶצֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8058-sheon-etzer",
+ "gender": ""
+ }
+ ],
+ "השעיה": [
+ {
+ "word_nikkud": "הַשְׁעָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7143-hashaya",
+ "gender": "feminine"
+ }
+ ],
+ "השעיות": [
+ {
+ "word_nikkud": "הַשְׁעָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7143-hashaya",
+ "gender": "feminine"
+ }
+ ],
+ "השעיית־": [
+ {
+ "word_nikkud": "הַשְׁעָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7143-hashaya",
+ "gender": "feminine"
+ }
+ ],
+ "השעיות־": [
+ {
+ "word_nikkud": "הַשְׁעָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7143-hashaya",
+ "gender": "feminine"
+ }
+ ],
+ "שעון": [
+ {
+ "word_nikkud": "שָׁעוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3783-shaon",
+ "gender": "masculine"
+ }
+ ],
+ "שעונים": [
+ {
+ "word_nikkud": "שָׁעוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3783-shaon",
+ "gender": "masculine"
+ }
+ ],
+ "שעון־": [
+ {
+ "word_nikkud": "שָׁעוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3783-shaon",
+ "gender": "masculine"
+ }
+ ],
+ "שעוני־": [
+ {
+ "word_nikkud": "שָׁעוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3783-shaon",
+ "gender": "masculine"
+ }
+ ],
+ "שעה": [
+ {
+ "word_nikkud": "שָׁעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4139-shaa",
+ "gender": "feminine"
+ }
+ ],
+ "שעות": [
+ {
+ "word_nikkud": "שָׁעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4139-shaa",
+ "gender": "feminine"
+ }
+ ],
+ "שעת־": [
+ {
+ "word_nikkud": "שָׁעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4139-shaa",
+ "gender": "feminine"
+ }
+ ],
+ "שעות־": [
+ {
+ "word_nikkud": "שָׁעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4139-shaa",
+ "gender": "feminine"
+ }
+ ],
+ "שעתיים": [
+ {
+ "word_nikkud": "שְׁעָתַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8203-sheatayim",
+ "gender": "masculine"
+ }
+ ],
+ "שיעול": [
+ {
+ "word_nikkud": "שִׁעוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8063-shiul",
+ "gender": "masculine"
+ }
+ ],
+ "שיעולים": [
+ {
+ "word_nikkud": "שִׁעוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8063-shiul",
+ "gender": "masculine"
+ }
+ ],
+ "שיעול־": [
+ {
+ "word_nikkud": "שִׁעוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8063-shiul",
+ "gender": "masculine"
+ }
+ ],
+ "שיעולי־": [
+ {
+ "word_nikkud": "שִׁעוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8063-shiul",
+ "gender": "masculine"
+ }
+ ],
+ "משעול": [
+ {
+ "word_nikkud": "מִשְׁעוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3634-mishol",
+ "gender": "masculine"
+ }
+ ],
+ "משעולים": [
+ {
+ "word_nikkud": "מִשְׁעוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3634-mishol",
+ "gender": "masculine"
+ }
+ ],
+ "משעול־": [
+ {
+ "word_nikkud": "מִשְׁעוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3634-mishol",
+ "gender": "masculine"
+ }
+ ],
+ "משעולי־": [
+ {
+ "word_nikkud": "מִשְׁעוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3634-mishol",
+ "gender": "masculine"
+ }
+ ],
+ "שעמום": [
+ {
+ "word_nikkud": "שִׁעְמוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8899-shiamum",
+ "gender": "masculine"
+ }
+ ],
+ "שעמומים": [
+ {
+ "word_nikkud": "שִׁעְמוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8899-shiamum",
+ "gender": "masculine"
+ }
+ ],
+ "שעמום־": [
+ {
+ "word_nikkud": "שִׁעְמוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8899-shiamum",
+ "gender": "masculine"
+ }
+ ],
+ "שעמומי־": [
+ {
+ "word_nikkud": "שִׁעְמוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8899-shiamum",
+ "gender": "masculine"
+ }
+ ],
+ "משענת": [
+ {
+ "word_nikkud": "מִשְׁעֶנֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8140-mishenet",
+ "gender": "feminine"
+ }
+ ],
+ "משענות": [
+ {
+ "word_nikkud": "מִשְׁעֶנֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8140-mishenet",
+ "gender": "feminine"
+ }
+ ],
+ "משענת־": [
+ {
+ "word_nikkud": "מִשְׁעֶנֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8140-mishenet",
+ "gender": "feminine"
+ }
+ ],
+ "משענות־": [
+ {
+ "word_nikkud": "מִשְׁעֶנֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8140-mishenet",
+ "gender": "feminine"
+ }
+ ],
+ "הישענות": [
+ {
+ "word_nikkud": "הִשָּׁעֲנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8199-hishaanut",
+ "gender": "feminine"
+ }
+ ],
+ "הישענות־": [
+ {
+ "word_nikkud": "הִשָּׁעֲנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8199-hishaanut",
+ "gender": "feminine"
+ }
+ ],
+ "שעועית": [
+ {
+ "word_nikkud": "שְׁעוּעִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9048-sheuit",
+ "gender": ""
+ }
+ ],
+ "שעועיות": [
+ {
+ "word_nikkud": "שְׁעוּעִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9048-sheuit",
+ "gender": ""
+ }
+ ],
+ "שעועית־": [
+ {
+ "word_nikkud": "שְׁעוּעִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9048-sheuit",
+ "gender": ""
+ }
+ ],
+ "שעועיות־": [
+ {
+ "word_nikkud": "שְׁעוּעִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9048-sheuit",
+ "gender": ""
+ }
+ ],
+ "שיעור": [
+ {
+ "word_nikkud": "שִׁעוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6100-shiur",
+ "gender": "masculine"
+ }
+ ],
+ "שיעורים": [
+ {
+ "word_nikkud": "שִׁעוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6100-shiur",
+ "gender": "masculine"
+ }
+ ],
+ "שיעור־": [
+ {
+ "word_nikkud": "שִׁעוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6100-shiur",
+ "gender": "masculine"
+ }
+ ],
+ "שיעורי־": [
+ {
+ "word_nikkud": "שִׁעוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6100-shiur",
+ "gender": "masculine"
+ }
+ ],
+ "שיער": [
+ {
+ "word_nikkud": "שֵׂעָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4250-sear",
+ "gender": "masculine"
+ }
+ ],
+ "שער־": [
+ {
+ "word_nikkud": "שֵׂעָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4250-sear",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "שֵׂעָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4250-sear",
+ "gender": "masculine"
+ }
+ ],
+ "שוער": [
+ {
+ "word_nikkud": "שׁוֹעֵר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3170-shoer",
+ "gender": "masculine"
+ }
+ ],
+ "שוערים": [
+ {
+ "word_nikkud": "שׁוֹעֵר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3170-shoer",
+ "gender": "masculine"
+ }
+ ],
+ "שוער־": [
+ {
+ "word_nikkud": "שׁוֹעֵר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3170-shoer",
+ "gender": "masculine"
+ }
+ ],
+ "שוערי־": [
+ {
+ "word_nikkud": "שׁוֹעֵר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3170-shoer",
+ "gender": "masculine"
+ }
+ ],
+ "שערה": [
+ {
+ "word_nikkud": "שַׂעֲרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4251-saara",
+ "gender": "feminine"
+ }
+ ],
+ "שערות": [
+ {
+ "word_nikkud": "שַׂעֲרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4251-saara",
+ "gender": "feminine"
+ }
+ ],
+ "שערת־": [
+ {
+ "word_nikkud": "שַׂעֲרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4251-saara",
+ "gender": "feminine"
+ }
+ ],
+ "שערות־": [
+ {
+ "word_nikkud": "שַׂעֲרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4251-saara",
+ "gender": "feminine"
+ }
+ ],
+ "שעורה": [
+ {
+ "word_nikkud": "שְׂעוֹרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7521-seora",
+ "gender": "feminine"
+ }
+ ],
+ "שעורים": [
+ {
+ "word_nikkud": "שְׂעוֹרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7521-seora",
+ "gender": "feminine"
+ }
+ ],
+ "שעורת־": [
+ {
+ "word_nikkud": "שְׂעוֹרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7521-seora",
+ "gender": "feminine"
+ }
+ ],
+ "שעורי־": [
+ {
+ "word_nikkud": "שְׂעוֹרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7521-seora",
+ "gender": "feminine"
+ }
+ ],
+ "השערה": [
+ {
+ "word_nikkud": "הַשְׁעָרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8763-hashara",
+ "gender": "feminine"
+ }
+ ],
+ "השערות": [
+ {
+ "word_nikkud": "הַשְׁעָרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8763-hashara",
+ "gender": "feminine"
+ }
+ ],
+ "השערת־": [
+ {
+ "word_nikkud": "הַשְׁעָרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8763-hashara",
+ "gender": "feminine"
+ }
+ ],
+ "השערות־": [
+ {
+ "word_nikkud": "הַשְׁעָרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8763-hashara",
+ "gender": "feminine"
+ }
+ ],
+ "שעשוע": [
+ {
+ "word_nikkud": "שַׁעְשׁוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5619-shaashua",
+ "gender": "masculine"
+ }
+ ],
+ "שעשועים": [
+ {
+ "word_nikkud": "שַׁעְשׁוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5619-shaashua",
+ "gender": "masculine"
+ }
+ ],
+ "שעשוע־": [
+ {
+ "word_nikkud": "שַׁעְשׁוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5619-shaashua",
+ "gender": "masculine"
+ }
+ ],
+ "שעשועי־": [
+ {
+ "word_nikkud": "שַׁעְשׁוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5619-shaashua",
+ "gender": "masculine"
+ }
+ ],
+ "שפופרת": [
+ {
+ "word_nikkud": "שְׁפוֹפֶרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8780-shfoferet",
+ "gender": "feminine"
+ }
+ ],
+ "שפופרות": [
+ {
+ "word_nikkud": "שְׁפוֹפֶרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8780-shfoferet",
+ "gender": "feminine"
+ }
+ ],
+ "שפופרת־": [
+ {
+ "word_nikkud": "שְׁפוֹפֶרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8780-shfoferet",
+ "gender": "feminine"
+ }
+ ],
+ "שפופרות־": [
+ {
+ "word_nikkud": "שְׁפוֹפֶרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8780-shfoferet",
+ "gender": "feminine"
+ }
+ ],
+ "משפחה": [
+ {
+ "word_nikkud": "מִשְׁפָּחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4899-mishpacha",
+ "gender": "feminine"
+ }
+ ],
+ "משפחות": [
+ {
+ "word_nikkud": "מִשְׁפָּחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4899-mishpacha",
+ "gender": "feminine"
+ }
+ ],
+ "משפחת־": [
+ {
+ "word_nikkud": "מִשְׁפָּחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4899-mishpacha",
+ "gender": "feminine"
+ }
+ ],
+ "משפחות־": [
+ {
+ "word_nikkud": "מִשְׁפָּחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4899-mishpacha",
+ "gender": "feminine"
+ }
+ ],
+ "שפחה": [
+ {
+ "word_nikkud": "שִׁפְחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6878-shifcha",
+ "gender": "feminine"
+ }
+ ],
+ "שפחות": [
+ {
+ "word_nikkud": "שִׁפְחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6878-shifcha",
+ "gender": "feminine"
+ }
+ ],
+ "שפחת־": [
+ {
+ "word_nikkud": "שִׁפְחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6878-shifcha",
+ "gender": "feminine"
+ }
+ ],
+ "שפחות־": [
+ {
+ "word_nikkud": "שִׁפְחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6878-shifcha",
+ "gender": "feminine"
+ }
+ ],
+ "שיפוט": [
+ {
+ "word_nikkud": "שִׁפּוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5455-shiput",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוטים": [
+ {
+ "word_nikkud": "שִׁפּוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5455-shiput",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוט־": [
+ {
+ "word_nikkud": "שִׁפּוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5455-shiput",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוטי־": [
+ {
+ "word_nikkud": "שִׁפּוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5455-shiput",
+ "gender": "masculine"
+ }
+ ],
+ "משפט": [
+ {
+ "word_nikkud": "מִשְׁפָּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2644-mishpat",
+ "gender": "masculine"
+ }
+ ],
+ "משפטים": [
+ {
+ "word_nikkud": "מִשְׁפָּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2644-mishpat",
+ "gender": "masculine"
+ }
+ ],
+ "משפט־": [
+ {
+ "word_nikkud": "מִשְׁפָּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2644-mishpat",
+ "gender": "masculine"
+ }
+ ],
+ "משפטי־": [
+ {
+ "word_nikkud": "מִשְׁפָּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2644-mishpat",
+ "gender": "masculine"
+ }
+ ],
+ "שופט": [
+ {
+ "word_nikkud": "שׁוֹפֵט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7393-shofet",
+ "gender": "masculine"
+ }
+ ],
+ "שופטים": [
+ {
+ "word_nikkud": "שׁוֹפֵט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7393-shofet",
+ "gender": "masculine"
+ }
+ ],
+ "שופט־": [
+ {
+ "word_nikkud": "שׁוֹפֵט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7393-shofet",
+ "gender": "masculine"
+ }
+ ],
+ "שופטי־": [
+ {
+ "word_nikkud": "שׁוֹפֵט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7393-shofet",
+ "gender": "masculine"
+ }
+ ],
+ "שפה": [
+ {
+ "word_nikkud": "שָׂפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5171-safa",
+ "gender": "feminine"
+ }
+ ],
+ "שפתיים": [
+ {
+ "word_nikkud": "שָׂפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5171-safa",
+ "gender": "feminine"
+ }
+ ],
+ "שפת־": [
+ {
+ "word_nikkud": "שָׂפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5171-safa",
+ "gender": "feminine"
+ }
+ ],
+ "שפתי־": [
+ {
+ "word_nikkud": "שָׂפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5171-safa",
+ "gender": "feminine"
+ }
+ ],
+ "שפתון": [
+ {
+ "word_nikkud": "שְׂפָתוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8159-sfaton",
+ "gender": "masculine"
+ }
+ ],
+ "שפתונים": [
+ {
+ "word_nikkud": "שְׂפָתוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8159-sfaton",
+ "gender": "masculine"
+ }
+ ],
+ "שפתון־": [
+ {
+ "word_nikkud": "שְׂפָתוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8159-sfaton",
+ "gender": "masculine"
+ }
+ ],
+ "שפתוני־": [
+ {
+ "word_nikkud": "שְׂפָתוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8159-sfaton",
+ "gender": "masculine"
+ }
+ ],
+ "שפיות": [
+ {
+ "word_nikkud": "שְׁפִיּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8504-shfiyut",
+ "gender": "feminine"
+ }
+ ],
+ "שפיות־": [
+ {
+ "word_nikkud": "שְׁפִיּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8504-shfiyut",
+ "gender": "feminine"
+ }
+ ],
+ "משפך": [
+ {
+ "word_nikkud": "מַשְׁפֵּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7294-mashpech",
+ "gender": "masculine"
+ }
+ ],
+ "משפכים": [
+ {
+ "word_nikkud": "מַשְׁפֵּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7294-mashpech",
+ "gender": "masculine"
+ }
+ ],
+ "משפך־": [
+ {
+ "word_nikkud": "מַשְׁפֵּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7294-mashpech",
+ "gender": "masculine"
+ }
+ ],
+ "משפכי־": [
+ {
+ "word_nikkud": "מַשְׁפֵּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7294-mashpech",
+ "gender": "masculine"
+ }
+ ],
+ "השפלה": [
+ {
+ "word_nikkud": "הַשְׁפָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3069-hashpala",
+ "gender": "feminine"
+ }
+ ],
+ "השפלות": [
+ {
+ "word_nikkud": "הַשְׁפָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3069-hashpala",
+ "gender": "feminine"
+ }
+ ],
+ "השפלת־": [
+ {
+ "word_nikkud": "הַשְׁפָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3069-hashpala",
+ "gender": "feminine"
+ }
+ ],
+ "השפלות־": [
+ {
+ "word_nikkud": "הַשְׁפָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3069-hashpala",
+ "gender": "feminine"
+ }
+ ],
+ "שפל": [
+ {
+ "word_nikkud": "שֵׁפֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7398-shefel",
+ "gender": "masculine"
+ }
+ ],
+ "שפלים": [
+ {
+ "word_nikkud": "שֵׁפֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7398-shefel",
+ "gender": "masculine"
+ }
+ ],
+ "שפל־": [
+ {
+ "word_nikkud": "שֵׁפֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7398-shefel",
+ "gender": "masculine"
+ }
+ ],
+ "שפלי־": [
+ {
+ "word_nikkud": "שֵׁפֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7398-shefel",
+ "gender": "masculine"
+ }
+ ],
+ "שפם": [
+ {
+ "word_nikkud": "שָׂפָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4413-safam",
+ "gender": "masculine"
+ }
+ ],
+ "שפמים": [
+ {
+ "word_nikkud": "שָׂפָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4413-safam",
+ "gender": "masculine"
+ }
+ ],
+ "שפמות": [
+ {
+ "word_nikkud": "שָׂפָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4413-safam",
+ "gender": "masculine"
+ }
+ ],
+ "שפם־": [
+ {
+ "word_nikkud": "שָׂפָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4413-safam",
+ "gender": "masculine"
+ }
+ ],
+ "שפמי־": [
+ {
+ "word_nikkud": "שָׂפָם",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4413-safam",
+ "gender": "masculine"
+ }
+ ],
+ "שפמות־": [
+ {
+ "word_nikkud": "שָׂפָם",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4413-safam",
+ "gender": "masculine"
+ }
+ ],
+ "שפן": [
+ {
+ "word_nikkud": "שָׁפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3993-shafan",
+ "gender": "masculine"
+ }
+ ],
+ "שפנים": [
+ {
+ "word_nikkud": "שָׁפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3993-shafan",
+ "gender": "masculine"
+ }
+ ],
+ "שפן־": [
+ {
+ "word_nikkud": "שָׁפָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3993-shafan",
+ "gender": "masculine"
+ }
+ ],
+ "שפני־": [
+ {
+ "word_nikkud": "שָׁפָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3993-shafan",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוע": [
+ {
+ "word_nikkud": "שִׁפּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3697-shipua",
+ "gender": "masculine"
+ }
+ ],
+ "שיפועים": [
+ {
+ "word_nikkud": "שִׁפּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3697-shipua",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוע־": [
+ {
+ "word_nikkud": "שִׁפּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3697-shipua",
+ "gender": "masculine"
+ }
+ ],
+ "שיפועי־": [
+ {
+ "word_nikkud": "שִׁפּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3697-shipua",
+ "gender": "masculine"
+ }
+ ],
+ "השפעה": [
+ {
+ "word_nikkud": "הַשְׁפָּעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2919-hashpaa",
+ "gender": "feminine"
+ }
+ ],
+ "השפעות": [
+ {
+ "word_nikkud": "הַשְׁפָּעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2919-hashpaa",
+ "gender": "feminine"
+ }
+ ],
+ "השפעת־": [
+ {
+ "word_nikkud": "הַשְׁפָּעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2919-hashpaa",
+ "gender": "feminine"
+ }
+ ],
+ "השפעות־": [
+ {
+ "word_nikkud": "הַשְׁפָּעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2919-hashpaa",
+ "gender": "feminine"
+ }
+ ],
+ "שפע": [
+ {
+ "word_nikkud": "שֶׁפַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3693-shefa",
+ "gender": "masculine"
+ }
+ ],
+ "שפעים": [
+ {
+ "word_nikkud": "שֶׁפַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3693-shefa",
+ "gender": "masculine"
+ }
+ ],
+ "שפע־": [
+ {
+ "word_nikkud": "שֶׁפַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3693-shefa",
+ "gender": "masculine"
+ }
+ ],
+ "שפעי־": [
+ {
+ "word_nikkud": "שֶׁפַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3693-shefa",
+ "gender": "masculine"
+ }
+ ],
+ "שפעה": [
+ {
+ "word_nikkud": "שִׁפְעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3694-shifa",
+ "gender": "feminine"
+ }
+ ],
+ "שפעת־": [
+ {
+ "word_nikkud": "שִׁפְעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3694-shifa",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "שַׁפַּעַת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3695-shapaat",
+ "gender": "feminine"
+ }
+ ],
+ "שפעת": [
+ {
+ "word_nikkud": "שַׁפַּעַת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3695-shapaat",
+ "gender": "feminine"
+ }
+ ],
+ "שפיפה": [
+ {
+ "word_nikkud": "שְׁפִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7442-shfifa",
+ "gender": "feminine"
+ }
+ ],
+ "שפיפות": [
+ {
+ "word_nikkud": "שְׁפִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7442-shfifa",
+ "gender": "feminine"
+ }
+ ],
+ "שפיפת־": [
+ {
+ "word_nikkud": "שְׁפִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7442-shfifa",
+ "gender": "feminine"
+ }
+ ],
+ "שפיפות־": [
+ {
+ "word_nikkud": "שְׁפִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7442-shfifa",
+ "gender": "feminine"
+ }
+ ],
+ "שיפוץ": [
+ {
+ "word_nikkud": "שִׁפּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5788-shiputz",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוצים": [
+ {
+ "word_nikkud": "שִׁפּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5788-shiputz",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוץ־": [
+ {
+ "word_nikkud": "שִׁפּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5788-shiputz",
+ "gender": "masculine"
+ }
+ ],
+ "שיפוצי־": [
+ {
+ "word_nikkud": "שִׁפּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5788-shiputz",
+ "gender": "masculine"
+ }
+ ],
+ "שיפור": [
+ {
+ "word_nikkud": "שִׁפּוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5250-shipur",
+ "gender": "masculine"
+ }
+ ],
+ "שיפורים": [
+ {
+ "word_nikkud": "שִׁפּוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5250-shipur",
+ "gender": "masculine"
+ }
+ ],
+ "שיפור־": [
+ {
+ "word_nikkud": "שִׁפּוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5250-shipur",
+ "gender": "masculine"
+ }
+ ],
+ "שיפורי־": [
+ {
+ "word_nikkud": "שִׁפּוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5250-shipur",
+ "gender": "masculine"
+ }
+ ],
+ "שפירית": [
+ {
+ "word_nikkud": "שַׁפִּירִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9112-shapirit",
+ "gender": "feminine"
+ }
+ ],
+ "שפיריות": [
+ {
+ "word_nikkud": "שַׁפִּירִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9112-shapirit",
+ "gender": "feminine"
+ }
+ ],
+ "שפירית־": [
+ {
+ "word_nikkud": "שַׁפִּירִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9112-shapirit",
+ "gender": "feminine"
+ }
+ ],
+ "שפיריות־": [
+ {
+ "word_nikkud": "שַׁפִּירִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9112-shapirit",
+ "gender": "feminine"
+ }
+ ],
+ "שפשוף": [
+ {
+ "word_nikkud": "שִׁפְשׁוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6677-shifshuf",
+ "gender": "masculine"
+ }
+ ],
+ "שפשופים": [
+ {
+ "word_nikkud": "שִׁפְשׁוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6677-shifshuf",
+ "gender": "masculine"
+ }
+ ],
+ "שפשוף־": [
+ {
+ "word_nikkud": "שִׁפְשׁוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6677-shifshuf",
+ "gender": "masculine"
+ }
+ ],
+ "שפשופי־": [
+ {
+ "word_nikkud": "שִׁפְשׁוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6677-shifshuf",
+ "gender": "masculine"
+ }
+ ],
+ "שק": [
+ {
+ "word_nikkud": "שַׂק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4759-sak",
+ "gender": "masculine"
+ }
+ ],
+ "שקים": [
+ {
+ "word_nikkud": "שַׂק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4759-sak",
+ "gender": "masculine"
+ }
+ ],
+ "שק־": [
+ {
+ "word_nikkud": "שַׂק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4759-sak",
+ "gender": "masculine"
+ }
+ ],
+ "שקי־": [
+ {
+ "word_nikkud": "שַׂק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4759-sak",
+ "gender": "masculine"
+ }
+ ],
+ "שקידה": [
+ {
+ "word_nikkud": "שְׁקִידָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8413-shkida",
+ "gender": "feminine"
+ }
+ ],
+ "שקידת־": [
+ {
+ "word_nikkud": "שְׁקִידָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8413-shkida",
+ "gender": "feminine"
+ }
+ ],
+ "שקד": [
+ {
+ "word_nikkud": "שָׁקֵד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7215-shaked",
+ "gender": "masculine"
+ }
+ ],
+ "שקדים": [
+ {
+ "word_nikkud": "שָׁקֵד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7215-shaked",
+ "gender": "masculine"
+ }
+ ],
+ "שקד־": [
+ {
+ "word_nikkud": "שָׁקֵד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7215-shaked",
+ "gender": "masculine"
+ }
+ ],
+ "שקדי־": [
+ {
+ "word_nikkud": "שָׁקֵד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7215-shaked",
+ "gender": "masculine"
+ }
+ ],
+ "שקט": [
+ {
+ "word_nikkud": "שֶׁקֶט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3187-sheket",
+ "gender": "masculine"
+ }
+ ],
+ "שקט־": [
+ {
+ "word_nikkud": "שֶׁקֶט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3187-sheket",
+ "gender": "masculine"
+ }
+ ],
+ "שיקוי": [
+ {
+ "word_nikkud": "שִׁקּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7201-shikuy",
+ "gender": "masculine"
+ }
+ ],
+ "שיקויים": [
+ {
+ "word_nikkud": "שִׁקּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7201-shikuy",
+ "gender": "masculine"
+ }
+ ],
+ "שיקוי־": [
+ {
+ "word_nikkud": "שִׁקּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7201-shikuy",
+ "gender": "masculine"
+ }
+ ],
+ "שיקויי־": [
+ {
+ "word_nikkud": "שִׁקּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7201-shikuy",
+ "gender": "masculine"
+ }
+ ],
+ "השקיה": [
+ {
+ "word_nikkud": "הַשְׁקָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2920-hashkaya",
+ "gender": "feminine"
+ }
+ ],
+ "השקיית־": [
+ {
+ "word_nikkud": "הַשְׁקָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2920-hashkaya",
+ "gender": "feminine"
+ }
+ ],
+ "משקה": [
+ {
+ "word_nikkud": "מַשְׁקֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3833-mashke",
+ "gender": "masculine"
+ }
+ ],
+ "משקאות": [
+ {
+ "word_nikkud": "מַשְׁקֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3833-mashke",
+ "gender": "masculine"
+ }
+ ],
+ "משקה־": [
+ {
+ "word_nikkud": "מַשְׁקֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3833-mashke",
+ "gender": "masculine"
+ }
+ ],
+ "משקות־": [
+ {
+ "word_nikkud": "מַשְׁקֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3833-mashke",
+ "gender": "masculine"
+ }
+ ],
+ "שקית": [
+ {
+ "word_nikkud": "שַׂקִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4761-sakit",
+ "gender": "feminine"
+ }
+ ],
+ "שקיות": [
+ {
+ "word_nikkud": "שַׂקִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4761-sakit",
+ "gender": "feminine"
+ }
+ ],
+ "שקית־": [
+ {
+ "word_nikkud": "שַׂקִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4761-sakit",
+ "gender": "feminine"
+ }
+ ],
+ "שקיות־": [
+ {
+ "word_nikkud": "שַׂקִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4761-sakit",
+ "gender": "feminine"
+ }
+ ],
+ "משקולת": [
+ {
+ "word_nikkud": "מִשְׁקֹלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7341-mishkolet",
+ "gender": "feminine"
+ }
+ ],
+ "משקולות": [
+ {
+ "word_nikkud": "מִשְׁקֹלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7341-mishkolet",
+ "gender": "feminine"
+ }
+ ],
+ "משקולת־": [
+ {
+ "word_nikkud": "מִשְׁקֹלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7341-mishkolet",
+ "gender": "feminine"
+ }
+ ],
+ "משקולות־": [
+ {
+ "word_nikkud": "מִשְׁקֹלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7341-mishkolet",
+ "gender": "feminine"
+ }
+ ],
+ "שיקול": [
+ {
+ "word_nikkud": "שִׁקּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4326-shikul",
+ "gender": "masculine"
+ }
+ ],
+ "שיקולים": [
+ {
+ "word_nikkud": "שִׁקּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4326-shikul",
+ "gender": "masculine"
+ }
+ ],
+ "שיקול־": [
+ {
+ "word_nikkud": "שִׁקּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4326-shikul",
+ "gender": "masculine"
+ }
+ ],
+ "שיקולי־": [
+ {
+ "word_nikkud": "שִׁקּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4326-shikul",
+ "gender": "masculine"
+ }
+ ],
+ "שקל": [
+ {
+ "word_nikkud": "שֶׁקֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6087-shekel",
+ "gender": "masculine"
+ }
+ ],
+ "שקלים": [
+ {
+ "word_nikkud": "שֶׁקֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6087-shekel",
+ "gender": "masculine"
+ }
+ ],
+ "שקל־": [
+ {
+ "word_nikkud": "שֶׁקֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6087-shekel",
+ "gender": "masculine"
+ }
+ ],
+ "שקלי־": [
+ {
+ "word_nikkud": "שֶׁקֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6087-shekel",
+ "gender": "masculine"
+ }
+ ],
+ "משקל": [
+ {
+ "word_nikkud": "מִשְׁקָל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2662-mishkal",
+ "gender": "masculine"
+ }
+ ],
+ "משקלים": [
+ {
+ "word_nikkud": "מִשְׁקָל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2662-mishkal",
+ "gender": "masculine"
+ }
+ ],
+ "משקל־": [
+ {
+ "word_nikkud": "מִשְׁקָל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2662-mishkal",
+ "gender": "masculine"
+ }
+ ],
+ "משקלי־": [
+ {
+ "word_nikkud": "מִשְׁקָל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2662-mishkal",
+ "gender": "masculine"
+ }
+ ],
+ "שקילה": [
+ {
+ "word_nikkud": "שְׁקִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4961-shkila",
+ "gender": "feminine"
+ }
+ ],
+ "שקילות": [
+ {
+ "word_nikkud": "שְׁקִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4961-shkila",
+ "gender": "feminine"
+ }
+ ],
+ "שקילת־": [
+ {
+ "word_nikkud": "שְׁקִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4961-shkila",
+ "gender": "feminine"
+ }
+ ],
+ "שקילות־": [
+ {
+ "word_nikkud": "שְׁקִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4961-shkila",
+ "gender": "feminine"
+ }
+ ],
+ "שקלול": [
+ {
+ "word_nikkud": "שִׁקְלוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3893-shiklul",
+ "gender": "masculine"
+ }
+ ],
+ "שקלולים": [
+ {
+ "word_nikkud": "שִׁקְלוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3893-shiklul",
+ "gender": "masculine"
+ }
+ ],
+ "שקלול־": [
+ {
+ "word_nikkud": "שִׁקְלוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3893-shiklul",
+ "gender": "masculine"
+ }
+ ],
+ "שקלולי־": [
+ {
+ "word_nikkud": "שִׁקְלוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3893-shiklul",
+ "gender": "masculine"
+ }
+ ],
+ "שיקום": [
+ {
+ "word_nikkud": "שִׁקּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4124-shikum",
+ "gender": "masculine"
+ }
+ ],
+ "שיקומים": [
+ {
+ "word_nikkud": "שִׁקּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4124-shikum",
+ "gender": "masculine"
+ }
+ ],
+ "שיקום־": [
+ {
+ "word_nikkud": "שִׁקּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4124-shikum",
+ "gender": "masculine"
+ }
+ ],
+ "שיקומי־": [
+ {
+ "word_nikkud": "שִׁקּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4124-shikum",
+ "gender": "masculine"
+ }
+ ],
+ "שקע": [
+ {
+ "word_nikkud": "שֶׁקַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5813-sheka",
+ "gender": "masculine"
+ }
+ ],
+ "שקעים": [
+ {
+ "word_nikkud": "שֶׁקַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5813-sheka",
+ "gender": "masculine"
+ }
+ ],
+ "שקע־": [
+ {
+ "word_nikkud": "שֶׁקַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5813-sheka",
+ "gender": "masculine"
+ }
+ ],
+ "שקעי־": [
+ {
+ "word_nikkud": "שֶׁקַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5813-sheka",
+ "gender": "masculine"
+ }
+ ],
+ "השקעה": [
+ {
+ "word_nikkud": "הַשְׁקָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2921-hashkaa",
+ "gender": "feminine"
+ }
+ ],
+ "השקעות": [
+ {
+ "word_nikkud": "הַשְׁקָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2921-hashkaa",
+ "gender": "feminine"
+ }
+ ],
+ "השקעת־": [
+ {
+ "word_nikkud": "הַשְׁקָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2921-hashkaa",
+ "gender": "feminine"
+ }
+ ],
+ "השקעות־": [
+ {
+ "word_nikkud": "הַשְׁקָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2921-hashkaa",
+ "gender": "feminine"
+ }
+ ],
+ "שקיעה": [
+ {
+ "word_nikkud": "שְׁקִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7169-shkia",
+ "gender": "feminine"
+ }
+ ],
+ "שקיעות": [
+ {
+ "word_nikkud": "שְׁקִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7169-shkia",
+ "gender": "feminine"
+ }
+ ],
+ "שקיעת־": [
+ {
+ "word_nikkud": "שְׁקִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7169-shkia",
+ "gender": "feminine"
+ }
+ ],
+ "שקיעות־": [
+ {
+ "word_nikkud": "שְׁקִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7169-shkia",
+ "gender": "feminine"
+ }
+ ],
+ "שיקוף": [
+ {
+ "word_nikkud": "שִׁקּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3914-shikuf",
+ "gender": "masculine"
+ }
+ ],
+ "שיקופים": [
+ {
+ "word_nikkud": "שִׁקּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3914-shikuf",
+ "gender": "masculine"
+ }
+ ],
+ "שיקוף־": [
+ {
+ "word_nikkud": "שִׁקּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3914-shikuf",
+ "gender": "masculine"
+ }
+ ],
+ "שיקופי־": [
+ {
+ "word_nikkud": "שִׁקּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3914-shikuf",
+ "gender": "masculine"
+ }
+ ],
+ "שקף": [
+ {
+ "word_nikkud": "שֶׁקֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5438-shekef",
+ "gender": "masculine"
+ }
+ ],
+ "שקפים": [
+ {
+ "word_nikkud": "שֶׁקֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5438-shekef",
+ "gender": "masculine"
+ }
+ ],
+ "שקף־": [
+ {
+ "word_nikkud": "שֶׁקֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5438-shekef",
+ "gender": "masculine"
+ }
+ ],
+ "שקפי־": [
+ {
+ "word_nikkud": "שֶׁקֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5438-shekef",
+ "gender": "masculine"
+ }
+ ],
+ "שקופית": [
+ {
+ "word_nikkud": "שְׁקוּפִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5437-shkufit",
+ "gender": "feminine"
+ }
+ ],
+ "שקופיות": [
+ {
+ "word_nikkud": "שְׁקוּפִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5437-shkufit",
+ "gender": "feminine"
+ }
+ ],
+ "שקופית־": [
+ {
+ "word_nikkud": "שְׁקוּפִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5437-shkufit",
+ "gender": "feminine"
+ }
+ ],
+ "שקופיות־": [
+ {
+ "word_nikkud": "שְׁקוּפִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5437-shkufit",
+ "gender": "feminine"
+ }
+ ],
+ "השקפה": [
+ {
+ "word_nikkud": "הַשְׁקָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3029-hashkafa",
+ "gender": "feminine"
+ }
+ ],
+ "השקפות": [
+ {
+ "word_nikkud": "הַשְׁקָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3029-hashkafa",
+ "gender": "feminine"
+ }
+ ],
+ "השקפת־": [
+ {
+ "word_nikkud": "הַשְׁקָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3029-hashkafa",
+ "gender": "feminine"
+ }
+ ],
+ "השקפות־": [
+ {
+ "word_nikkud": "הַשְׁקָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3029-hashkafa",
+ "gender": "feminine"
+ }
+ ],
+ "השתקפות": [
+ {
+ "word_nikkud": "הִשְׁתַּקְּפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6317-hishtakfut",
+ "gender": "feminine"
+ }
+ ],
+ "השתקפויות": [
+ {
+ "word_nikkud": "הִשְׁתַּקְּפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6317-hishtakfut",
+ "gender": "feminine"
+ }
+ ],
+ "השתקפות־": [
+ {
+ "word_nikkud": "הִשְׁתַּקְּפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6317-hishtakfut",
+ "gender": "feminine"
+ }
+ ],
+ "השתקפויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּקְּפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6317-hishtakfut",
+ "gender": "feminine"
+ }
+ ],
+ "משקפיים": [
+ {
+ "word_nikkud": "מִשְׁקָפַיִם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6218-mishkafayim",
+ "gender": "masculine"
+ }
+ ],
+ "משקפי־": [
+ {
+ "word_nikkud": "מִשְׁקָפַיִם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6218-mishkafayim",
+ "gender": "masculine"
+ }
+ ],
+ "שקיפות": [
+ {
+ "word_nikkud": "שְׁקִיפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6499-shkifut",
+ "gender": "feminine"
+ }
+ ],
+ "שקיפויות": [
+ {
+ "word_nikkud": "שְׁקִיפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6499-shkifut",
+ "gender": "feminine"
+ }
+ ],
+ "שקיפות־": [
+ {
+ "word_nikkud": "שְׁקִיפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6499-shkifut",
+ "gender": "feminine"
+ }
+ ],
+ "שקיפויות־": [
+ {
+ "word_nikkud": "שְׁקִיפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6499-shkifut",
+ "gender": "feminine"
+ }
+ ],
+ "שיקוץ": [
+ {
+ "word_nikkud": "שִׁקּוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4459-shikutz",
+ "gender": "masculine"
+ }
+ ],
+ "שיקוצים": [
+ {
+ "word_nikkud": "שִׁקּוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4459-shikutz",
+ "gender": "masculine"
+ }
+ ],
+ "שיקוץ־": [
+ {
+ "word_nikkud": "שִׁקּוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4459-shikutz",
+ "gender": "masculine"
+ }
+ ],
+ "שיקוצי־": [
+ {
+ "word_nikkud": "שִׁקּוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4459-shikutz",
+ "gender": "masculine"
+ }
+ ],
+ "שקרן": [
+ {
+ "word_nikkud": "שַׁקְרָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3451-shakran",
+ "gender": "masculine"
+ }
+ ],
+ "שקרנים": [
+ {
+ "word_nikkud": "שַׁקְרָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3451-shakran",
+ "gender": "masculine"
+ }
+ ],
+ "שקרן־": [
+ {
+ "word_nikkud": "שַׁקְרָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3451-shakran",
+ "gender": "masculine"
+ }
+ ],
+ "שקרני־": [
+ {
+ "word_nikkud": "שַׁקְרָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3451-shakran",
+ "gender": "masculine"
+ }
+ ],
+ "שקר": [
+ {
+ "word_nikkud": "שֶׁקֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5025-sheker",
+ "gender": "masculine"
+ }
+ ],
+ "שקרים": [
+ {
+ "word_nikkud": "שֶׁקֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5025-sheker",
+ "gender": "masculine"
+ }
+ ],
+ "שקר־": [
+ {
+ "word_nikkud": "שֶׁקֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5025-sheker",
+ "gender": "masculine"
+ }
+ ],
+ "שקרי־": [
+ {
+ "word_nikkud": "שֶׁקֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5025-sheker",
+ "gender": "masculine"
+ }
+ ],
+ "שוקת": [
+ {
+ "word_nikkud": "שֹׁקֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8615-shoket",
+ "gender": "feminine"
+ }
+ ],
+ "שקתות": [
+ {
+ "word_nikkud": "שֹׁקֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8615-shoket",
+ "gender": "feminine"
+ }
+ ],
+ "שוקת־": [
+ {
+ "word_nikkud": "שֹׁקֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8615-shoket",
+ "gender": "feminine"
+ }
+ ],
+ "שקתות־": [
+ {
+ "word_nikkud": "שֹׁקֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8615-shoket",
+ "gender": "feminine"
+ }
+ ],
+ "השראה": [
+ {
+ "word_nikkud": "הַשְׁרָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3097-hashraa",
+ "gender": "feminine"
+ }
+ ],
+ "השראת־": [
+ {
+ "word_nikkud": "הַשְׁרָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3097-hashraa",
+ "gender": "feminine"
+ }
+ ],
+ "שרביט": [
+ {
+ "word_nikkud": "שַׁרְבִיט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6143-sharvit",
+ "gender": "masculine"
+ }
+ ],
+ "שרביטים": [
+ {
+ "word_nikkud": "שַׁרְבִיט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6143-sharvit",
+ "gender": "masculine"
+ }
+ ],
+ "שרביט־": [
+ {
+ "word_nikkud": "שַׁרְבִיט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6143-sharvit",
+ "gender": "masculine"
+ }
+ ],
+ "שרביטי־": [
+ {
+ "word_nikkud": "שַׁרְבִיט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6143-sharvit",
+ "gender": "masculine"
+ }
+ ],
+ "שרוול": [
+ {
+ "word_nikkud": "שַׁרְווּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8952-sharvul",
+ "gender": "masculine"
+ }
+ ],
+ "שרוולים": [
+ {
+ "word_nikkud": "שַׁרְווּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8952-sharvul",
+ "gender": "masculine"
+ }
+ ],
+ "שרוול־": [
+ {
+ "word_nikkud": "שַׁרְווּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8952-sharvul",
+ "gender": "masculine"
+ }
+ ],
+ "שרוולי־": [
+ {
+ "word_nikkud": "שַׁרְווּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8952-sharvul",
+ "gender": "masculine"
+ }
+ ],
+ "שרברב": [
+ {
+ "word_nikkud": "שְׁרַבְרַב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7575-shravrav",
+ "gender": ""
+ }
+ ],
+ "שרברבים": [
+ {
+ "word_nikkud": "שְׁרַבְרַב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7575-shravrav",
+ "gender": ""
+ }
+ ],
+ "שרברב־": [
+ {
+ "word_nikkud": "שְׁרַבְרַב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7575-shravrav",
+ "gender": ""
+ }
+ ],
+ "שרברבי־": [
+ {
+ "word_nikkud": "שְׁרַבְרַב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7575-shravrav",
+ "gender": ""
+ }
+ ],
+ "שריג": [
+ {
+ "word_nikkud": "שָׂרִיג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8268-sarig",
+ "gender": "masculine"
+ }
+ ],
+ "שריגים": [
+ {
+ "word_nikkud": "שָׂרִיג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8268-sarig",
+ "gender": "masculine"
+ }
+ ],
+ "שריג־": [
+ {
+ "word_nikkud": "שָׂרִיג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8268-sarig",
+ "gender": "masculine"
+ }
+ ],
+ "שריגי־": [
+ {
+ "word_nikkud": "שָׂרִיג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8268-sarig",
+ "gender": "masculine"
+ }
+ ],
+ "הישרדות": [
+ {
+ "word_nikkud": "הִשָּׂרְדוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2871-hisardut",
+ "gender": "feminine"
+ }
+ ],
+ "הישרדות־": [
+ {
+ "word_nikkud": "הִשָּׂרְדוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2871-hisardut",
+ "gender": "feminine"
+ }
+ ],
+ "משרד": [
+ {
+ "word_nikkud": "מִשְׂרָד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3243-misrad",
+ "gender": "masculine"
+ }
+ ],
+ "משרדים": [
+ {
+ "word_nikkud": "מִשְׂרָד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3243-misrad",
+ "gender": "masculine"
+ }
+ ],
+ "משרד־": [
+ {
+ "word_nikkud": "מִשְׂרָד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3243-misrad",
+ "gender": "masculine"
+ }
+ ],
+ "משרדי־": [
+ {
+ "word_nikkud": "מִשְׂרָד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3243-misrad",
+ "gender": "masculine"
+ }
+ ],
+ "שריד": [
+ {
+ "word_nikkud": "שָׂרִיד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7887-sarid",
+ "gender": "masculine"
+ }
+ ],
+ "שרידים": [
+ {
+ "word_nikkud": "שָׂרִיד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7887-sarid",
+ "gender": "masculine"
+ }
+ ],
+ "שריד־": [
+ {
+ "word_nikkud": "שָׂרִיד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7887-sarid",
+ "gender": "masculine"
+ }
+ ],
+ "שרידי־": [
+ {
+ "word_nikkud": "שָׂרִיד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7887-sarid",
+ "gender": "masculine"
+ }
+ ],
+ "שריטה": [
+ {
+ "word_nikkud": "שְׂרִיטָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7343-srita",
+ "gender": "feminine"
+ }
+ ],
+ "שריטות": [
+ {
+ "word_nikkud": "שְׂרִיטָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7343-srita",
+ "gender": "feminine"
+ }
+ ],
+ "שריטת־": [
+ {
+ "word_nikkud": "שְׂרִיטָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7343-srita",
+ "gender": "feminine"
+ }
+ ],
+ "שריטות־": [
+ {
+ "word_nikkud": "שְׂרִיטָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7343-srita",
+ "gender": "feminine"
+ }
+ ],
+ "שרטוט": [
+ {
+ "word_nikkud": "שִׂרְטוּט",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5891-sirtut",
+ "gender": "masculine"
+ }
+ ],
+ "שרטוטים": [
+ {
+ "word_nikkud": "שִׂרְטוּט",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5891-sirtut",
+ "gender": "masculine"
+ }
+ ],
+ "שרטוט־": [
+ {
+ "word_nikkud": "שִׂרְטוּט",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5891-sirtut",
+ "gender": "masculine"
+ }
+ ],
+ "שרטוטי־": [
+ {
+ "word_nikkud": "שִׂרְטוּט",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5891-sirtut",
+ "gender": "masculine"
+ }
+ ],
+ "משרה": [
+ {
+ "word_nikkud": "מִשְׂרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3766-misra",
+ "gender": "feminine"
+ }
+ ],
+ "משרות": [
+ {
+ "word_nikkud": "מִשְׂרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3766-misra",
+ "gender": "feminine"
+ }
+ ],
+ "משרת־": [
+ {
+ "word_nikkud": "מִשְׂרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3766-misra",
+ "gender": "feminine"
+ }
+ ],
+ "משרות־": [
+ {
+ "word_nikkud": "מִשְׂרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3766-misra",
+ "gender": "feminine"
+ }
+ ],
+ "שריון": [
+ {
+ "word_nikkud": "שִׁרְיוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6519-shiryun",
+ "gender": "masculine"
+ }
+ ],
+ "שריונים": [
+ {
+ "word_nikkud": "שִׁרְיוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6519-shiryun",
+ "gender": "masculine"
+ }
+ ],
+ "שריון־": [
+ {
+ "word_nikkud": "שִׁרְיוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6519-shiryun",
+ "gender": "masculine"
+ }
+ ],
+ "שריוני־": [
+ {
+ "word_nikkud": "שִׁרְיוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6519-shiryun",
+ "gender": "masculine"
+ }
+ ],
+ "שרוך": [
+ {
+ "word_nikkud": "שְׂרוֹךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5523-sroch",
+ "gender": "masculine"
+ }
+ ],
+ "שרוכים": [
+ {
+ "word_nikkud": "שְׂרוֹךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5523-sroch",
+ "gender": "masculine"
+ }
+ ],
+ "שרוך־": [
+ {
+ "word_nikkud": "שְׂרוֹךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5523-sroch",
+ "gender": "masculine"
+ }
+ ],
+ "שרוכי־": [
+ {
+ "word_nikkud": "שְׂרוֹךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5523-sroch",
+ "gender": "masculine"
+ }
+ ],
+ "שריפה": [
+ {
+ "word_nikkud": "שְׂרֵפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2844-srefa",
+ "gender": "feminine"
+ }
+ ],
+ "שריפות": [
+ {
+ "word_nikkud": "שְׂרֵפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2844-srefa",
+ "gender": "feminine"
+ }
+ ],
+ "שריפת־": [
+ {
+ "word_nikkud": "שְׂרֵפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2844-srefa",
+ "gender": "feminine"
+ }
+ ],
+ "שריפות־": [
+ {
+ "word_nikkud": "שְׂרֵפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2844-srefa",
+ "gender": "feminine"
+ }
+ ],
+ "שרף": [
+ {
+ "word_nikkud": "שָׂרָף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2845-saraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרפים": [
+ {
+ "word_nikkud": "שָׂרָף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2845-saraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרף־": [
+ {
+ "word_nikkud": "שָׂרָף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2845-saraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרפי־": [
+ {
+ "word_nikkud": "שָׂרָף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2845-saraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרפרף": [
+ {
+ "word_nikkud": "שְׁרַפְרַף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8599-shrafraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרפרפים": [
+ {
+ "word_nikkud": "שְׁרַפְרַף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8599-shrafraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרפרף־": [
+ {
+ "word_nikkud": "שְׁרַפְרַף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8599-shrafraf",
+ "gender": "masculine"
+ }
+ ],
+ "שרפרפי־": [
+ {
+ "word_nikkud": "שְׁרַפְרַף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8599-shrafraf",
+ "gender": "masculine"
+ }
+ ],
+ "שר": [
+ {
+ "word_nikkud": "שָׂר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4160-sar",
+ "gender": "masculine"
+ }
+ ],
+ "שרים": [
+ {
+ "word_nikkud": "שָׂר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4160-sar",
+ "gender": "masculine"
+ }
+ ],
+ "שר־": [
+ {
+ "word_nikkud": "שָׂר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4160-sar",
+ "gender": "masculine"
+ }
+ ],
+ "שרי־": [
+ {
+ "word_nikkud": "שָׂר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4160-sar",
+ "gender": "masculine"
+ }
+ ],
+ "שריר": [
+ {
+ "word_nikkud": "שְׁרִיר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7397-shrir",
+ "gender": "masculine"
+ }
+ ],
+ "שרירים": [
+ {
+ "word_nikkud": "שְׁרִיר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7397-shrir",
+ "gender": "masculine"
+ }
+ ],
+ "שריר־": [
+ {
+ "word_nikkud": "שְׁרִיר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7397-shrir",
+ "gender": "masculine"
+ }
+ ],
+ "שרירי־": [
+ {
+ "word_nikkud": "שְׁרִיר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7397-shrir",
+ "gender": "masculine"
+ }
+ ],
+ "שורשון": [
+ {
+ "word_nikkud": "שָׁרְשׁוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8536-shorshon",
+ "gender": "masculine"
+ }
+ ],
+ "שורשונים": [
+ {
+ "word_nikkud": "שָׁרְשׁוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8536-shorshon",
+ "gender": "masculine"
+ }
+ ],
+ "שורשון־": [
+ {
+ "word_nikkud": "שָׁרְשׁוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8536-shorshon",
+ "gender": "masculine"
+ }
+ ],
+ "שורשוני־": [
+ {
+ "word_nikkud": "שָׁרְשׁוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8536-shorshon",
+ "gender": "masculine"
+ }
+ ],
+ "שורש": [
+ {
+ "word_nikkud": "שֹׁרֶשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6343-shoresh",
+ "gender": "masculine"
+ }
+ ],
+ "שורשים": [
+ {
+ "word_nikkud": "שֹׁרֶשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6343-shoresh",
+ "gender": "masculine"
+ }
+ ],
+ "שורש־": [
+ {
+ "word_nikkud": "שֹׁרֶשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6343-shoresh",
+ "gender": "masculine"
+ }
+ ],
+ "שורשי־": [
+ {
+ "word_nikkud": "שֹׁרֶשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6343-shoresh",
+ "gender": "masculine"
+ }
+ ],
+ "שרשרת": [
+ {
+ "word_nikkud": "שַׁרְשֶׁרֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4768-sharsheret",
+ "gender": "feminine"
+ }
+ ],
+ "שרשראות": [
+ {
+ "word_nikkud": "שַׁרְשֶׁרֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4768-sharsheret",
+ "gender": "feminine"
+ }
+ ],
+ "שרשרות": [
+ {
+ "word_nikkud": "שַׁרְשֶׁרֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4768-sharsheret",
+ "gender": "feminine"
+ }
+ ],
+ "שרשרת־": [
+ {
+ "word_nikkud": "שַׁרְשֶׁרֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4768-sharsheret",
+ "gender": "feminine"
+ }
+ ],
+ "שרשראות־": [
+ {
+ "word_nikkud": "שַׁרְשֶׁרֶת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4768-sharsheret",
+ "gender": "feminine"
+ }
+ ],
+ "שרשרות־": [
+ {
+ "word_nikkud": "שַׁרְשֶׁרֶת",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "4768-sharsheret",
+ "gender": "feminine"
+ }
+ ],
+ "שרשור": [
+ {
+ "word_nikkud": "שִׁרְשׁוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7253-shirshur",
+ "gender": "masculine"
+ }
+ ],
+ "שרשורים": [
+ {
+ "word_nikkud": "שִׁרְשׁוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7253-shirshur",
+ "gender": "masculine"
+ }
+ ],
+ "שרשור־": [
+ {
+ "word_nikkud": "שִׁרְשׁוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7253-shirshur",
+ "gender": "masculine"
+ }
+ ],
+ "שרשורי־": [
+ {
+ "word_nikkud": "שִׁרְשׁוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7253-shirshur",
+ "gender": "masculine"
+ }
+ ],
+ "שירותים": [
+ {
+ "word_nikkud": "שֵׁרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6200-sherut",
+ "gender": "masculine"
+ }
+ ],
+ "שירותי־": [
+ {
+ "word_nikkud": "שֵׁרוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6200-sherut",
+ "gender": "masculine"
+ }
+ ],
+ "שתיין": [
+ {
+ "word_nikkud": "שַׁתְיָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3452-shatyan",
+ "gender": "masculine"
+ }
+ ],
+ "שתיינים": [
+ {
+ "word_nikkud": "שַׁתְיָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3452-shatyan",
+ "gender": "masculine"
+ }
+ ],
+ "שתיין־": [
+ {
+ "word_nikkud": "שַׁתְיָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3452-shatyan",
+ "gender": "masculine"
+ }
+ ],
+ "שתייני־": [
+ {
+ "word_nikkud": "שַׁתְיָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3452-shatyan",
+ "gender": "masculine"
+ }
+ ],
+ "שתייה": [
+ {
+ "word_nikkud": "שְׁתִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4568-shtiya",
+ "gender": "feminine"
+ }
+ ],
+ "שתיית־": [
+ {
+ "word_nikkud": "שְׁתִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4568-shtiya",
+ "gender": "feminine"
+ }
+ ],
+ "תשתית": [
+ {
+ "word_nikkud": "תַּשְׁתִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7866-tashtit",
+ "gender": "feminine"
+ }
+ ],
+ "תשתיות": [
+ {
+ "word_nikkud": "תַּשְׁתִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7866-tashtit",
+ "gender": "feminine"
+ }
+ ],
+ "תשתית־": [
+ {
+ "word_nikkud": "תַּשְׁתִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7866-tashtit",
+ "gender": "feminine"
+ }
+ ],
+ "תשתיות־": [
+ {
+ "word_nikkud": "תַּשְׁתִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7866-tashtit",
+ "gender": "feminine"
+ }
+ ],
+ "משתה": [
+ {
+ "word_nikkud": "מִשְׁתֶּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8704-mishte",
+ "gender": "masculine"
+ }
+ ],
+ "משתים": [
+ {
+ "word_nikkud": "מִשְׁתֶּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8704-mishte",
+ "gender": "masculine"
+ }
+ ],
+ "משתאות": [
+ {
+ "word_nikkud": "מִשְׁתֶּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8704-mishte",
+ "gender": "masculine"
+ }
+ ],
+ "משתה־": [
+ {
+ "word_nikkud": "מִשְׁתֶּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8704-mishte",
+ "gender": "masculine"
+ }
+ ],
+ "משתי־": [
+ {
+ "word_nikkud": "מִשְׁתֶּה",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "8704-mishte",
+ "gender": "masculine"
+ }
+ ],
+ "שתיל": [
+ {
+ "word_nikkud": "שְׁתִיל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7409-shtil",
+ "gender": "masculine"
+ }
+ ],
+ "שתילים": [
+ {
+ "word_nikkud": "שְׁתִיל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7409-shtil",
+ "gender": "masculine"
+ }
+ ],
+ "שתיל־": [
+ {
+ "word_nikkud": "שְׁתִיל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7409-shtil",
+ "gender": "masculine"
+ }
+ ],
+ "שתילי־": [
+ {
+ "word_nikkud": "שְׁתִיל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7409-shtil",
+ "gender": "masculine"
+ }
+ ],
+ "שתל": [
+ {
+ "word_nikkud": "שֶׁתֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8223-shetel",
+ "gender": "masculine"
+ }
+ ],
+ "שתלים": [
+ {
+ "word_nikkud": "שֶׁתֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8223-shetel",
+ "gender": "masculine"
+ }
+ ],
+ "שתל־": [
+ {
+ "word_nikkud": "שֶׁתֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8223-shetel",
+ "gender": "masculine"
+ }
+ ],
+ "שתלי־": [
+ {
+ "word_nikkud": "שֶׁתֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8223-shetel",
+ "gender": "masculine"
+ }
+ ],
+ "שתילה": [
+ {
+ "word_nikkud": "שְׁתִילָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6676-shtila",
+ "gender": "feminine"
+ }
+ ],
+ "שתילות": [
+ {
+ "word_nikkud": "שְׁתִילָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6676-shtila",
+ "gender": "feminine"
+ }
+ ],
+ "שתילת־": [
+ {
+ "word_nikkud": "שְׁתִילָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6676-shtila",
+ "gender": "feminine"
+ }
+ ],
+ "שתילות־": [
+ {
+ "word_nikkud": "שְׁתִילָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6676-shtila",
+ "gender": "feminine"
+ }
+ ],
+ "משתן": [
+ {
+ "word_nikkud": "מַשְׁתֵּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5725-mashten",
+ "gender": "masculine"
+ }
+ ],
+ "משתנים": [
+ {
+ "word_nikkud": "מַשְׁתֵּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5725-mashten",
+ "gender": "masculine"
+ }
+ ],
+ "משתן־": [
+ {
+ "word_nikkud": "מַשְׁתֵּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5725-mashten",
+ "gender": "masculine"
+ }
+ ],
+ "משתני־": [
+ {
+ "word_nikkud": "מַשְׁתֵּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5725-mashten",
+ "gender": "masculine"
+ }
+ ],
+ "שתן": [
+ {
+ "word_nikkud": "שֶׁתֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3188-sheten",
+ "gender": "masculine"
+ }
+ ],
+ "שתן־": [
+ {
+ "word_nikkud": "שֶׁתֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3188-sheten",
+ "gender": "masculine"
+ }
+ ],
+ "שותף": [
+ {
+ "word_nikkud": "שֻׁתָּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7512-shutaf",
+ "gender": ""
+ }
+ ],
+ "שותפים": [
+ {
+ "word_nikkud": "שֻׁתָּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7512-shutaf",
+ "gender": ""
+ }
+ ],
+ "שותף־": [
+ {
+ "word_nikkud": "שֻׁתָּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7512-shutaf",
+ "gender": ""
+ }
+ ],
+ "שותפי־": [
+ {
+ "word_nikkud": "שֻׁתָּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7512-shutaf",
+ "gender": ""
+ }
+ ],
+ "השתתפות": [
+ {
+ "word_nikkud": "הִשְׁתַּתְּפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6328-hishtatfut",
+ "gender": "feminine"
+ }
+ ],
+ "השתתפויות": [
+ {
+ "word_nikkud": "הִשְׁתַּתְּפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6328-hishtatfut",
+ "gender": "feminine"
+ }
+ ],
+ "השתתפות־": [
+ {
+ "word_nikkud": "הִשְׁתַּתְּפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6328-hishtatfut",
+ "gender": "feminine"
+ }
+ ],
+ "השתתפויות־": [
+ {
+ "word_nikkud": "הִשְׁתַּתְּפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6328-hishtatfut",
+ "gender": "feminine"
+ }
+ ],
+ "שיתוף": [
+ {
+ "word_nikkud": "שִׁתּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4288-shituf",
+ "gender": "masculine"
+ }
+ ],
+ "שיתופים": [
+ {
+ "word_nikkud": "שִׁתּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4288-shituf",
+ "gender": "masculine"
+ }
+ ],
+ "שיתוף־": [
+ {
+ "word_nikkud": "שִׁתּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4288-shituf",
+ "gender": "masculine"
+ }
+ ],
+ "שיתופי־": [
+ {
+ "word_nikkud": "שִׁתּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4288-shituf",
+ "gender": "masculine"
+ }
+ ],
+ "שותפות": [
+ {
+ "word_nikkud": "שֻׁתָּפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9017-shutafut",
+ "gender": "feminine"
+ }
+ ],
+ "שותפויות": [
+ {
+ "word_nikkud": "שֻׁתָּפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9017-shutafut",
+ "gender": "feminine"
+ }
+ ],
+ "שותפות־": [
+ {
+ "word_nikkud": "שֻׁתָּפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9017-shutafut",
+ "gender": "feminine"
+ }
+ ],
+ "שותפויות־": [
+ {
+ "word_nikkud": "שֻׁתָּפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9017-shutafut",
+ "gender": "feminine"
+ }
+ ],
+ "שיתוק": [
+ {
+ "word_nikkud": "שִׁתּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7082-shituk",
+ "gender": "masculine"
+ }
+ ],
+ "שיתוקים": [
+ {
+ "word_nikkud": "שִׁתּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7082-shituk",
+ "gender": "masculine"
+ }
+ ],
+ "שיתוק־": [
+ {
+ "word_nikkud": "שִׁתּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7082-shituk",
+ "gender": "masculine"
+ }
+ ],
+ "שיתוקי־": [
+ {
+ "word_nikkud": "שִׁתּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7082-shituk",
+ "gender": "masculine"
+ }
+ ],
+ "שתיקה": [
+ {
+ "word_nikkud": "שְׁתִיקָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2838-shtika",
+ "gender": "feminine"
+ }
+ ],
+ "שתיקת־": [
+ {
+ "word_nikkud": "שְׁתִיקָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2838-shtika",
+ "gender": "feminine"
+ }
+ ],
+ "תא": [
+ {
+ "word_nikkud": "תָּא",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6643-ta",
+ "gender": "masculine"
+ }
+ ],
+ "תאים": [
+ {
+ "word_nikkud": "תָּא",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6643-ta",
+ "gender": "masculine"
+ }
+ ],
+ "תא־": [
+ {
+ "word_nikkud": "תָּא",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6643-ta",
+ "gender": "masculine"
+ }
+ ],
+ "תאי־": [
+ {
+ "word_nikkud": "תָּא",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6643-ta",
+ "gender": "masculine"
+ }
+ ],
+ "תיאבון": [
+ {
+ "word_nikkud": "תֵּאָבוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5387-teavon",
+ "gender": "masculine"
+ }
+ ],
+ "תאבון־": [
+ {
+ "word_nikkud": "תֵּאָבוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5387-teavon",
+ "gender": "masculine"
+ }
+ ],
+ "תיאום": [
+ {
+ "word_nikkud": "תֵּאוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6123-teum",
+ "gender": "masculine"
+ }
+ ],
+ "תיאומים": [
+ {
+ "word_nikkud": "תֵּאוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6123-teum",
+ "gender": "masculine"
+ }
+ ],
+ "תיאום־": [
+ {
+ "word_nikkud": "תֵּאוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6123-teum",
+ "gender": "masculine"
+ }
+ ],
+ "תיאומי־": [
+ {
+ "word_nikkud": "תֵּאוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6123-teum",
+ "gender": "masculine"
+ }
+ ],
+ "התאמה": [
+ {
+ "word_nikkud": "הַתְאָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2922-hatama",
+ "gender": "feminine"
+ }
+ ],
+ "התאמות": [
+ {
+ "word_nikkud": "הַתְאָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2922-hatama",
+ "gender": "feminine"
+ }
+ ],
+ "התאמת־": [
+ {
+ "word_nikkud": "הַתְאָמָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2922-hatama",
+ "gender": "feminine"
+ }
+ ],
+ "התאמות־": [
+ {
+ "word_nikkud": "הַתְאָמָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2922-hatama",
+ "gender": "feminine"
+ }
+ ],
+ "התאם": [
+ {
+ "word_nikkud": "הֶתְאֵם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8546-hetem",
+ "gender": "masculine"
+ }
+ ],
+ "התאמים": [
+ {
+ "word_nikkud": "הֶתְאֵם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8546-hetem",
+ "gender": "masculine"
+ }
+ ],
+ "התאם־": [
+ {
+ "word_nikkud": "הֶתְאֵם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8546-hetem",
+ "gender": "masculine"
+ }
+ ],
+ "התאמי־": [
+ {
+ "word_nikkud": "הֶתְאֵם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8546-hetem",
+ "gender": "masculine"
+ }
+ ],
+ "תאנה": [
+ {
+ "word_nikkud": "תְּאֵנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7597-teena",
+ "gender": ""
+ }
+ ],
+ "תאנות": [
+ {
+ "word_nikkud": "תְּאֵנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7597-teena",
+ "gender": ""
+ }
+ ],
+ "תאנת־": [
+ {
+ "word_nikkud": "תְּאֵנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7597-teena",
+ "gender": ""
+ }
+ ],
+ "תאנות־": [
+ {
+ "word_nikkud": "תְּאֵנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7597-teena",
+ "gender": ""
+ }
+ ],
+ "תואר": [
+ {
+ "word_nikkud": "תֹּאַר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5169-toar",
+ "gender": "masculine"
+ }
+ ],
+ "תארים": [
+ {
+ "word_nikkud": "תֹּאַר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5169-toar",
+ "gender": "masculine"
+ }
+ ],
+ "תואר־": [
+ {
+ "word_nikkud": "תֹּאַר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5169-toar",
+ "gender": "masculine"
+ }
+ ],
+ "תארי־": [
+ {
+ "word_nikkud": "תֹּאַר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5169-toar",
+ "gender": "masculine"
+ }
+ ],
+ "תיאור": [
+ {
+ "word_nikkud": "תֵּאוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3735-teur",
+ "gender": "masculine"
+ }
+ ],
+ "תיאורים": [
+ {
+ "word_nikkud": "תֵּאוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3735-teur",
+ "gender": "masculine"
+ }
+ ],
+ "תיאור־": [
+ {
+ "word_nikkud": "תֵּאוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3735-teur",
+ "gender": "masculine"
+ }
+ ],
+ "תיאורי־": [
+ {
+ "word_nikkud": "תֵּאוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3735-teur",
+ "gender": "masculine"
+ }
+ ],
+ "מתאר": [
+ {
+ "word_nikkud": "מִתְאָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8765-mitar",
+ "gender": "masculine"
+ }
+ ],
+ "מתארים": [
+ {
+ "word_nikkud": "מִתְאָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8765-mitar",
+ "gender": "masculine"
+ }
+ ],
+ "מתאר־": [
+ {
+ "word_nikkud": "מִתְאָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8765-mitar",
+ "gender": "masculine"
+ }
+ ],
+ "מתארי־": [
+ {
+ "word_nikkud": "מִתְאָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8765-mitar",
+ "gender": "masculine"
+ }
+ ],
+ "תבלין": [
+ {
+ "word_nikkud": "תַּבְלִין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5555-tavlin",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תֶּבֶל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3858-tevel",
+ "gender": "masculine"
+ }
+ ],
+ "תבלינים": [
+ {
+ "word_nikkud": "תַּבְלִין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5555-tavlin",
+ "gender": "masculine"
+ }
+ ],
+ "תבלין־": [
+ {
+ "word_nikkud": "תַּבְלִין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5555-tavlin",
+ "gender": "masculine"
+ }
+ ],
+ "תבליני־": [
+ {
+ "word_nikkud": "תַּבְלִין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5555-tavlin",
+ "gender": "masculine"
+ }
+ ],
+ "תבל": [
+ {
+ "word_nikkud": "תֶּבֶל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3858-tevel",
+ "gender": "masculine"
+ }
+ ],
+ "תבלים": [
+ {
+ "word_nikkud": "תֶּבֶל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3858-tevel",
+ "gender": "masculine"
+ }
+ ],
+ "תבל־": [
+ {
+ "word_nikkud": "תֶּבֶל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3858-tevel",
+ "gender": "masculine"
+ }
+ ],
+ "תבלי־": [
+ {
+ "word_nikkud": "תֶּבֶל",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "3858-tevel",
+ "gender": "masculine"
+ }
+ ],
+ "תבן": [
+ {
+ "word_nikkud": "תֶּבֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9271-teven",
+ "gender": "masculine"
+ }
+ ],
+ "תבן־": [
+ {
+ "word_nikkud": "תֶּבֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9271-teven",
+ "gender": "masculine"
+ }
+ ],
+ "תביעה": [
+ {
+ "word_nikkud": "תְּבִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5071-tvia",
+ "gender": "feminine"
+ }
+ ],
+ "תביעות": [
+ {
+ "word_nikkud": "תְּבִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5071-tvia",
+ "gender": "feminine"
+ }
+ ],
+ "תביעת־": [
+ {
+ "word_nikkud": "תְּבִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5071-tvia",
+ "gender": "feminine"
+ }
+ ],
+ "תביעות־": [
+ {
+ "word_nikkud": "תְּבִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5071-tvia",
+ "gender": "feminine"
+ }
+ ],
+ "תובע": [
+ {
+ "word_nikkud": "תּוֹבֵעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6131-tovea",
+ "gender": "masculine"
+ }
+ ],
+ "תובעים": [
+ {
+ "word_nikkud": "תּוֹבֵעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6131-tovea",
+ "gender": "masculine"
+ }
+ ],
+ "תובע־": [
+ {
+ "word_nikkud": "תּוֹבֵעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6131-tovea",
+ "gender": "masculine"
+ }
+ ],
+ "תובעי־": [
+ {
+ "word_nikkud": "תּוֹבֵעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6131-tovea",
+ "gender": "masculine"
+ }
+ ],
+ "תדירות": [
+ {
+ "word_nikkud": "תְּדִירוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8687-tdirut",
+ "gender": "feminine"
+ }
+ ],
+ "תדירויות": [
+ {
+ "word_nikkud": "תְּדִירוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8687-tdirut",
+ "gender": "feminine"
+ }
+ ],
+ "תדירות־": [
+ {
+ "word_nikkud": "תְּדִירוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8687-tdirut",
+ "gender": "feminine"
+ }
+ ],
+ "תדירויות־": [
+ {
+ "word_nikkud": "תְּדִירוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8687-tdirut",
+ "gender": "feminine"
+ }
+ ],
+ "תדר": [
+ {
+ "word_nikkud": "תֶּדֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4848-teder",
+ "gender": "masculine"
+ }
+ ],
+ "תדרים": [
+ {
+ "word_nikkud": "תֶּדֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4848-teder",
+ "gender": "masculine"
+ }
+ ],
+ "תדר־": [
+ {
+ "word_nikkud": "תֶּדֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4848-teder",
+ "gender": "masculine"
+ }
+ ],
+ "תדרי־": [
+ {
+ "word_nikkud": "תֶּדֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4848-teder",
+ "gender": "masculine"
+ }
+ ],
+ "תדרוך": [
+ {
+ "word_nikkud": "תִּדְרוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8453-tidruch",
+ "gender": "masculine"
+ }
+ ],
+ "תדרוכים": [
+ {
+ "word_nikkud": "תִּדְרוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8453-tidruch",
+ "gender": "masculine"
+ }
+ ],
+ "תדרוך־": [
+ {
+ "word_nikkud": "תִּדְרוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8453-tidruch",
+ "gender": "masculine"
+ }
+ ],
+ "תדרוכי־": [
+ {
+ "word_nikkud": "תִּדְרוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8453-tidruch",
+ "gender": "masculine"
+ }
+ ],
+ "תה": [
+ {
+ "word_nikkud": "תֵּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6873-te",
+ "gender": "masculine"
+ }
+ ],
+ "תה־": [
+ {
+ "word_nikkud": "תֵּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6873-te",
+ "gender": "masculine"
+ }
+ ],
+ "תהייה": [
+ {
+ "word_nikkud": "תְּהִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4380-tehiya",
+ "gender": "feminine"
+ }
+ ],
+ "תהיית־": [
+ {
+ "word_nikkud": "תְּהִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4380-tehiya",
+ "gender": "feminine"
+ }
+ ],
+ "תוהו": [
+ {
+ "word_nikkud": "תֹּהוּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6750-tohu",
+ "gender": "masculine"
+ }
+ ],
+ "תוהו־": [
+ {
+ "word_nikkud": "תֹּהוּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6750-tohu",
+ "gender": "masculine"
+ }
+ ],
+ "תהום": [
+ {
+ "word_nikkud": "תְּהוֹם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7183-tehom",
+ "gender": "feminine"
+ }
+ ],
+ "תהומות": [
+ {
+ "word_nikkud": "תְּהוֹם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7183-tehom",
+ "gender": "feminine"
+ }
+ ],
+ "תהום־": [
+ {
+ "word_nikkud": "תְּהוֹם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7183-tehom",
+ "gender": "feminine"
+ }
+ ],
+ "תהומות־": [
+ {
+ "word_nikkud": "תְּהוֹם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7183-tehom",
+ "gender": "feminine"
+ }
+ ],
+ "תו": [
+ {
+ "word_nikkud": "תָּו",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7913-tav",
+ "gender": "masculine"
+ }
+ ],
+ "תווים": [
+ {
+ "word_nikkud": "תָּו",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7913-tav",
+ "gender": "masculine"
+ }
+ ],
+ "תו־": [
+ {
+ "word_nikkud": "תָּו",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7913-tav",
+ "gender": "masculine"
+ }
+ ],
+ "תווי־": [
+ {
+ "word_nikkud": "תָּו",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7913-tav",
+ "gender": "masculine"
+ }
+ ],
+ "תווית": [
+ {
+ "word_nikkud": "תָּוִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7914-tavit",
+ "gender": "feminine"
+ }
+ ],
+ "תוויות": [
+ {
+ "word_nikkud": "תָּוִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7914-tavit",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תְּוִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6694-tviya",
+ "gender": "feminine"
+ }
+ ],
+ "תווית־": [
+ {
+ "word_nikkud": "תָּוִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7914-tavit",
+ "gender": "feminine"
+ }
+ ],
+ "תוויות־": [
+ {
+ "word_nikkud": "תָּוִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7914-tavit",
+ "gender": "feminine"
+ },
+ {
+ "word_nikkud": "תְּוִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6694-tviya",
+ "gender": "feminine"
+ }
+ ],
+ "תוחלת חיים": [
+ {
+ "word_nikkud": "תּוֹחֶלֶת חַיִּים",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6909-tochelet-chayim",
+ "gender": ""
+ }
+ ],
+ "תוחלות חיים": [
+ {
+ "word_nikkud": "תּוֹחֶלֶת חַיִּים",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6909-tochelet-chayim",
+ "gender": ""
+ }
+ ],
+ "תיווי": [
+ {
+ "word_nikkud": "תִּוּוּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7916-tivuy",
+ "gender": "masculine"
+ }
+ ],
+ "תיוויים": [
+ {
+ "word_nikkud": "תִּוּוּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7916-tivuy",
+ "gender": "masculine"
+ }
+ ],
+ "תיווי־": [
+ {
+ "word_nikkud": "תִּוּוּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7916-tivuy",
+ "gender": "masculine"
+ }
+ ],
+ "תיוויי־": [
+ {
+ "word_nikkud": "תִּוּוּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7916-tivuy",
+ "gender": "masculine"
+ }
+ ],
+ "תווייה": [
+ {
+ "word_nikkud": "תְּוִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6694-tviya",
+ "gender": "feminine"
+ }
+ ],
+ "תוויית־": [
+ {
+ "word_nikkud": "תְּוִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6694-tviya",
+ "gender": "feminine"
+ }
+ ],
+ "מתווה": [
+ {
+ "word_nikkud": "מִתְוֶה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5394-mitve",
+ "gender": "masculine"
+ }
+ ],
+ "מתווים": [
+ {
+ "word_nikkud": "מִתְוֶה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5394-mitve",
+ "gender": "masculine"
+ }
+ ],
+ "מתווה־": [
+ {
+ "word_nikkud": "מִתְוֶה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5394-mitve",
+ "gender": "masculine"
+ }
+ ],
+ "מתווי־": [
+ {
+ "word_nikkud": "מִתְוֶה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5394-mitve",
+ "gender": "masculine"
+ }
+ ],
+ "תוואי": [
+ {
+ "word_nikkud": "תְּוַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5101-tvay",
+ "gender": "masculine"
+ }
+ ],
+ "תוואים": [
+ {
+ "word_nikkud": "תְּוַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5101-tvay",
+ "gender": "masculine"
+ }
+ ],
+ "תוואי־": [
+ {
+ "word_nikkud": "תְּוַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5101-tvay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תְּוַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5101-tvay",
+ "gender": "masculine"
+ }
+ ],
+ "תיווך": [
+ {
+ "word_nikkud": "תִּוּוּךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6047-tivuch",
+ "gender": "masculine"
+ }
+ ],
+ "תיווכים": [
+ {
+ "word_nikkud": "תִּוּוּךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6047-tivuch",
+ "gender": "masculine"
+ }
+ ],
+ "תיווך־": [
+ {
+ "word_nikkud": "תִּוּוּךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6047-tivuch",
+ "gender": "masculine"
+ }
+ ],
+ "תיווכי־": [
+ {
+ "word_nikkud": "תִּוּוּךְ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6047-tivuch",
+ "gender": "masculine"
+ }
+ ],
+ "תווך": [
+ {
+ "word_nikkud": "תָּוֶךְ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4169-tavech",
+ "gender": "masculine"
+ }
+ ],
+ "תוך": [
+ {
+ "word_nikkud": "תָּוֶךְ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4169-tavech",
+ "gender": "masculine"
+ }
+ ],
+ "תוך־": [
+ {
+ "word_nikkud": "תָּוֶךְ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4169-tavech",
+ "gender": "masculine"
+ }
+ ],
+ "תוכית": [
+ {
+ "word_nikkud": "תּוֹכִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8261-tochit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכיות": [
+ {
+ "word_nikkud": "תּוֹכִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8261-tochit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכית־": [
+ {
+ "word_nikkud": "תּוֹכִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8261-tochit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכיות־": [
+ {
+ "word_nikkud": "תּוֹכִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8261-tochit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכי": [
+ {
+ "word_nikkud": "תֻּכִּי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6864-tuki",
+ "gender": "masculine"
+ }
+ ],
+ "תוכיים": [
+ {
+ "word_nikkud": "תֻּכִּי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6864-tuki",
+ "gender": "masculine"
+ }
+ ],
+ "תוכי־": [
+ {
+ "word_nikkud": "תֻּכִּי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6864-tuki",
+ "gender": "masculine"
+ }
+ ],
+ "תוכיי־": [
+ {
+ "word_nikkud": "תֻּכִּי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6864-tuki",
+ "gender": "masculine"
+ }
+ ],
+ "תור": [
+ {
+ "word_nikkud": "תּוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6163-tor",
+ "gender": "masculine"
+ }
+ ],
+ "תורים": [
+ {
+ "word_nikkud": "תּוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6163-tor",
+ "gender": "masculine"
+ }
+ ],
+ "תור־": [
+ {
+ "word_nikkud": "תּוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6163-tor",
+ "gender": "masculine"
+ }
+ ],
+ "תורי־": [
+ {
+ "word_nikkud": "תּוֹר",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6163-tor",
+ "gender": "masculine"
+ }
+ ],
+ "תושייה": [
+ {
+ "word_nikkud": "תּוּשִׁיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6175-tushiya",
+ "gender": ""
+ }
+ ],
+ "תושיית־": [
+ {
+ "word_nikkud": "תּוּשִׁיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6175-tushiya",
+ "gender": ""
+ }
+ ],
+ "תות": [
+ {
+ "word_nikkud": "תּוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6263-tut",
+ "gender": "masculine"
+ }
+ ],
+ "תותים": [
+ {
+ "word_nikkud": "תּוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6263-tut",
+ "gender": "masculine"
+ }
+ ],
+ "תות־": [
+ {
+ "word_nikkud": "תּוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6263-tut",
+ "gender": "masculine"
+ }
+ ],
+ "תותי־": [
+ {
+ "word_nikkud": "תּוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6263-tut",
+ "gender": "masculine"
+ }
+ ],
+ "תותח": [
+ {
+ "word_nikkud": "תּוֹתָח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8411-totach",
+ "gender": "masculine"
+ }
+ ],
+ "תותחים": [
+ {
+ "word_nikkud": "תּוֹתָח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8411-totach",
+ "gender": "masculine"
+ }
+ ],
+ "תותח־": [
+ {
+ "word_nikkud": "תּוֹתָח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8411-totach",
+ "gender": "masculine"
+ }
+ ],
+ "תותחי־": [
+ {
+ "word_nikkud": "תּוֹתָח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8411-totach",
+ "gender": "masculine"
+ }
+ ],
+ "תזה": [
+ {
+ "word_nikkud": "תֶּזָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8473-teza",
+ "gender": ""
+ }
+ ],
+ "תזות": [
+ {
+ "word_nikkud": "תֶּזָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8473-teza",
+ "gender": ""
+ }
+ ],
+ "תזת־": [
+ {
+ "word_nikkud": "תֶּזָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8473-teza",
+ "gender": ""
+ }
+ ],
+ "תזות־": [
+ {
+ "word_nikkud": "תֶּזָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8473-teza",
+ "gender": ""
+ }
+ ],
+ "תזמון": [
+ {
+ "word_nikkud": "תִּזְמוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4695-tizmun",
+ "gender": "masculine"
+ }
+ ],
+ "תזמון־": [
+ {
+ "word_nikkud": "תִּזְמוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4695-tizmun",
+ "gender": "masculine"
+ }
+ ],
+ "תחזוק": [
+ {
+ "word_nikkud": "תִּחְזוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8906-tichzuk",
+ "gender": "masculine"
+ }
+ ],
+ "תחזוקים": [
+ {
+ "word_nikkud": "תִּחְזוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8906-tichzuk",
+ "gender": "masculine"
+ }
+ ],
+ "תחזוק־": [
+ {
+ "word_nikkud": "תִּחְזוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8906-tichzuk",
+ "gender": "masculine"
+ }
+ ],
+ "תחזוקי־": [
+ {
+ "word_nikkud": "תִּחְזוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8906-tichzuk",
+ "gender": "masculine"
+ }
+ ],
+ "התחלה": [
+ {
+ "word_nikkud": "הַתְחָלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2923-hatchala",
+ "gender": "feminine"
+ }
+ ],
+ "התחלות": [
+ {
+ "word_nikkud": "הַתְחָלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2923-hatchala",
+ "gender": "feminine"
+ }
+ ],
+ "התחלת־": [
+ {
+ "word_nikkud": "הַתְחָלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "2923-hatchala",
+ "gender": "feminine"
+ }
+ ],
+ "התחלות־": [
+ {
+ "word_nikkud": "הַתְחָלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "2923-hatchala",
+ "gender": "feminine"
+ }
+ ],
+ "מתחם": [
+ {
+ "word_nikkud": "מִתְחָם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3888-mitcham",
+ "gender": "masculine"
+ }
+ ],
+ "מתחמים": [
+ {
+ "word_nikkud": "מִתְחָם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3888-mitcham",
+ "gender": "masculine"
+ }
+ ],
+ "מתחם־": [
+ {
+ "word_nikkud": "מִתְחָם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3888-mitcham",
+ "gender": "masculine"
+ }
+ ],
+ "מתחמי־": [
+ {
+ "word_nikkud": "מִתְחָם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3888-mitcham",
+ "gender": "masculine"
+ }
+ ],
+ "תחום": [
+ {
+ "word_nikkud": "תְּחוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4708-tchum",
+ "gender": "masculine"
+ }
+ ],
+ "תחומים": [
+ {
+ "word_nikkud": "תְּחוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4708-tchum",
+ "gender": "masculine"
+ }
+ ],
+ "תחום־": [
+ {
+ "word_nikkud": "תְּחוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4708-tchum",
+ "gender": "masculine"
+ }
+ ],
+ "תחומי־": [
+ {
+ "word_nikkud": "תְּחוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4708-tchum",
+ "gender": "masculine"
+ }
+ ],
+ "תחתית": [
+ {
+ "word_nikkud": "תַּחְתִּית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7980-tachtit",
+ "gender": "feminine"
+ }
+ ],
+ "תחתיות": [
+ {
+ "word_nikkud": "תַּחְתִּית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7980-tachtit",
+ "gender": "feminine"
+ }
+ ],
+ "תחתית־": [
+ {
+ "word_nikkud": "תַּחְתִּית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7980-tachtit",
+ "gender": "feminine"
+ }
+ ],
+ "תחתיות־": [
+ {
+ "word_nikkud": "תַּחְתִּית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7980-tachtit",
+ "gender": "feminine"
+ }
+ ],
+ "תיאוריה": [
+ {
+ "word_nikkud": "תֵּאוֹרְיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6914-teorya",
+ "gender": "feminine"
+ }
+ ],
+ "תיאוריות": [
+ {
+ "word_nikkud": "תֵּאוֹרְיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6914-teorya",
+ "gender": "feminine"
+ }
+ ],
+ "תיאוריית־": [
+ {
+ "word_nikkud": "תֵּאוֹרְיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6914-teorya",
+ "gender": "feminine"
+ }
+ ],
+ "תיאוריות־": [
+ {
+ "word_nikkud": "תֵּאוֹרְיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6914-teorya",
+ "gender": "feminine"
+ }
+ ],
+ "תיאטרון": [
+ {
+ "word_nikkud": "תֵּאַטְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6884-teatron",
+ "gender": "masculine"
+ }
+ ],
+ "תיאטרונים": [
+ {
+ "word_nikkud": "תֵּאַטְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6884-teatron",
+ "gender": "masculine"
+ }
+ ],
+ "תיאטראות": [
+ {
+ "word_nikkud": "תֵּאַטְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6884-teatron",
+ "gender": "masculine"
+ }
+ ],
+ "תיאטרון־": [
+ {
+ "word_nikkud": "תֵּאַטְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6884-teatron",
+ "gender": "masculine"
+ }
+ ],
+ "תיאטרוני־": [
+ {
+ "word_nikkud": "תֵּאַטְרוֹן",
+ "form_type": "other",
+ "pos": "Noun",
+ "slug": "6884-teatron",
+ "gender": "masculine"
+ }
+ ],
+ "תיבה": [
+ {
+ "word_nikkud": "תֵּבָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7249-teva",
+ "gender": "feminine"
+ }
+ ],
+ "תיבות": [
+ {
+ "word_nikkud": "תֵּבָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7249-teva",
+ "gender": "feminine"
+ }
+ ],
+ "תיבת־": [
+ {
+ "word_nikkud": "תֵּבָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7249-teva",
+ "gender": "feminine"
+ }
+ ],
+ "תיבות־": [
+ {
+ "word_nikkud": "תֵּבָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7249-teva",
+ "gender": "feminine"
+ }
+ ],
+ "מותג": [
+ {
+ "word_nikkud": "מוּתָג",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7414-mutag",
+ "gender": "masculine"
+ }
+ ],
+ "מותגים": [
+ {
+ "word_nikkud": "מוּתָג",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7414-mutag",
+ "gender": "masculine"
+ }
+ ],
+ "מותג־": [
+ {
+ "word_nikkud": "מוּתָג",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7414-mutag",
+ "gender": "masculine"
+ }
+ ],
+ "מותגי־": [
+ {
+ "word_nikkud": "מוּתָג",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7414-mutag",
+ "gender": "masculine"
+ }
+ ],
+ "תיק": [
+ {
+ "word_nikkud": "תִּיק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4760-tik",
+ "gender": "masculine"
+ }
+ ],
+ "תיקים": [
+ {
+ "word_nikkud": "תִּיק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4760-tik",
+ "gender": "masculine"
+ }
+ ],
+ "תיק־": [
+ {
+ "word_nikkud": "תִּיק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4760-tik",
+ "gender": "masculine"
+ }
+ ],
+ "תיקי־": [
+ {
+ "word_nikkud": "תִּיק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4760-tik",
+ "gender": "masculine"
+ }
+ ],
+ "תיקייה": [
+ {
+ "word_nikkud": "תִּיקִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6125-tikiya",
+ "gender": "masculine"
+ }
+ ],
+ "תיקיות": [
+ {
+ "word_nikkud": "תִּיקִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6125-tikiya",
+ "gender": "masculine"
+ }
+ ],
+ "תיקיית־": [
+ {
+ "word_nikkud": "תִּיקִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6125-tikiya",
+ "gender": "masculine"
+ }
+ ],
+ "תיקיות־": [
+ {
+ "word_nikkud": "תִּיקִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6125-tikiya",
+ "gender": "masculine"
+ }
+ ],
+ "תיקו": [
+ {
+ "word_nikkud": "תֵּיקוּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5930-teku",
+ "gender": "masculine"
+ }
+ ],
+ "תיירות": [
+ {
+ "word_nikkud": "תַּיָּרוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6366-tayarut",
+ "gender": "feminine"
+ }
+ ],
+ "תיירות־": [
+ {
+ "word_nikkud": "תַּיָּרוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6366-tayarut",
+ "gender": "feminine"
+ }
+ ],
+ "תייר": [
+ {
+ "word_nikkud": "תַּיָּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4933-tayar",
+ "gender": "masculine"
+ }
+ ],
+ "תיירים": [
+ {
+ "word_nikkud": "תַּיָּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4933-tayar",
+ "gender": "masculine"
+ }
+ ],
+ "תייר־": [
+ {
+ "word_nikkud": "תַּיָּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4933-tayar",
+ "gender": "masculine"
+ }
+ ],
+ "תיירי־": [
+ {
+ "word_nikkud": "תַּיָּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4933-tayar",
+ "gender": "masculine"
+ }
+ ],
+ "תירוש": [
+ {
+ "word_nikkud": "תִּירוֹשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7693-tirosh",
+ "gender": "masculine"
+ }
+ ],
+ "תירוש־": [
+ {
+ "word_nikkud": "תִּירוֹשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7693-tirosh",
+ "gender": "masculine"
+ }
+ ],
+ "תירס": [
+ {
+ "word_nikkud": "תִּירָס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6847-tiras",
+ "gender": ""
+ }
+ ],
+ "תירס־": [
+ {
+ "word_nikkud": "תִּירָס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6847-tiras",
+ "gender": ""
+ }
+ ],
+ "תיש": [
+ {
+ "word_nikkud": "תַּיִשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4271-tayish",
+ "gender": "masculine"
+ }
+ ],
+ "תיישים": [
+ {
+ "word_nikkud": "תַּיִשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4271-tayish",
+ "gender": "masculine"
+ }
+ ],
+ "תיש־": [
+ {
+ "word_nikkud": "תַּיִשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4271-tayish",
+ "gender": "masculine"
+ }
+ ],
+ "תישי־": [
+ {
+ "word_nikkud": "תַּיִשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4271-tayish",
+ "gender": "masculine"
+ }
+ ],
+ "תכלת": [
+ {
+ "word_nikkud": "תְּכֶלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7358-tchelet",
+ "gender": "feminine"
+ }
+ ],
+ "תכלת־": [
+ {
+ "word_nikkud": "תְּכֶלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7358-tchelet",
+ "gender": "feminine"
+ }
+ ],
+ "תוכנית": [
+ {
+ "word_nikkud": "תָּכְנִית",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4823-tochnit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכניות": [
+ {
+ "word_nikkud": "תָּכְנִית",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4823-tochnit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכנית־": [
+ {
+ "word_nikkud": "תָּכְנִית",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4823-tochnit",
+ "gender": "feminine"
+ }
+ ],
+ "תוכניות־": [
+ {
+ "word_nikkud": "תָּכְנִית",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4823-tochnit",
+ "gender": "feminine"
+ }
+ ],
+ "תכן": [
+ {
+ "word_nikkud": "תֶּכֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4711-techen",
+ "gender": "masculine"
+ }
+ ],
+ "תכנים": [
+ {
+ "word_nikkud": "תֶּכֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4711-techen",
+ "gender": "masculine"
+ }
+ ],
+ "תכן־": [
+ {
+ "word_nikkud": "תֶּכֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4711-techen",
+ "gender": "masculine"
+ }
+ ],
+ "תכני־": [
+ {
+ "word_nikkud": "תֶּכֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4711-techen",
+ "gender": "masculine"
+ }
+ ],
+ "תוכנה": [
+ {
+ "word_nikkud": "תָּכְנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3235-tochna",
+ "gender": "feminine"
+ }
+ ],
+ "תוכנת־": [
+ {
+ "word_nikkud": "תָּכְנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3235-tochna",
+ "gender": "feminine"
+ }
+ ],
+ "מתכון": [
+ {
+ "word_nikkud": "מַתְכּוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4944-matkon",
+ "gender": "masculine"
+ }
+ ],
+ "מתכונים": [
+ {
+ "word_nikkud": "מַתְכּוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4944-matkon",
+ "gender": "masculine"
+ }
+ ],
+ "מתכון־": [
+ {
+ "word_nikkud": "מַתְכּוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4944-matkon",
+ "gender": "masculine"
+ }
+ ],
+ "מתכוני־": [
+ {
+ "word_nikkud": "מַתְכּוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4944-matkon",
+ "gender": "masculine"
+ }
+ ],
+ "תכנון": [
+ {
+ "word_nikkud": "תִּכְנוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8999-tichnun",
+ "gender": "masculine"
+ }
+ ],
+ "תכנונים": [
+ {
+ "word_nikkud": "תִּכְנוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8999-tichnun",
+ "gender": "masculine"
+ }
+ ],
+ "תכנון־": [
+ {
+ "word_nikkud": "תִּכְנוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8999-tichnun",
+ "gender": "masculine"
+ }
+ ],
+ "תכנוני־": [
+ {
+ "word_nikkud": "תִּכְנוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8999-tichnun",
+ "gender": "masculine"
+ }
+ ],
+ "מתכנת": [
+ {
+ "word_nikkud": "מְתַכְנֵת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4824-metachnet",
+ "gender": "masculine"
+ }
+ ],
+ "מתכנתים": [
+ {
+ "word_nikkud": "מְתַכְנֵת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4824-metachnet",
+ "gender": "masculine"
+ }
+ ],
+ "מתכנת־": [
+ {
+ "word_nikkud": "מְתַכְנֵת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4824-metachnet",
+ "gender": "masculine"
+ }
+ ],
+ "מתכנתי־": [
+ {
+ "word_nikkud": "מְתַכְנֵת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4824-metachnet",
+ "gender": "masculine"
+ }
+ ],
+ "תכנות": [
+ {
+ "word_nikkud": "תִּכְנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4825-tichnut",
+ "gender": "masculine"
+ }
+ ],
+ "תכנות־": [
+ {
+ "word_nikkud": "תִּכְנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4825-tichnut",
+ "gender": "masculine"
+ }
+ ],
+ "תכיפות": [
+ {
+ "word_nikkud": "תְּכִיפוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7936-tchifut",
+ "gender": "feminine"
+ }
+ ],
+ "תכיפויות": [
+ {
+ "word_nikkud": "תְּכִיפוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7936-tchifut",
+ "gender": "feminine"
+ }
+ ],
+ "תכיפות־": [
+ {
+ "word_nikkud": "תְּכִיפוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7936-tchifut",
+ "gender": "feminine"
+ }
+ ],
+ "תכיפויות־": [
+ {
+ "word_nikkud": "תְּכִיפוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7936-tchifut",
+ "gender": "feminine"
+ }
+ ],
+ "תלייה": [
+ {
+ "word_nikkud": "תְּלִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6686-tliya",
+ "gender": "feminine"
+ }
+ ],
+ "תליות": [
+ {
+ "word_nikkud": "תְּלִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6686-tliya",
+ "gender": "feminine"
+ }
+ ],
+ "תליית־": [
+ {
+ "word_nikkud": "תְּלִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6686-tliya",
+ "gender": "feminine"
+ }
+ ],
+ "תליות־": [
+ {
+ "word_nikkud": "תְּלִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6686-tliya",
+ "gender": "feminine"
+ }
+ ],
+ "תלות": [
+ {
+ "word_nikkud": "תְּלוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3760-tlut",
+ "gender": "feminine"
+ }
+ ],
+ "תלויות": [
+ {
+ "word_nikkud": "תְּלוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3760-tlut",
+ "gender": "feminine"
+ }
+ ],
+ "תלות־": [
+ {
+ "word_nikkud": "תְּלוּת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3760-tlut",
+ "gender": "feminine"
+ }
+ ],
+ "תלויות־": [
+ {
+ "word_nikkud": "תְּלוּת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3760-tlut",
+ "gender": "feminine"
+ }
+ ],
+ "תליון": [
+ {
+ "word_nikkud": "תִּלְיוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3593-tilyon",
+ "gender": "masculine"
+ }
+ ],
+ "תליונות": [
+ {
+ "word_nikkud": "תִּלְיוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3593-tilyon",
+ "gender": "masculine"
+ }
+ ],
+ "תליון־": [
+ {
+ "word_nikkud": "תִּלְיוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3593-tilyon",
+ "gender": "masculine"
+ }
+ ],
+ "תליונות־": [
+ {
+ "word_nikkud": "תִּלְיוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3593-tilyon",
+ "gender": "masculine"
+ }
+ ],
+ "תלם": [
+ {
+ "word_nikkud": "תֶּלֶם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9247-telem",
+ "gender": "masculine"
+ }
+ ],
+ "תלמים": [
+ {
+ "word_nikkud": "תֶּלֶם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9247-telem",
+ "gender": "masculine"
+ }
+ ],
+ "תלם־": [
+ {
+ "word_nikkud": "תֶּלֶם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9247-telem",
+ "gender": "masculine"
+ }
+ ],
+ "תלמי־": [
+ {
+ "word_nikkud": "תֶּלֶם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9247-telem",
+ "gender": "masculine"
+ }
+ ],
+ "תלוש": [
+ {
+ "word_nikkud": "תְּלוּשׁ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8233-tlush",
+ "gender": "masculine"
+ }
+ ],
+ "תלושים": [
+ {
+ "word_nikkud": "תְּלוּשׁ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8233-tlush",
+ "gender": "masculine"
+ }
+ ],
+ "תלוש־": [
+ {
+ "word_nikkud": "תְּלוּשׁ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8233-tlush",
+ "gender": "masculine"
+ }
+ ],
+ "תלושי־": [
+ {
+ "word_nikkud": "תְּלוּשׁ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8233-tlush",
+ "gender": "masculine"
+ }
+ ],
+ "תלתל": [
+ {
+ "word_nikkud": "תַּלְתָּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6268-taltal",
+ "gender": "masculine"
+ }
+ ],
+ "תלתלים": [
+ {
+ "word_nikkud": "תַּלְתָּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6268-taltal",
+ "gender": "masculine"
+ }
+ ],
+ "תלתל־": [
+ {
+ "word_nikkud": "תַּלְתָּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6268-taltal",
+ "gender": "masculine"
+ }
+ ],
+ "תלתלי־": [
+ {
+ "word_nikkud": "תַּלְתָּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6268-taltal",
+ "gender": "masculine"
+ }
+ ],
+ "תימהון": [
+ {
+ "word_nikkud": "תִּמָּהוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7934-timahon",
+ "gender": "masculine"
+ }
+ ],
+ "תימהונות": [
+ {
+ "word_nikkud": "תִּמָּהוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7934-timahon",
+ "gender": "masculine"
+ }
+ ],
+ "תימהון־": [
+ {
+ "word_nikkud": "תִּמָּהוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7934-timahon",
+ "gender": "masculine"
+ }
+ ],
+ "תימהונות־": [
+ {
+ "word_nikkud": "תִּמָּהוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7934-timahon",
+ "gender": "masculine"
+ }
+ ],
+ "תמחור": [
+ {
+ "word_nikkud": "תִּמְחוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9280-timchur",
+ "gender": "masculine"
+ }
+ ],
+ "תמחור־": [
+ {
+ "word_nikkud": "תִּמְחוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9280-timchur",
+ "gender": "masculine"
+ }
+ ],
+ "תמיכה": [
+ {
+ "word_nikkud": "תְּמִיכָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3082-tmicha",
+ "gender": "feminine"
+ }
+ ],
+ "תמיכת־": [
+ {
+ "word_nikkud": "תְּמִיכָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3082-tmicha",
+ "gender": "feminine"
+ }
+ ],
+ "תמלול": [
+ {
+ "word_nikkud": "תִּמְלוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7107-timlul",
+ "gender": "masculine"
+ }
+ ],
+ "תמלולים": [
+ {
+ "word_nikkud": "תִּמְלוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7107-timlul",
+ "gender": "masculine"
+ }
+ ],
+ "תמלול־": [
+ {
+ "word_nikkud": "תִּמְלוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7107-timlul",
+ "gender": "masculine"
+ }
+ ],
+ "תמלולי־": [
+ {
+ "word_nikkud": "תִּמְלוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7107-timlul",
+ "gender": "masculine"
+ }
+ ],
+ "תום": [
+ {
+ "word_nikkud": "תֹּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8113-tom",
+ "gender": "masculine"
+ }
+ ],
+ "תום־": [
+ {
+ "word_nikkud": "תֹּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8113-tom",
+ "gender": "masculine"
+ }
+ ],
+ "תמנון": [
+ {
+ "word_nikkud": "תְּמָנוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8440-tmanun",
+ "gender": "masculine"
+ }
+ ],
+ "תמנונים": [
+ {
+ "word_nikkud": "תְּמָנוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8440-tmanun",
+ "gender": "masculine"
+ }
+ ],
+ "תמנון־": [
+ {
+ "word_nikkud": "תְּמָנוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8440-tmanun",
+ "gender": "masculine"
+ }
+ ],
+ "תמנוני־": [
+ {
+ "word_nikkud": "תְּמָנוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8440-tmanun",
+ "gender": "masculine"
+ }
+ ],
+ "תמסח": [
+ {
+ "word_nikkud": "תִּמְסָח",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7306-timsach",
+ "gender": ""
+ }
+ ],
+ "תמסחים": [
+ {
+ "word_nikkud": "תִּמְסָח",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7306-timsach",
+ "gender": ""
+ }
+ ],
+ "תמסח־": [
+ {
+ "word_nikkud": "תִּמְסָח",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7306-timsach",
+ "gender": ""
+ }
+ ],
+ "תמסחי־": [
+ {
+ "word_nikkud": "תִּמְסָח",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7306-timsach",
+ "gender": ""
+ }
+ ],
+ "תמר": [
+ {
+ "word_nikkud": "תָּמָר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6925-tamar",
+ "gender": "masculine"
+ }
+ ],
+ "תמרים": [
+ {
+ "word_nikkud": "תָּמָר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6925-tamar",
+ "gender": "masculine"
+ }
+ ],
+ "תמר־": [
+ {
+ "word_nikkud": "תָּמָר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6925-tamar",
+ "gender": "masculine"
+ }
+ ],
+ "תמרי־": [
+ {
+ "word_nikkud": "תָּמָר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6925-tamar",
+ "gender": "masculine"
+ }
+ ],
+ "תמרון": [
+ {
+ "word_nikkud": "תִּמְרוֹן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6497-timron",
+ "gender": "masculine"
+ }
+ ],
+ "תמרונים": [
+ {
+ "word_nikkud": "תִּמְרוֹן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6497-timron",
+ "gender": "masculine"
+ }
+ ],
+ "תמרון־": [
+ {
+ "word_nikkud": "תִּמְרוֹן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6497-timron",
+ "gender": "masculine"
+ }
+ ],
+ "תמרוני־": [
+ {
+ "word_nikkud": "תִּמְרוֹן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6497-timron",
+ "gender": "masculine"
+ }
+ ],
+ "תמרור": [
+ {
+ "word_nikkud": "תַּמְרוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7660-tamrur",
+ "gender": ""
+ }
+ ],
+ "תמרורים": [
+ {
+ "word_nikkud": "תַּמְרוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7660-tamrur",
+ "gender": ""
+ }
+ ],
+ "תמרור־": [
+ {
+ "word_nikkud": "תַּמְרוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7660-tamrur",
+ "gender": ""
+ }
+ ],
+ "תמרורי־": [
+ {
+ "word_nikkud": "תַּמְרוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7660-tamrur",
+ "gender": ""
+ }
+ ],
+ "תן": [
+ {
+ "word_nikkud": "תַּןּ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7871-tan",
+ "gender": "masculine"
+ }
+ ],
+ "תנים": [
+ {
+ "word_nikkud": "תַּןּ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7871-tan",
+ "gender": "masculine"
+ }
+ ],
+ "תן־": [
+ {
+ "word_nikkud": "תַּןּ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7871-tan",
+ "gender": "masculine"
+ }
+ ],
+ "תני־": [
+ {
+ "word_nikkud": "תַּןּ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7871-tan",
+ "gender": "masculine"
+ }
+ ],
+ "תנאי": [
+ {
+ "word_nikkud": "תְּנַאי",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3639-tnay",
+ "gender": "masculine"
+ }
+ ],
+ "תנאים": [
+ {
+ "word_nikkud": "תְּנַאי",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3639-tnay",
+ "gender": "masculine"
+ }
+ ],
+ "תנאי־": [
+ {
+ "word_nikkud": "תְּנַאי",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3639-tnay",
+ "gender": "masculine"
+ },
+ {
+ "word_nikkud": "תְּנַאי",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3639-tnay",
+ "gender": "masculine"
+ }
+ ],
+ "התניה": [
+ {
+ "word_nikkud": "הַתְנָיָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8882-hatnaya",
+ "gender": "feminine"
+ }
+ ],
+ "התניות": [
+ {
+ "word_nikkud": "הַתְנָיָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8882-hatnaya",
+ "gender": "feminine"
+ }
+ ],
+ "התניית־": [
+ {
+ "word_nikkud": "הַתְנָיָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8882-hatnaya",
+ "gender": "feminine"
+ }
+ ],
+ "התניות־": [
+ {
+ "word_nikkud": "הַתְנָיָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8882-hatnaya",
+ "gender": "feminine"
+ }
+ ],
+ "תנין": [
+ {
+ "word_nikkud": "תַּנִּין",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6535-tanin",
+ "gender": "masculine"
+ }
+ ],
+ "תנינים": [
+ {
+ "word_nikkud": "תַּנִּין",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6535-tanin",
+ "gender": "masculine"
+ }
+ ],
+ "תנין־": [
+ {
+ "word_nikkud": "תַּנִּין",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6535-tanin",
+ "gender": "masculine"
+ }
+ ],
+ "תניני־": [
+ {
+ "word_nikkud": "תַּנִּין",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6535-tanin",
+ "gender": "masculine"
+ }
+ ],
+ "תסכול": [
+ {
+ "word_nikkud": "תִּסְכּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3145-tiskul",
+ "gender": "masculine"
+ }
+ ],
+ "תסכולים": [
+ {
+ "word_nikkud": "תִּסְכּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3145-tiskul",
+ "gender": "masculine"
+ }
+ ],
+ "תסכול־": [
+ {
+ "word_nikkud": "תִּסְכּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3145-tiskul",
+ "gender": "masculine"
+ }
+ ],
+ "תסכולי־": [
+ {
+ "word_nikkud": "תִּסְכּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3145-tiskul",
+ "gender": "masculine"
+ }
+ ],
+ "תסיסה": [
+ {
+ "word_nikkud": "תְּסִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6783-tsisa",
+ "gender": "feminine"
+ }
+ ],
+ "תסיסות": [
+ {
+ "word_nikkud": "תְּסִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6783-tsisa",
+ "gender": "feminine"
+ }
+ ],
+ "תסיסת־": [
+ {
+ "word_nikkud": "תְּסִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6783-tsisa",
+ "gender": "feminine"
+ }
+ ],
+ "תסיסות־": [
+ {
+ "word_nikkud": "תְּסִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6783-tsisa",
+ "gender": "feminine"
+ }
+ ],
+ "תסס": [
+ {
+ "word_nikkud": "תַּסָּס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6784-tasas",
+ "gender": "masculine"
+ }
+ ],
+ "תססים": [
+ {
+ "word_nikkud": "תַּסָּס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6784-tasas",
+ "gender": "masculine"
+ }
+ ],
+ "תסס־": [
+ {
+ "word_nikkud": "תַּסָּס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6784-tasas",
+ "gender": "masculine"
+ }
+ ],
+ "תססי־": [
+ {
+ "word_nikkud": "תַּסָּס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6784-tasas",
+ "gender": "masculine"
+ }
+ ],
+ "תיעוב": [
+ {
+ "word_nikkud": "תִּעוּב",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9089-tiuv",
+ "gender": "masculine"
+ }
+ ],
+ "תיעובים": [
+ {
+ "word_nikkud": "תִּעוּב",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9089-tiuv",
+ "gender": "masculine"
+ }
+ ],
+ "תיעוב־": [
+ {
+ "word_nikkud": "תִּעוּב",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9089-tiuv",
+ "gender": "masculine"
+ }
+ ],
+ "תיעובי־": [
+ {
+ "word_nikkud": "תִּעוּב",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9089-tiuv",
+ "gender": "masculine"
+ }
+ ],
+ "תיעוד": [
+ {
+ "word_nikkud": "תִּעוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4690-tiud",
+ "gender": "masculine"
+ }
+ ],
+ "תיעודים": [
+ {
+ "word_nikkud": "תִּעוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4690-tiud",
+ "gender": "masculine"
+ }
+ ],
+ "תיעוד־": [
+ {
+ "word_nikkud": "תִּעוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4690-tiud",
+ "gender": "masculine"
+ }
+ ],
+ "תיעודי־": [
+ {
+ "word_nikkud": "תִּעוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4690-tiud",
+ "gender": "masculine"
+ }
+ ],
+ "תעייה": [
+ {
+ "word_nikkud": "תְּעִיָּה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8623-teiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעיות": [
+ {
+ "word_nikkud": "תְּעִיָּה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8623-teiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעיית־": [
+ {
+ "word_nikkud": "תְּעִיָּה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8623-teiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעיות־": [
+ {
+ "word_nikkud": "תְּעִיָּה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8623-teiya",
+ "gender": "feminine"
+ }
+ ],
+ "תעתוע": [
+ {
+ "word_nikkud": "תַּעְתּוּעַ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7511-taatua",
+ "gender": "masculine"
+ }
+ ],
+ "תעתועים": [
+ {
+ "word_nikkud": "תַּעְתּוּעַ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7511-taatua",
+ "gender": "masculine"
+ }
+ ],
+ "תעתוע־": [
+ {
+ "word_nikkud": "תַּעְתּוּעַ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7511-taatua",
+ "gender": "masculine"
+ }
+ ],
+ "תעתועי־": [
+ {
+ "word_nikkud": "תַּעְתּוּעַ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7511-taatua",
+ "gender": "masculine"
+ }
+ ],
+ "תעתוק": [
+ {
+ "word_nikkud": "תִּעְתּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8697-tiatuk",
+ "gender": "masculine"
+ }
+ ],
+ "תעתוקים": [
+ {
+ "word_nikkud": "תִּעְתּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8697-tiatuk",
+ "gender": "masculine"
+ }
+ ],
+ "תעתוק־": [
+ {
+ "word_nikkud": "תִּעְתּוּק",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8697-tiatuk",
+ "gender": "masculine"
+ }
+ ],
+ "תעתוקי־": [
+ {
+ "word_nikkud": "תִּעְתּוּק",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8697-tiatuk",
+ "gender": "masculine"
+ }
+ ],
+ "תפוז": [
+ {
+ "word_nikkud": "תַּפּוּז",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4812-tapuz",
+ "gender": "masculine"
+ }
+ ],
+ "תפוזים": [
+ {
+ "word_nikkud": "תַּפּוּז",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4812-tapuz",
+ "gender": "masculine"
+ }
+ ],
+ "תפוז־": [
+ {
+ "word_nikkud": "תַּפּוּז",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4812-tapuz",
+ "gender": "masculine"
+ }
+ ],
+ "תפוזי־": [
+ {
+ "word_nikkud": "תַּפּוּז",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4812-tapuz",
+ "gender": "masculine"
+ }
+ ],
+ "תפוח אדמה": [
+ {
+ "word_nikkud": "תַּפּוּחַ אֲדָמָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6995-tapuach-adama",
+ "gender": ""
+ }
+ ],
+ "תפוחי אדמה": [
+ {
+ "word_nikkud": "תַּפּוּחַ אֲדָמָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6995-tapuach-adama",
+ "gender": ""
+ }
+ ],
+ "תפיחה": [
+ {
+ "word_nikkud": "תְּפִיחָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4263-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "תפיחות": [
+ {
+ "word_nikkud": "תְּפִיחָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4263-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "תפיחת־": [
+ {
+ "word_nikkud": "תְּפִיחָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4263-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "תפיחות־": [
+ {
+ "word_nikkud": "תְּפִיחָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4263-tficha",
+ "gender": "feminine"
+ }
+ ],
+ "התפלה": [
+ {
+ "word_nikkud": "הַתְפָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4203-hatpala",
+ "gender": "feminine"
+ }
+ ],
+ "התפלות": [
+ {
+ "word_nikkud": "הַתְפָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4203-hatpala",
+ "gender": "feminine"
+ }
+ ],
+ "התפלת־": [
+ {
+ "word_nikkud": "הַתְפָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4203-hatpala",
+ "gender": "feminine"
+ }
+ ],
+ "התפלות־": [
+ {
+ "word_nikkud": "הַתְפָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4203-hatpala",
+ "gender": "feminine"
+ }
+ ],
+ "תפיסה": [
+ {
+ "word_nikkud": "תְּפִיסָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3073-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפיסות": [
+ {
+ "word_nikkud": "תְּפִיסָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3073-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפיסת־": [
+ {
+ "word_nikkud": "תְּפִיסָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3073-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפיסות־": [
+ {
+ "word_nikkud": "תְּפִיסָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3073-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפעול": [
+ {
+ "word_nikkud": "תִּפְעוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4504-tiful",
+ "gender": "masculine"
+ }
+ ],
+ "תפעולים": [
+ {
+ "word_nikkud": "תִּפְעוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4504-tiful",
+ "gender": "masculine"
+ }
+ ],
+ "תפעול־": [
+ {
+ "word_nikkud": "תִּפְעוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4504-tiful",
+ "gender": "masculine"
+ }
+ ],
+ "תפעולי־": [
+ {
+ "word_nikkud": "תִּפְעוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4504-tiful",
+ "gender": "masculine"
+ }
+ ],
+ "תוף": [
+ {
+ "word_nikkud": "תֹּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4851-tof",
+ "gender": "masculine"
+ }
+ ],
+ "תופים": [
+ {
+ "word_nikkud": "תֹּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4851-tof",
+ "gender": "masculine"
+ }
+ ],
+ "תוף־": [
+ {
+ "word_nikkud": "תֹּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4851-tof",
+ "gender": "masculine"
+ }
+ ],
+ "תופי־": [
+ {
+ "word_nikkud": "תֹּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4851-tof",
+ "gender": "masculine"
+ }
+ ],
+ "תפיפה": [
+ {
+ "word_nikkud": "תְּפִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8509-tfifa",
+ "gender": "feminine"
+ }
+ ],
+ "תפיפות": [
+ {
+ "word_nikkud": "תְּפִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8509-tfifa",
+ "gender": "feminine"
+ }
+ ],
+ "תפיפת־": [
+ {
+ "word_nikkud": "תְּפִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8509-tfifa",
+ "gender": "feminine"
+ }
+ ],
+ "תפיפות־": [
+ {
+ "word_nikkud": "תְּפִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8509-tfifa",
+ "gender": "feminine"
+ }
+ ],
+ "תפקוד": [
+ {
+ "word_nikkud": "תִּפְקוּד",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8018-tifkud",
+ "gender": "masculine"
+ }
+ ],
+ "תפקודים": [
+ {
+ "word_nikkud": "תִּפְקוּד",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8018-tifkud",
+ "gender": "masculine"
+ }
+ ],
+ "תפקוד־": [
+ {
+ "word_nikkud": "תִּפְקוּד",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8018-tifkud",
+ "gender": "masculine"
+ }
+ ],
+ "תפקודי־": [
+ {
+ "word_nikkud": "תִּפְקוּד",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8018-tifkud",
+ "gender": "masculine"
+ }
+ ],
+ "תפירה": [
+ {
+ "word_nikkud": "תְּפִירָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "2839-tfira",
+ "gender": "feminine"
+ }
+ ],
+ "תפירת־": [
+ {
+ "word_nikkud": "תְּפִירָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "2839-tfira",
+ "gender": "feminine"
+ }
+ ],
+ "תפר": [
+ {
+ "word_nikkud": "תֶּפֶר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3189-tefer",
+ "gender": "masculine"
+ }
+ ],
+ "תפרים": [
+ {
+ "word_nikkud": "תֶּפֶר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3189-tefer",
+ "gender": "masculine"
+ }
+ ],
+ "תפר־": [
+ {
+ "word_nikkud": "תֶּפֶר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3189-tefer",
+ "gender": "masculine"
+ }
+ ],
+ "תפרי־": [
+ {
+ "word_nikkud": "תֶּפֶר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3189-tefer",
+ "gender": "masculine"
+ }
+ ],
+ "מתפרה": [
+ {
+ "word_nikkud": "מִתְפָּרָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3574-mitpara",
+ "gender": "masculine"
+ }
+ ],
+ "מתפרות": [
+ {
+ "word_nikkud": "מִתְפָּרָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3574-mitpara",
+ "gender": "masculine"
+ }
+ ],
+ "מתפרת־": [
+ {
+ "word_nikkud": "מִתְפָּרָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3574-mitpara",
+ "gender": "masculine"
+ }
+ ],
+ "מתפרות־": [
+ {
+ "word_nikkud": "מִתְפָּרָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3574-mitpara",
+ "gender": "masculine"
+ }
+ ],
+ "תפישה": [
+ {
+ "word_nikkud": "תְּפִישָׂה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3078-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפישות": [
+ {
+ "word_nikkud": "תְּפִישָׂה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3078-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפישת־": [
+ {
+ "word_nikkud": "תְּפִישָׂה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3078-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תפישות־": [
+ {
+ "word_nikkud": "תְּפִישָׂה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3078-tfisa",
+ "gender": "feminine"
+ }
+ ],
+ "תקלה": [
+ {
+ "word_nikkud": "תַּקָּלָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8650-takala",
+ "gender": "feminine"
+ }
+ ],
+ "תקלות": [
+ {
+ "word_nikkud": "תַּקָּלָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8650-takala",
+ "gender": "feminine"
+ }
+ ],
+ "תקלת־": [
+ {
+ "word_nikkud": "תַּקָּלָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8650-takala",
+ "gender": "feminine"
+ }
+ ],
+ "תקלות־": [
+ {
+ "word_nikkud": "תַּקָּלָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8650-takala",
+ "gender": "feminine"
+ }
+ ],
+ "תקליטור": [
+ {
+ "word_nikkud": "תַּקְלִיטוֹר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8355-taklitor",
+ "gender": "masculine"
+ }
+ ],
+ "תקליטורים": [
+ {
+ "word_nikkud": "תַּקְלִיטוֹר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8355-taklitor",
+ "gender": "masculine"
+ }
+ ],
+ "תקליטור־": [
+ {
+ "word_nikkud": "תַּקְלִיטוֹר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8355-taklitor",
+ "gender": "masculine"
+ }
+ ],
+ "תקליטורי־": [
+ {
+ "word_nikkud": "תַּקְלִיטוֹר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8355-taklitor",
+ "gender": "masculine"
+ }
+ ],
+ "תיקון": [
+ {
+ "word_nikkud": "תִּקּוּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7003-tikun",
+ "gender": "masculine"
+ }
+ ],
+ "תיקונים": [
+ {
+ "word_nikkud": "תִּקּוּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7003-tikun",
+ "gender": "masculine"
+ }
+ ],
+ "תיקון־": [
+ {
+ "word_nikkud": "תִּקּוּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7003-tikun",
+ "gender": "masculine"
+ }
+ ],
+ "תיקוני־": [
+ {
+ "word_nikkud": "תִּקּוּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7003-tikun",
+ "gender": "masculine"
+ }
+ ],
+ "תקן": [
+ {
+ "word_nikkud": "תֶּקֶן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3190-teken",
+ "gender": "masculine"
+ }
+ ],
+ "תקנים": [
+ {
+ "word_nikkud": "תֶּקֶן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3190-teken",
+ "gender": "masculine"
+ }
+ ],
+ "תקן־": [
+ {
+ "word_nikkud": "תֶּקֶן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3190-teken",
+ "gender": "masculine"
+ }
+ ],
+ "תקני־": [
+ {
+ "word_nikkud": "תֶּקֶן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3190-teken",
+ "gender": "masculine"
+ }
+ ],
+ "התקנה": [
+ {
+ "word_nikkud": "הַתְקָנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4420-hatkana",
+ "gender": "feminine"
+ }
+ ],
+ "התקנות": [
+ {
+ "word_nikkud": "הַתְקָנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4420-hatkana",
+ "gender": "feminine"
+ }
+ ],
+ "התקנת־": [
+ {
+ "word_nikkud": "הַתְקָנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4420-hatkana",
+ "gender": "feminine"
+ }
+ ],
+ "התקנות־": [
+ {
+ "word_nikkud": "הַתְקָנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4420-hatkana",
+ "gender": "feminine"
+ }
+ ],
+ "התקן": [
+ {
+ "word_nikkud": "הֶתְקֵן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8210-hetken",
+ "gender": "masculine"
+ }
+ ],
+ "התקנים": [
+ {
+ "word_nikkud": "הֶתְקֵן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8210-hetken",
+ "gender": "masculine"
+ }
+ ],
+ "התקן־": [
+ {
+ "word_nikkud": "הֶתְקֵן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8210-hetken",
+ "gender": "masculine"
+ }
+ ],
+ "התקני־": [
+ {
+ "word_nikkud": "הֶתְקֵן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8210-hetken",
+ "gender": "masculine"
+ }
+ ],
+ "מתקן": [
+ {
+ "word_nikkud": "מְתַקֵּן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8247-metaken",
+ "gender": "masculine"
+ }
+ ],
+ "מתקנים": [
+ {
+ "word_nikkud": "מְתַקֵּן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8247-metaken",
+ "gender": "masculine"
+ }
+ ],
+ "מתקן־": [
+ {
+ "word_nikkud": "מְתַקֵּן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8247-metaken",
+ "gender": "masculine"
+ }
+ ],
+ "מתקני־": [
+ {
+ "word_nikkud": "מְתַקֵּן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8247-metaken",
+ "gender": "masculine"
+ }
+ ],
+ "תקנה": [
+ {
+ "word_nikkud": "תַּקָּנָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "9028-takana",
+ "gender": "feminine"
+ }
+ ],
+ "תקנות": [
+ {
+ "word_nikkud": "תַּקָּנָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "9028-takana",
+ "gender": "feminine"
+ }
+ ],
+ "תקנת־": [
+ {
+ "word_nikkud": "תַּקָּנָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "9028-takana",
+ "gender": "feminine"
+ }
+ ],
+ "תקנות־": [
+ {
+ "word_nikkud": "תַּקָּנָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "9028-takana",
+ "gender": "feminine"
+ }
+ ],
+ "תקע": [
+ {
+ "word_nikkud": "תֶּקַע",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5814-teka",
+ "gender": "masculine"
+ }
+ ],
+ "תקעים": [
+ {
+ "word_nikkud": "תֶּקַע",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5814-teka",
+ "gender": "masculine"
+ }
+ ],
+ "תקע־": [
+ {
+ "word_nikkud": "תֶּקַע",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5814-teka",
+ "gender": "masculine"
+ }
+ ],
+ "תקעי־": [
+ {
+ "word_nikkud": "תֶּקַע",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5814-teka",
+ "gender": "masculine"
+ }
+ ],
+ "תקיעה": [
+ {
+ "word_nikkud": "תְּקִיעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7437-tkia",
+ "gender": "feminine"
+ }
+ ],
+ "תקיעות": [
+ {
+ "word_nikkud": "תְּקִיעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7437-tkia",
+ "gender": "feminine"
+ }
+ ],
+ "תקיעת־": [
+ {
+ "word_nikkud": "תְּקִיעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7437-tkia",
+ "gender": "feminine"
+ }
+ ],
+ "תקיעות־": [
+ {
+ "word_nikkud": "תְּקִיעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7437-tkia",
+ "gender": "feminine"
+ }
+ ],
+ "תוקפנות": [
+ {
+ "word_nikkud": "תּוֹקְפָנוּת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7518-tokfanut",
+ "gender": "feminine"
+ }
+ ],
+ "תוקפנות־": [
+ {
+ "word_nikkud": "תּוֹקְפָנוּת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7518-tokfanut",
+ "gender": "feminine"
+ }
+ ],
+ "תיקוף": [
+ {
+ "word_nikkud": "תִּקּוּף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5687-tikuf",
+ "gender": "masculine"
+ }
+ ],
+ "תיקופים": [
+ {
+ "word_nikkud": "תִּקּוּף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5687-tikuf",
+ "gender": "masculine"
+ }
+ ],
+ "תיקוף־": [
+ {
+ "word_nikkud": "תִּקּוּף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5687-tikuf",
+ "gender": "masculine"
+ }
+ ],
+ "תיקופי־": [
+ {
+ "word_nikkud": "תִּקּוּף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5687-tikuf",
+ "gender": "masculine"
+ }
+ ],
+ "מתקפה": [
+ {
+ "word_nikkud": "מִתְקָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4397-mitkafa",
+ "gender": "feminine"
+ }
+ ],
+ "מתקפות": [
+ {
+ "word_nikkud": "מִתְקָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4397-mitkafa",
+ "gender": "feminine"
+ }
+ ],
+ "מתקפת־": [
+ {
+ "word_nikkud": "מִתְקָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4397-mitkafa",
+ "gender": "feminine"
+ }
+ ],
+ "מתקפות־": [
+ {
+ "word_nikkud": "מִתְקָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4397-mitkafa",
+ "gender": "feminine"
+ }
+ ],
+ "תוקף": [
+ {
+ "word_nikkud": "תֹּקֶף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3306-tokef",
+ "gender": "masculine"
+ }
+ ],
+ "תקפים": [
+ {
+ "word_nikkud": "תֹּקֶף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3306-tokef",
+ "gender": "masculine"
+ }
+ ],
+ "תוקף־": [
+ {
+ "word_nikkud": "תֹּקֶף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3306-tokef",
+ "gender": "masculine"
+ }
+ ],
+ "תקפי־": [
+ {
+ "word_nikkud": "תֹּקֶף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3306-tokef",
+ "gender": "masculine"
+ }
+ ],
+ "התקף": [
+ {
+ "word_nikkud": "הֶתְקֵף",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5377-hetkef",
+ "gender": "masculine"
+ }
+ ],
+ "התקפים": [
+ {
+ "word_nikkud": "הֶתְקֵף",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5377-hetkef",
+ "gender": "masculine"
+ }
+ ],
+ "התקף־": [
+ {
+ "word_nikkud": "הֶתְקֵף",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "5377-hetkef",
+ "gender": "masculine"
+ }
+ ],
+ "התקפי־": [
+ {
+ "word_nikkud": "הֶתְקֵף",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "5377-hetkef",
+ "gender": "masculine"
+ }
+ ],
+ "תקיפה": [
+ {
+ "word_nikkud": "תְּקִיפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7408-tkifa",
+ "gender": "feminine"
+ }
+ ],
+ "תקיפות": [
+ {
+ "word_nikkud": "תְּקִיפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7408-tkifa",
+ "gender": "feminine"
+ }
+ ],
+ "תקיפת־": [
+ {
+ "word_nikkud": "תְּקִיפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7408-tkifa",
+ "gender": "feminine"
+ }
+ ],
+ "תקיפות־": [
+ {
+ "word_nikkud": "תְּקִיפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7408-tkifa",
+ "gender": "feminine"
+ }
+ ],
+ "תוקפן": [
+ {
+ "word_nikkud": "תּוֹקְפָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "7517-tokfan",
+ "gender": "masculine"
+ }
+ ],
+ "תוקפנים": [
+ {
+ "word_nikkud": "תּוֹקְפָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "7517-tokfan",
+ "gender": "masculine"
+ }
+ ],
+ "תוקפן־": [
+ {
+ "word_nikkud": "תּוֹקְפָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "7517-tokfan",
+ "gender": "masculine"
+ }
+ ],
+ "תוקפני־": [
+ {
+ "word_nikkud": "תּוֹקְפָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "7517-tokfan",
+ "gender": "masculine"
+ }
+ ],
+ "התקפה": [
+ {
+ "word_nikkud": "הַתְקָפָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8575-hatkafa",
+ "gender": "feminine"
+ }
+ ],
+ "התקפות": [
+ {
+ "word_nikkud": "הַתְקָפָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8575-hatkafa",
+ "gender": "feminine"
+ }
+ ],
+ "התקפת־": [
+ {
+ "word_nikkud": "הַתְקָפָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8575-hatkafa",
+ "gender": "feminine"
+ }
+ ],
+ "התקפות־": [
+ {
+ "word_nikkud": "הַתְקָפָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8575-hatkafa",
+ "gender": "feminine"
+ }
+ ],
+ "תקשור": [
+ {
+ "word_nikkud": "תִּקְשׁוּר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3669-tikshur",
+ "gender": "masculine"
+ }
+ ],
+ "תקשורים": [
+ {
+ "word_nikkud": "תִּקְשׁוּר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3669-tikshur",
+ "gender": "masculine"
+ }
+ ],
+ "תקשור־": [
+ {
+ "word_nikkud": "תִּקְשׁוּר",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3669-tikshur",
+ "gender": "masculine"
+ }
+ ],
+ "תקשורי־": [
+ {
+ "word_nikkud": "תִּקְשׁוּר",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3669-tikshur",
+ "gender": "masculine"
+ }
+ ],
+ "תקתוק": [
+ {
+ "word_nikkud": "תִּקְתּוּק",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5259-tiktuk",
+ "gender": "masculine"
+ }
+ ],
+ "תקתוק־": [
+ {
+ "word_nikkud": "תִּקְתּוּק",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5259-tiktuk",
+ "gender": "masculine"
+ }
+ ],
+ "התראה": [
+ {
+ "word_nikkud": "הַתְרָאָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8353-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "התראות": [
+ {
+ "word_nikkud": "הַתְרָאָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8353-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "התראת־": [
+ {
+ "word_nikkud": "הַתְרָאָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8353-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "התראות־": [
+ {
+ "word_nikkud": "הַתְרָאָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8353-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "תרגול": [
+ {
+ "word_nikkud": "תִּרְגּוּל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6043-tirgul",
+ "gender": "masculine"
+ }
+ ],
+ "תרגולים": [
+ {
+ "word_nikkud": "תִּרְגּוּל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6043-tirgul",
+ "gender": "masculine"
+ }
+ ],
+ "תרגול־": [
+ {
+ "word_nikkud": "תִּרְגּוּל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6043-tirgul",
+ "gender": "masculine"
+ }
+ ],
+ "תרגולי־": [
+ {
+ "word_nikkud": "תִּרְגּוּל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6043-tirgul",
+ "gender": "masculine"
+ }
+ ],
+ "תרגום": [
+ {
+ "word_nikkud": "תַּרְגּוּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4698-targum",
+ "gender": ""
+ }
+ ],
+ "תרגומים": [
+ {
+ "word_nikkud": "תַּרְגּוּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4698-targum",
+ "gender": ""
+ }
+ ],
+ "תרגום־": [
+ {
+ "word_nikkud": "תַּרְגּוּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4698-targum",
+ "gender": ""
+ }
+ ],
+ "תרגומי־": [
+ {
+ "word_nikkud": "תַּרְגּוּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4698-targum",
+ "gender": ""
+ }
+ ],
+ "מתורגמן": [
+ {
+ "word_nikkud": "מְתֻרְגְּמָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4699-meturgeman",
+ "gender": ""
+ }
+ ],
+ "מתורגמנים": [
+ {
+ "word_nikkud": "מְתֻרְגְּמָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4699-meturgeman",
+ "gender": ""
+ }
+ ],
+ "מתורגמן־": [
+ {
+ "word_nikkud": "מְתֻרְגְּמָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4699-meturgeman",
+ "gender": ""
+ }
+ ],
+ "מתורגמני־": [
+ {
+ "word_nikkud": "מְתֻרְגְּמָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4699-meturgeman",
+ "gender": ""
+ }
+ ],
+ "מתרגם": [
+ {
+ "word_nikkud": "מְתַרְגֵּם",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4701-metargem",
+ "gender": "masculine"
+ }
+ ],
+ "מתרגמים": [
+ {
+ "word_nikkud": "מְתַרְגֵּם",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4701-metargem",
+ "gender": "masculine"
+ }
+ ],
+ "מתרגם־": [
+ {
+ "word_nikkud": "מְתַרְגֵּם",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4701-metargem",
+ "gender": "masculine"
+ }
+ ],
+ "מתרגמי־": [
+ {
+ "word_nikkud": "מְתַרְגֵּם",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4701-metargem",
+ "gender": "masculine"
+ }
+ ],
+ "תורגמן": [
+ {
+ "word_nikkud": "תֻּרְגְּמָן",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "4700-turgeman",
+ "gender": ""
+ }
+ ],
+ "תורגמנים": [
+ {
+ "word_nikkud": "תֻּרְגְּמָן",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "4700-turgeman",
+ "gender": ""
+ }
+ ],
+ "תורגמן־": [
+ {
+ "word_nikkud": "תֻּרְגְּמָן",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "4700-turgeman",
+ "gender": ""
+ }
+ ],
+ "תורגמני־": [
+ {
+ "word_nikkud": "תֻּרְגְּמָן",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "4700-turgeman",
+ "gender": ""
+ }
+ ],
+ "תרנגול": [
+ {
+ "word_nikkud": "תַּרְנְגוֹל",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6916-tarnegol",
+ "gender": "masculine"
+ }
+ ],
+ "תרנגולים": [
+ {
+ "word_nikkud": "תַּרְנְגוֹל",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6916-tarnegol",
+ "gender": "masculine"
+ }
+ ],
+ "תרנגול־": [
+ {
+ "word_nikkud": "תַּרְנְגוֹל",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6916-tarnegol",
+ "gender": "masculine"
+ }
+ ],
+ "תרנגולי־": [
+ {
+ "word_nikkud": "תַּרְנְגוֹל",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6916-tarnegol",
+ "gender": "masculine"
+ }
+ ],
+ "תרנגולת": [
+ {
+ "word_nikkud": "תַּרְנְגֹלֶת",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "6917-tarnegolet",
+ "gender": "feminine"
+ }
+ ],
+ "תרנגולות": [
+ {
+ "word_nikkud": "תַּרְנְגֹלֶת",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "6917-tarnegolet",
+ "gender": "feminine"
+ }
+ ],
+ "תרנגולת־": [
+ {
+ "word_nikkud": "תַּרְנְגֹלֶת",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "6917-tarnegolet",
+ "gender": "feminine"
+ }
+ ],
+ "תרנגולות־": [
+ {
+ "word_nikkud": "תַּרְנְגֹלֶת",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "6917-tarnegolet",
+ "gender": "feminine"
+ }
+ ],
+ "תריס": [
+ {
+ "word_nikkud": "תְּרִיס",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3808-tris",
+ "gender": "masculine"
+ }
+ ],
+ "תריסים": [
+ {
+ "word_nikkud": "תְּרִיס",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3808-tris",
+ "gender": "masculine"
+ }
+ ],
+ "תריס־": [
+ {
+ "word_nikkud": "תְּרִיס",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3808-tris",
+ "gender": "masculine"
+ }
+ ],
+ "תריסי־": [
+ {
+ "word_nikkud": "תְּרִיס",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3808-tris",
+ "gender": "masculine"
+ }
+ ],
+ "התרעה": [
+ {
+ "word_nikkud": "הַתְרָעָה",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "8947-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "התרעות": [
+ {
+ "word_nikkud": "הַתְרָעָה",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "8947-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "התרעת־": [
+ {
+ "word_nikkud": "הַתְרָעָה",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "8947-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "התרעות־": [
+ {
+ "word_nikkud": "הַתְרָעָה",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "8947-hatraa",
+ "gender": "feminine"
+ }
+ ],
+ "תירוץ": [
+ {
+ "word_nikkud": "תֵּרוּץ",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "3912-terutz",
+ "gender": "masculine"
+ }
+ ],
+ "תירוצים": [
+ {
+ "word_nikkud": "תֵּרוּץ",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "3912-terutz",
+ "gender": "masculine"
+ }
+ ],
+ "תירוץ־": [
+ {
+ "word_nikkud": "תֵּרוּץ",
+ "form_type": "construct_singular",
+ "pos": "Noun",
+ "slug": "3912-terutz",
+ "gender": "masculine"
+ }
+ ],
+ "תירוצי־": [
+ {
+ "word_nikkud": "תֵּרוּץ",
+ "form_type": "construct_plural",
+ "pos": "Noun",
+ "slug": "3912-terutz",
+ "gender": "masculine"
+ }
+ ],
+ "תשר": [
+ {
+ "word_nikkud": "תֶּשֶׁר",
+ "form_type": "absolute_singular",
+ "pos": "Noun",
+ "slug": "5079-tesher",
+ "gender": "masculine"
+ }
+ ],
+ "תשר־": [
+ {
+ "word_nikkud": "תֶּשֶׁר",
+ "form_type": "absolute_plural",
+ "pos": "Noun",
+ "slug": "5079-tesher",
+ "gender": "masculine"
}
]
}
\ No newline at end of file
diff --git a/data/noun_plurals.json b/data/noun_plurals.json
index 16faa53..017d2c3 100644
--- a/data/noun_plurals.json
+++ b/data/noun_plurals.json
@@ -17336,15 +17336,15 @@
"mishkal": ""
},
"שנה": {
- "slug": "5410-shena",
- "singular": "שֵׁנָה",
- "singular_audio": "https://audio.pealim.com/v0/e2/e2ce4t7qw0fv.mp3",
- "plural": "",
- "plural_audio": "",
- "construct_singular": "שֵׁנַת־",
- "construct_plural": "",
+ "slug": "4065-shana",
+ "singular": "שָׁנָה",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2d68zsryw4c.mp3",
+ "plural": "שָׁנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qs8gkgr6513b.mp3",
+ "construct_singular": "שְׁנַת־",
+ "construct_plural": "שְׁנוֹת־",
"gender": "feminine",
- "mishkal": "ktela"
+ "mishkal": ""
},
"מושיע": {
"slug": "8940-moshia",
@@ -37453,5 +37453,9058 @@
"construct_plural": "",
"gender": "masculine",
"mishkal": "kattal"
+ },
+ "קנוח": {
+ "slug": "7111-kinuach",
+ "singular": "קִנּוּחַ",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1lrt9sqtydzuq.mp3",
+ "plural": "קִנּוּחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v94iaaxvxuj2.mp3",
+ "construct_singular": "קִנּוּחַ־",
+ "construct_plural": "קִנּוּחֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "הקנטה": {
+ "slug": "2999-haknata",
+ "singular": "הַקְנָטָה",
+ "singular_audio": "https://audio.pealim.com/v0/zd/zdj27cvdzduv.mp3",
+ "plural": "הַקְנָטוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/nd/ndjake7tdsu1.mp3",
+ "construct_singular": "הַקְנָטַת־",
+ "construct_plural": "הַקְנָטוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "קניה": {
+ "slug": "4637-kniya",
+ "singular": "קְנִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/4s/4sigzxzje3iy.mp3",
+ "plural": "קְנִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/jz/jzdvat5ogr7g.mp3",
+ "construct_singular": "קְנִיַּת־",
+ "construct_plural": "קְנִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קנין": {
+ "slug": "8528-kinyan",
+ "singular": "קִנְיָן",
+ "singular_audio": "https://audio.pealim.com/v0/zq/zqlboovjhdxr.mp3",
+ "plural": "קִנְיָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/gm/gmitfhhlca64.mp3",
+ "construct_singular": "קִנְיַן־",
+ "construct_plural": "קִנְיְנֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "קניון": {
+ "slug": "5992-kanyon",
+ "singular": "קַנְיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/16/16manaqozdqm.mp3",
+ "plural": "קַנְיוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/pg/pgphofgoz0x.mp3",
+ "construct_singular": "קַנְיוֹן־",
+ "construct_plural": "קַנְיוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קן": {
+ "slug": "7884-ken",
+ "singular": "קֵן",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v992uqo12o.mp3",
+ "plural": "קִנִּים",
+ "plural_audio": "https://audio.pealim.com/v0/15/15wq20l7nis40.mp3",
+ "construct_singular": "קַן־",
+ "construct_plural": "קִנֵּי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קנס": {
+ "slug": "6727-knas",
+ "singular": "קְנָס",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1hta5ejsw7ws8.mp3",
+ "plural": "קְנָסוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/h8/h8fmhqs4fm9h.mp3",
+ "construct_singular": "קְנַס־",
+ "construct_plural": "קְנָסוֹת־",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "קנקן": {
+ "slug": "7666-kankan",
+ "singular": "קַנְקַן",
+ "singular_audio": "https://audio.pealim.com/v0/vr/vrkqzl5htnk2.mp3",
+ "plural": "קַנְקַנִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1c0tnl183dynb.mp3",
+ "construct_singular": "קַנְקַן־",
+ "construct_plural": "קַנְקַנֵּי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "קסדה": {
+ "slug": "6513-kasda",
+ "singular": "קַסְדָּה",
+ "singular_audio": "https://audio.pealim.com/v0/11/11mkbvnkt27fl.mp3",
+ "plural": "קְסָדוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1nw7zhljuwb58.mp3",
+ "construct_singular": "קַסְדַּת־",
+ "construct_plural": "קַסְדוֹת־",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "קסם": {
+ "slug": "3174-kesem",
+ "singular": "קֶסֶם",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dmacr8eg8bp1.mp3",
+ "plural": "קְסָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1pthvxhllh4xp.mp3",
+ "construct_singular": "קֶסֶם־",
+ "construct_plural": "קִסְמֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קעקוע": {
+ "slug": "8841-kiakua",
+ "singular": "קִעְקוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/kt/ktuqnql1fi2b.mp3",
+ "plural": "קִעְקוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1j9svlfspjsp.mp3",
+ "construct_singular": "קִעְקוּעַ־",
+ "construct_plural": "קִעְקוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קעירה": {
+ "slug": "5293-keira",
+ "singular": "קְעִירָה",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1ljvpyydfvauf.mp3",
+ "plural": "קְעִירוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1l4oeczg30oxp.mp3",
+ "construct_singular": "קְעִירַת־",
+ "construct_plural": "קְעִירוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קערה": {
+ "slug": "3843-keara",
+ "singular": "קְעָרָה",
+ "singular_audio": "https://audio.pealim.com/v0/81/81hf5v260ady.mp3",
+ "plural": "קְעָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/p3/p35kpkivf7ze.mp3",
+ "construct_singular": "קַעֲרַת־",
+ "construct_plural": "קַעֲרוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "הקפאה": {
+ "slug": "2906-hakpaa",
+ "singular": "הַקְפָּאָה",
+ "singular_audio": "https://audio.pealim.com/v0/as/asfxhsywzne1.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַקְפָּאַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "קפאון": {
+ "slug": "4603-kipaon",
+ "singular": "קִפָּאוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/o3/o30hg8yfc90t.mp3",
+ "plural": "קִפְאוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/op/opas7yt83n0w.mp3",
+ "construct_singular": "קִפְאוֹן־",
+ "construct_plural": "קִפְאוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "מקפיא": {
+ "slug": "9249-makpi",
+ "singular": "מַקְפִּיא",
+ "singular_audio": "https://audio.pealim.com/v0/y1/y1vdi5z1scok.mp3",
+ "plural": "מַקְפִּיאִים",
+ "plural_audio": "https://audio.pealim.com/v0/ts/tsu03wxr5p6u.mp3",
+ "construct_singular": "מַקְפִּיא־",
+ "construct_plural": "מַקְפִּיאֵי־",
+ "gender": "masculine",
+ "mishkal": "maktil"
+ },
+ "קפוד": {
+ "slug": "8048-kipod",
+ "singular": "קִפּוֹד",
+ "singular_audio": "https://audio.pealim.com/v0/16/16or3qhtma3lc.mp3",
+ "plural": "קִפּוֹדִים",
+ "plural_audio": "https://audio.pealim.com/v0/he/he1rrudk7x74.mp3",
+ "construct_singular": "קִפּוֹד־",
+ "construct_plural": "קִפּוֹדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittol"
+ },
+ "קפודן": {
+ "slug": "8466-kipodan",
+ "singular": "קִפּוֹדָן",
+ "singular_audio": "https://audio.pealim.com/v0/w8/w83foa3fmzn4.mp3",
+ "plural": "קִפּוֹדָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1gq5bg51hwxrf.mp3",
+ "construct_singular": "קִפּוֹדַן־",
+ "construct_plural": "קִפּוֹדָנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קפידה": {
+ "slug": "9223-kfida",
+ "singular": "קְפִידָה",
+ "singular_audio": "https://audio.pealim.com/v0/j5/j5e36aji6gv9.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קְפִידַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "הקפדה": {
+ "slug": "9156-hakpada",
+ "singular": "הַקְפָּדָה",
+ "singular_audio": "https://audio.pealim.com/v0/a7/a7ldu1j790sc.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַקְפָּדַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "קפוח": {
+ "slug": "7584-kipuach",
+ "singular": "קִפּוּחַ",
+ "singular_audio": "https://audio.pealim.com/v0/15/152n5aej9mchs.mp3",
+ "plural": "קִפּוּחִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/119n1l6i4lyes.mp3",
+ "construct_singular": "קִפּוּחַ־",
+ "construct_plural": "קִפּוּחֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קפל": {
+ "slug": "8602-kefel",
+ "singular": "קֵפֶל",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dm32bub56jac.mp3",
+ "plural": "קְפָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1ldg80t732962.mp3",
+ "construct_singular": "קֵפֶל־",
+ "construct_plural": "קִפְלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קפול": {
+ "slug": "5802-kipul",
+ "singular": "קִפּוּל",
+ "singular_audio": "https://audio.pealim.com/v0/16/16or4qb0gw55k.mp3",
+ "plural": "קִפּוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v6t9cw23t6wk.mp3",
+ "construct_singular": "קִפּוּל־",
+ "construct_plural": "קִפּוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קפיץ": {
+ "slug": "3537-kfitz",
+ "singular": "קְפִיץ",
+ "singular_audio": "https://audio.pealim.com/v0/lp/lpu7bgns77v.mp3",
+ "plural": "קְפִיצִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1i8iahmqowunk.mp3",
+ "construct_singular": "קְפִיץ־",
+ "construct_plural": "קְפִיצֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "קפיצה": {
+ "slug": "8433-kfitza",
+ "singular": "קְפִיצָה",
+ "singular_audio": "https://audio.pealim.com/v0/x5/x5tyg2tenqvz.mp3",
+ "plural": "קְפִיצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1oerfhzw7zfqn.mp3",
+ "construct_singular": "קְפִיצַת־",
+ "construct_plural": "קְפִיצוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קצבה": {
+ "slug": "5448-kitzba",
+ "singular": "קִצְבָּה",
+ "singular_audio": "https://audio.pealim.com/v0/mx/mxplmp99vrkd.mp3",
+ "plural": "קְצָבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1anzg4u662wrn.mp3",
+ "construct_singular": "קִצְבַּת־",
+ "construct_plural": "קִצְבוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "קצב": {
+ "slug": "3177-katzav",
+ "singular": "קַצָּב",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1p0qoflryc0gy.mp3",
+ "plural": "קַצָּבִים",
+ "plural_audio": "https://audio.pealim.com/v0/lw/lw1ml20c64is.mp3",
+ "construct_singular": "קַצַּב־",
+ "construct_plural": "קַצָּבֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "תקציב": {
+ "slug": "3616-taktziv",
+ "singular": "תַּקְצִיב",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1v7n6gev0hxs7.mp3",
+ "plural": "תַּקְצִיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/10/10568qrh6c3ft.mp3",
+ "construct_singular": "תַּקְצִיב־",
+ "construct_plural": "תַּקְצִיבֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "קצה": {
+ "slug": "7225-katze",
+ "singular": "קָצֶה",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dmrslhoqgqee.mp3",
+ "plural": "קְצָווֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xjo0a1y1k68p.mp3",
+ "construct_singular": "קְצֵה־",
+ "construct_plural": "קְצוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קצין": {
+ "slug": "4862-katzin",
+ "singular": "קָצִין",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1uymgtqsrdn1k.mp3",
+ "plural": "קְצִינִים",
+ "plural_audio": "https://audio.pealim.com/v0/xk/xkur0tuw52di.mp3",
+ "construct_singular": "קְצִין־",
+ "construct_plural": "קְצִינֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "מקצוע": {
+ "slug": "5935-miktzoa",
+ "singular": "מִקְצוֹעַ",
+ "singular_audio": "https://audio.pealim.com/v0/7c/7cii5b27wnll.mp3",
+ "plural": "מִקְצוֹעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/yb/ybgugeksqehy.mp3",
+ "construct_singular": "מִקְצוֹעַ־",
+ "construct_plural": "מִקְצוֹעוֹת־",
+ "gender": "masculine",
+ "mishkal": "miktol"
+ },
+ "קצפת": {
+ "slug": "5598-katzefet",
+ "singular": "קַצֶּפֶת",
+ "singular_audio": "https://audio.pealim.com/v0/mh/mhf6oq8fl426.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קַצֶּפֶת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "קצף": {
+ "slug": "5007-ketzef",
+ "singular": "קֶצֶף",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rvaugzs3qmp.mp3",
+ "plural": "קְצָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/e1/e1li0plme7k7.mp3",
+ "construct_singular": "קֶצֶף־",
+ "construct_plural": "קִצְפֵּי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קצוץ": {
+ "slug": "8735-kitzutz",
+ "singular": "קִצּוּץ",
+ "singular_audio": "https://audio.pealim.com/v0/1d/1dnb2fcw4x8mt.mp3",
+ "plural": "קִצּוּצִים",
+ "plural_audio": "https://audio.pealim.com/v0/1k/1kdr931i3hfg2.mp3",
+ "construct_singular": "קִצּוּץ־",
+ "construct_plural": "קִצּוּצֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קץ": {
+ "slug": "8258-ketz",
+ "singular": "קֵץ",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksqkwntzhel.mp3",
+ "plural": "קִצִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1ueuov313vby3.mp3",
+ "construct_singular": "קֵץ־",
+ "construct_plural": "קִצֵּי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קציצה": {
+ "slug": "9162-ktzitza",
+ "singular": "קְצִיצָה",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1kiaa40mse5mk.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קְצִיצַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קצר": {
+ "slug": "3179-ketzer",
+ "singular": "קֶצֶר",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rvccw22m84i.mp3",
+ "plural": "קְצָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/11zc2mvnjr96n.mp3",
+ "construct_singular": "קֶצֶר־",
+ "construct_plural": "קִצְרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קציר": {
+ "slug": "5603-katzir",
+ "singular": "קָצִיר",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1uymjjp433ppx.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קְצִיר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "קצור": {
+ "slug": "4442-kitzur",
+ "singular": "קִצּוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1u7ntpfio6pxd.mp3",
+ "plural": "קִצּוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16tc66r7s8bjr.mp3",
+ "construct_singular": "קִצּוּר־",
+ "construct_plural": "קִצּוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קצרת": {
+ "slug": "3299-katzeret",
+ "singular": "קַצֶּרֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1af5rawacqqqm.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קַצֶּרֶת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "קוצר": {
+ "slug": "7828-kotzer",
+ "singular": "קוֹצֵר",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1c6bwn5vckljx.mp3",
+ "plural": "קוֹצְרִים",
+ "plural_audio": "https://audio.pealim.com/v0/5e/5ee1neqsmpph.mp3",
+ "construct_singular": "קוֹצֵר־",
+ "construct_plural": "קוֹצְרֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "תקציר": {
+ "slug": "6867-taktzir",
+ "singular": "תַּקְצִיר",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1v7t60hc9bll8.mp3",
+ "plural": "תַּקְצִירִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1unkcw0ytvwni.mp3",
+ "construct_singular": "תַּקְצִיר־",
+ "construct_plural": "תַּקְצִירֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "קקאו": {
+ "slug": "9117-kakao",
+ "singular": "קָקָאוֹ",
+ "singular_audio": "https://audio.pealim.com/v0/jq/jq1jegeqcrh4.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "הפקרות": {
+ "slug": "8758-hefkerut",
+ "singular": "הֶפְקֵרוּת",
+ "singular_audio": "https://audio.pealim.com/v0/uo/uo4bf5eatt5a.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הֶפְקֵרוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "קריאה": {
+ "slug": "2836-kria",
+ "singular": "קְרִיאָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/1733voa0l3he0.mp3",
+ "plural": "קְרִיאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1pz8s8msu866a.mp3",
+ "construct_singular": "קְרִיאַת־",
+ "construct_plural": "קְרִיאוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "מקרא": {
+ "slug": "8108-mikra",
+ "singular": "מִקְרָא",
+ "singular_audio": "https://audio.pealim.com/v0/yt/ytikmrn3v2p6.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "קרבן": {
+ "slug": "4916-korban",
+ "singular": "קָרְבָּן",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1hai2wul67tbt.mp3",
+ "plural": "קָרְבָּנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/u8/u88qdxojlyj1.mp3",
+ "construct_singular": "קָרְבַּן־",
+ "construct_plural": "קָרְבָּנוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "הקרבה": {
+ "slug": "2907-hakrava",
+ "singular": "הַקְרָבָה",
+ "singular_audio": "https://audio.pealim.com/v0/ni/nin0tbpm1u7o.mp3",
+ "plural": "הַקְרָבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/dh/dho3of6x8dc.mp3",
+ "construct_singular": "הַקְרָבַת־",
+ "construct_plural": "הַקְרָבוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "קרבה": {
+ "slug": "3223-kirva",
+ "singular": "קִרְבָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/17dtxre0bsub6.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קִרְבַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "תקריב": {
+ "slug": "4145-takriv",
+ "singular": "תַּקְרִיב",
+ "singular_audio": "https://audio.pealim.com/v0/12/12pzkjqooegtw.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תַּקְרִיב־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "קרוב": {
+ "slug": "7726-karov",
+ "singular": "קָרוֹב",
+ "singular_audio": "https://audio.pealim.com/v0/26/26fw6aeqwdeq.mp3",
+ "plural": "קְרוֹבִים",
+ "plural_audio": "https://audio.pealim.com/v0/y1/y13zk47uqqif.mp3",
+ "construct_singular": "קְרוֹב־",
+ "construct_plural": "קְרוֹבֵי־",
+ "gender": "masculine",
+ "mishkal": "katol"
+ },
+ "קרב": {
+ "slug": "6406-kerev",
+ "singular": "קֶרֶב",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dmc68s3fbcgy.mp3",
+ "plural": "קְרָבַיִם",
+ "plural_audio": "https://audio.pealim.com/v0/k3/k3ajhqmegvh.mp3",
+ "construct_singular": "קֶרֶב־",
+ "construct_plural": "קִרְבֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "התקרבות": {
+ "slug": "8836-hitkarvut",
+ "singular": "הִתְקָרְבוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1d/1dcw65d7hihoa.mp3",
+ "plural": "הִתְקָרְבֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1ei5yc1ciom4g.mp3",
+ "construct_singular": "הִתְקָרְבוּת־",
+ "construct_plural": "הִתְקָרְבֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "קרון": {
+ "slug": "6504-karon",
+ "singular": "קָרוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/26/26fwb7cv3m6k.mp3",
+ "plural": "קְרוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ux/uxp5m2hbg6mb.mp3",
+ "construct_singular": "קְרוֹן־",
+ "construct_plural": "קְרוֹנוֹת־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "קרור": {
+ "slug": "6583-kerur",
+ "singular": "קֵרוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1lldn941uo9j.mp3",
+ "plural": "קֵרוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/jw/jwhj2yg56auv.mp3",
+ "construct_singular": "קֵרוּר־",
+ "construct_plural": "קֵרוּרֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "קרח": {
+ "slug": "4345-kerach",
+ "singular": "קֶרַח",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dmc6lrqqf2sy.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קֶרַח־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קרחת": {
+ "slug": "4347-karachat",
+ "singular": "קָרַחַת",
+ "singular_audio": "https://audio.pealim.com/v0/a9/a9uenm89ozf6.mp3",
+ "plural": "קָרָחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/cy/cy8datg5bvy8.mp3",
+ "construct_singular": "קָרַחַת־",
+ "construct_plural": "קָרְחוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "קרחון": {
+ "slug": "7274-karchon",
+ "singular": "קַרְחוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1kqsvls3ocicx.mp3",
+ "plural": "קַרְחוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/3r/3rn18v0xtxr2.mp3",
+ "construct_singular": "קַרְחוֹן־",
+ "construct_plural": "קַרְחוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קרטיב": {
+ "slug": "9069-kartiv",
+ "singular": "קַרְטִיב",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1kr0szzc16x2k.mp3",
+ "plural": "קַרְטִיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/l7/l7ia8zosq2dw.mp3",
+ "construct_singular": "קַרְטִיב־",
+ "construct_plural": "קַרְטִיבֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "מקרה": {
+ "slug": "3083-mikre",
+ "singular": "מִקְרֶה",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jdhmk9kdltuo.mp3",
+ "plural": "מִקְרִים",
+ "plural_audio": "https://audio.pealim.com/v0/15/15smtyvjcrkzh.mp3",
+ "construct_singular": "מִקְרֵה־",
+ "construct_plural": "מִקְרֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "קריה": {
+ "slug": "3686-kirya",
+ "singular": "קִרְיָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/17dw0qjkev332.mp3",
+ "plural": "קְרָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/15/15uon2uwagsx2.mp3",
+ "construct_singular": "קִרְיַת־",
+ "construct_plural": "קִרְיוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "תקרית": {
+ "slug": "3771-takrit",
+ "singular": "תַּקְרִית",
+ "singular_audio": "https://audio.pealim.com/v0/12/12pzs3u04yw97.mp3",
+ "plural": "תַּקְרִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/10/10izvok2l5td4.mp3",
+ "construct_singular": "תַּקְרִית־",
+ "construct_plural": "תַּקְרִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktit"
+ },
+ "תקרה": {
+ "slug": "4992-tikra",
+ "singular": "תִּקְרָה",
+ "singular_audio": "https://audio.pealim.com/v0/ju/juxnzfll1c69.mp3",
+ "plural": "תִּקְרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/om/omc1mb3f9rpj.mp3",
+ "construct_singular": "תִּקְרַת־",
+ "construct_plural": "תִּקְרוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktela"
+ },
+ "אקראי": {
+ "slug": "8239-akray",
+ "singular": "אַקְרַאי",
+ "singular_audio": "https://audio.pealim.com/v0/5x/5xijb9r3ywtc.mp3",
+ "plural": "אַקְרָאִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16q297vcxria0.mp3",
+ "construct_singular": "אַקְרַאי־",
+ "construct_plural": "אַקְרָאֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קרין": {
+ "slug": "6119-karyan",
+ "singular": "קַרְיָן",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1olguwv8cltts.mp3",
+ "plural": "קַרְיָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/k1/k15vm2050frf.mp3",
+ "construct_singular": "קַרְיַן־",
+ "construct_plural": "קַרְיָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "קורות": {
+ "slug": "7034-korot",
+ "singular": "קוֹרוֹת",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1c5ngbfict7dn.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קוֹרוֹת־",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "קריזה": {
+ "slug": "8386-kriza",
+ "singular": "קְרִיזָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/1735fwn6nffbq.mp3",
+ "plural": "קְרִיזוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1r4xvk5ob9iz0.mp3",
+ "construct_singular": "קְרִיזַת־",
+ "construct_plural": "קְרִיזוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "קרירה": {
+ "slug": "8051-karyera",
+ "singular": "קַרְיֶרָה",
+ "singular_audio": "https://audio.pealim.com/v0/15/158kg60qbror6.mp3",
+ "plural": "קַרְיֶרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/46/46wja8dda24i.mp3",
+ "construct_singular": "קַרְיֶרַת־",
+ "construct_plural": "קַרְיֶרוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "הקרנה": {
+ "slug": "2908-hakrana",
+ "singular": "הַקְרָנָה",
+ "singular_audio": "https://audio.pealim.com/v0/km/kmeaiiizr6wb.mp3",
+ "plural": "הַקְרָנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/jx/jx8twha6egav.mp3",
+ "construct_singular": "הַקְרָנַת־",
+ "construct_plural": "הַקְרָנוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "קרן": {
+ "slug": "3181-keren",
+ "singular": "קֶרֶן",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dmc6dp1jil8s.mp3",
+ "plural": "קַרְנַיִם",
+ "plural_audio": "https://audio.pealim.com/v0/5a/5a5730bh2hwn.mp3",
+ "construct_singular": "קֶרֶן־",
+ "construct_plural": "קַרְנֵי־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "קרינה": {
+ "slug": "5020-krina",
+ "singular": "קְרִינָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/17381ml4qx4wi.mp3",
+ "plural": "קְרִינוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1t2fp3d4fgil4.mp3",
+ "construct_singular": "קְרִינַת־",
+ "construct_plural": "קְרִינוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קרנית": {
+ "slug": "8932-karnit",
+ "singular": "קַרְנִית",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1j7f50iun8jyv.mp3",
+ "plural": "קַרְנִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/tl/tlrptxa7yuf2.mp3",
+ "construct_singular": "קַרְנִית־",
+ "construct_plural": "קַרְנִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "מקרן": {
+ "slug": "7694-makren",
+ "singular": "מַקְרֵן",
+ "singular_audio": "https://audio.pealim.com/v0/ur/urcm907agh5r.mp3",
+ "plural": "מַקְרְנִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/119hph272ewet.mp3",
+ "construct_singular": "מַקְרֵן־",
+ "construct_plural": "מַקְרְנֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "קרנף": {
+ "slug": "7967-karnaf",
+ "singular": "קַרְנַף",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1ojwlc5x0gfj4.mp3",
+ "plural": "קַרְנַפִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hoewsrwl8xkt.mp3",
+ "construct_singular": "קַרְנַף־",
+ "construct_plural": "קַרְנַפֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קריסה": {
+ "slug": "7581-krisa",
+ "singular": "קְרִיסָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/1738azzbrb1ti.mp3",
+ "plural": "קְרִיסוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1t9dvna9o8fgy.mp3",
+ "construct_singular": "קְרִיסַת־",
+ "construct_plural": "קְרִיסוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קרסל": {
+ "slug": "6401-karsol",
+ "singular": "קַרְסֹל",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1ojo26c6gtge1.mp3",
+ "plural": "קַרְסֻלַּיִם",
+ "plural_audio": "https://audio.pealim.com/v0/sx/sxc8f8o7e76n.mp3",
+ "construct_singular": "קַרְסֹל־",
+ "construct_plural": "קַרְסֻלֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קרע": {
+ "slug": "8471-kera",
+ "singular": "קֶרַע",
+ "singular_audio": "https://audio.pealim.com/v0/dm/dmc6pmrtpwlw.mp3",
+ "plural": "קְרָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/14/14bb3qt4rlf6c.mp3",
+ "construct_singular": "קֶרַע־",
+ "construct_plural": "קִרְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קריצה": {
+ "slug": "7756-kritza",
+ "singular": "קְרִיצָה",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1tomgn2e5wpwx.mp3",
+ "plural": "קְרִיצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1d8pymcnpvksp.mp3",
+ "construct_singular": "קְרִיצַת־",
+ "construct_plural": "קְרִיצוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קרקס": {
+ "slug": "8850-kirkas",
+ "singular": "קִרְקָס",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1kg6k151jokkx.mp3",
+ "plural": "קִרְקָסִים",
+ "plural_audio": "https://audio.pealim.com/v0/sr/srd7bhdjfutn.mp3",
+ "construct_singular": "קִרְקַס־",
+ "construct_plural": "קִרְקָסֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "קרקע": {
+ "slug": "4878-karka",
+ "singular": "קַרְקַע",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1oic3whgyk5zd.mp3",
+ "plural": "קַרְקָעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/bk/bkauiapdm1v5.mp3",
+ "construct_singular": "קַרְקַע־",
+ "construct_plural": "קַרְקְעוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "קרקוע": {
+ "slug": "8855-kirkua",
+ "singular": "קִרְקוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/4d/4dvp2at4bcuo.mp3",
+ "plural": "קִרְקוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/6e/6ejdletgugau.mp3",
+ "construct_singular": "קִרְקוּעַ־",
+ "construct_plural": "קִרְקוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קרקעית": {
+ "slug": "6617-karkait",
+ "singular": "קַרְקָעִית",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qpv7untdc1tk.mp3",
+ "plural": "קַרְקְעִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/fv/fvjd7q8ib1t7.mp3",
+ "construct_singular": "קַרְקְעִית־",
+ "construct_plural": "קַרְקְעִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "מקרקעין": {
+ "slug": "7188-mekarkein",
+ "singular": "מְקַרְקְעִין",
+ "singular_audio": "https://audio.pealim.com/v0/kq/kqahi8bj51hv.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "mekattel"
+ },
+ "קרקפת": {
+ "slug": "5575-karkefet",
+ "singular": "קַרְקֶפֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1n/1nkx07yakfdar.mp3",
+ "plural": "קַרְקָפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1ozj21vea2bb9.mp3",
+ "construct_singular": "קַרְקֶפֶת־",
+ "construct_plural": "קַרְקְפוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "קרקוף": {
+ "slug": "5574-kirkuf",
+ "singular": "קִרְקוּף",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1vyevmlug59u9.mp3",
+ "plural": "קִרְקוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/170oty5vflt5a.mp3",
+ "construct_singular": "קִרְקוּף־",
+ "construct_plural": "קִרְקוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "התקררות": {
+ "slug": "8564-hitkarerut",
+ "singular": "הִתְקָרְרוּת",
+ "singular_audio": "https://audio.pealim.com/v0/nn/nnzlyyk263la.mp3",
+ "plural": "הִתְקָרְרֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/tl/tl22v6ynzgio.mp3",
+ "construct_singular": "הִתְקָרְרוּת־",
+ "construct_plural": "הִתְקָרְרֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "קר": {
+ "slug": "5977-kor",
+ "singular": "קֹר",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v9913ro37r.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "קֹר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "מקרר": {
+ "slug": "6255-mekarer",
+ "singular": "מְקָרֵר",
+ "singular_audio": "https://audio.pealim.com/v0/cz/czkx0aroqca4.mp3",
+ "plural": "מְקָרְרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1n0f771zmsmhl.mp3",
+ "construct_singular": "מְקָרֵר־",
+ "construct_plural": "מְקָרְרֵי־",
+ "gender": "masculine",
+ "mishkal": "mekattel"
+ },
+ "קרש": {
+ "slug": "4031-keresh",
+ "singular": "קֶרֶשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1sbuw0vk5o84.mp3",
+ "plural": "קְרָשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jsbto3wlkwgb.mp3",
+ "construct_singular": "קֶרֶשׁ־",
+ "construct_plural": "קַרְשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קשוא": {
+ "slug": "9051-kishu",
+ "singular": "קִשּׁוּא",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bg18iqcgh44f.mp3",
+ "plural": "קִשּׁוּאִים",
+ "plural_audio": "https://audio.pealim.com/v0/3x/3x0lbv7467uj.mp3",
+ "construct_singular": "קִשּׁוּא־",
+ "construct_plural": "קִשּׁוּאֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "הקשבה": {
+ "slug": "5730-hakshava",
+ "singular": "הַקְשָׁבָה",
+ "singular_audio": "https://audio.pealim.com/v0/14/148tpm5jyvjhx.mp3",
+ "plural": "הַקְשָׁבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/16/16kqwr5y3wr8d.mp3",
+ "construct_singular": "הַקְשָׁבַת־",
+ "construct_plural": "הַקְשָׁבוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "קשב": {
+ "slug": "7907-kashav",
+ "singular": "קַשָּׁב",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1pmqs0ebik4nq.mp3",
+ "plural": "קַשָּׁבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1l8e6fiqlmc54.mp3",
+ "construct_singular": "קַשַּׁב־",
+ "construct_plural": "קַשָּׁבֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "קשוט": {
+ "slug": "6787-kishut",
+ "singular": "קִשּׁוּט",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bg18fx8e2p8n.mp3",
+ "plural": "קִשּׁוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/17ygjwgwgh6ul.mp3",
+ "construct_singular": "קִשּׁוּט־",
+ "construct_plural": "קִשּׁוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קשי": {
+ "slug": "4447-koshi",
+ "singular": "קֹשִׁי",
+ "singular_audio": "https://audio.pealim.com/v0/dn/dn0qoxtcjcma.mp3",
+ "plural": "קְשָׁיִים",
+ "plural_audio": "https://audio.pealim.com/v0/14/142rqsw1qbbtu.mp3",
+ "construct_singular": "קֹשִׁי־",
+ "construct_plural": "קְשָׁיֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "התקשרות": {
+ "slug": "7377-hitkashrut",
+ "singular": "הִתְקַשְּׁרוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1n/1njkx6wd3i3rx.mp3",
+ "plural": "הִתְקַשְּׁרֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1exg9ljtgi2v3.mp3",
+ "construct_singular": "הִתְקַשְּׁרוּת־",
+ "construct_plural": "הִתְקַשְּׁרֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "תקשרת": {
+ "slug": "3257-tikshoret",
+ "singular": "תִּקְשֹׁרֶת",
+ "singular_audio": "https://audio.pealim.com/v0/j8/j8hd9tnggnr4.mp3",
+ "plural": "תִּקְשׁוֹרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/2n/2n24ol2pgslr.mp3",
+ "construct_singular": "תִּקְשֹׁרֶת־",
+ "construct_plural": "תִּקְשׁוֹרוֹת־",
+ "gender": "feminine",
+ "mishkal": "tiktolet"
+ },
+ "קשר": {
+ "slug": "2938-kesher",
+ "singular": "קֶשֶׁר",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1smdh7j5u7b4.mp3",
+ "plural": "קְשָׁרִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16z0h3p8cr8yz.mp3",
+ "construct_singular": "קֶשֶׁר־",
+ "construct_plural": "קִשְׁרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "הקשר": {
+ "slug": "2939-heksher",
+ "singular": "הֶקְשֵׁר",
+ "singular_audio": "https://audio.pealim.com/v0/vw/vwt8ovyn5455.mp3",
+ "plural": "הֶקְשֵׁרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1gq1il7z8jgtp.mp3",
+ "construct_singular": "הֶקְשֵׁר־",
+ "construct_plural": "הֶקְשֵׁרֵי־",
+ "gender": "masculine",
+ "mishkal": "hektel"
+ },
+ "קשור": {
+ "slug": "5775-kishur",
+ "singular": "קִשּׁוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bg18ab099umx.mp3",
+ "plural": "קִשּׁוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/fz/fz6nx1zr0sh.mp3",
+ "construct_singular": "קִשּׁוּר־",
+ "construct_plural": "קִשּׁוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "קשירות": {
+ "slug": "5776-kshirut",
+ "singular": "קְשִׁירוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1e8ziqgmyi8ba.mp3",
+ "plural": "קְשִׁירֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1k/1kkvecxv90ylq.mp3",
+ "construct_singular": "קְשִׁירוּת־",
+ "construct_plural": "קְשִׁירֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "קשירה": {
+ "slug": "9131-kshira",
+ "singular": "קְשִׁירָה",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1e9esff4pfmkr.mp3",
+ "plural": "קְשִׁירוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e90aun7znse1.mp3",
+ "construct_singular": "קְשִׁירַת־",
+ "construct_plural": "קְשִׁירוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "קש": {
+ "slug": "7264-kash",
+ "singular": "קַשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksqjo04wi5c.mp3",
+ "plural": "קַשִּׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1fievpdu7ard8.mp3",
+ "construct_singular": "קַשׁ־",
+ "construct_plural": "קַשֵּׁי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "קשת": {
+ "slug": "7809-keshet",
+ "singular": "קֶשֶׁת",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1smdhwt6ft4w.mp3",
+ "plural": "קְשָׁתוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/17/17k2xus2ratdu.mp3",
+ "construct_singular": "קֶשֶׁת־",
+ "construct_plural": "קַשְׁתוֹת־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "ראוה": {
+ "slug": "9040-raava",
+ "singular": "רַאֲוָה",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mxwd72rbnnkw.mp3",
+ "plural": "רְאָווֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1pxpx5iuedxuj.mp3",
+ "construct_singular": "רַאֲוַת־",
+ "construct_plural": "רַאֲווֹת־",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "ראיון": {
+ "slug": "5656-reayon",
+ "singular": "רֵאָיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/g5/g5mlpzicz6c5.mp3",
+ "plural": "רַאֲיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1bso1yykwq16r.mp3",
+ "construct_singular": "רַאֲיוֹן־",
+ "construct_plural": "רַאֲיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "ראיה": {
+ "slug": "8943-reaya",
+ "singular": "רְאָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/19/195aq5bmgr60l.mp3",
+ "plural": "רְאָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1i9xj9d9tgt05.mp3",
+ "construct_singular": "רְאָיַת־",
+ "construct_plural": "רְאָיוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "מראה": {
+ "slug": "5148-mara",
+ "singular": "מַרְאָה",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1umtirxyx7759.mp3",
+ "plural": "מַרְאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/df/dfnjca66fpz9.mp3",
+ "construct_singular": "מַרְאַת־",
+ "construct_plural": "מַרְאוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktal"
+ },
+ "ראי": {
+ "slug": "9188-rei",
+ "singular": "רְאִי",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1ht27qyl1jkt0.mp3",
+ "plural": "רְאִיִּים",
+ "plural_audio": "https://audio.pealim.com/v0/u2/u2ph02oh72xo.mp3",
+ "construct_singular": "רְאִי־",
+ "construct_plural": "רְאִיֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "בראשית": {
+ "slug": "3326-bereshit",
+ "singular": "בְּרֵאשִׁית",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bcofg9vu1xza.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "ראשית": {
+ "slug": "3323-reshit",
+ "singular": "רֵאשִׁית",
+ "singular_audio": "https://audio.pealim.com/v0/z1/z1tomxcyoxe.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רֵאשִׁית־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "ראש": {
+ "slug": "3327-rosh",
+ "singular": "רֹאשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/sv/sv0dyx0w09we.mp3",
+ "plural": "רָאשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/33/333h8rbokn2n.mp3",
+ "construct_singular": "רֹאשׁ־",
+ "construct_plural": "רָאשֵׁי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "ראשי תבות": {
+ "slug": "7250-rashei-tevot",
+ "singular": "רָאשֵׁי תֵּבוֹת",
+ "singular_audio": "https://audio.pealim.com/v0/ea/ealxnwi4lfnu.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "רב": {
+ "slug": "4159-rov",
+ "singular": "רֹב",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v98orna4gk.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רֹב־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "מרב": {
+ "slug": "6840-merav",
+ "singular": "מֵרַב",
+ "singular_audio": "https://audio.pealim.com/v0/bv/bvkh15ku12dn.mp3",
+ "plural": "מֵרַבִּים",
+ "plural_audio": "https://audio.pealim.com/v0/xb/xbcmf5525y0d.mp3",
+ "construct_singular": "מֵרַב־",
+ "construct_plural": "מֵרַבֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רבה": {
+ "slug": "6623-riba",
+ "singular": "רִבָּה",
+ "singular_audio": "https://audio.pealim.com/v0/ds/dsoa67k4mvji.mp3",
+ "plural": "רִבּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jrlgu8kugxa6.mp3",
+ "construct_singular": "רִבַּת־",
+ "construct_plural": "רִבּוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "רבית": {
+ "slug": "4497-ribit",
+ "singular": "רִבִּית",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jrtsfyzxg44j.mp3",
+ "plural": "רִבִּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/7g/7gcgw9hwqds0.mp3",
+ "construct_singular": "רִבִּית־",
+ "construct_plural": "רִבִּיּוֹת־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "רבון": {
+ "slug": "7679-ribon",
+ "singular": "רִבּוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jrlgy3lxrrbt.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִבּוֹן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "רבבה": {
+ "slug": "6316-revava",
+ "singular": "רְבָבָה",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1f2xt12m0w1wc.mp3",
+ "plural": "רְבָבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/16/16rl99kzvkhti.mp3",
+ "construct_singular": "רִבְבַת־",
+ "construct_plural": "רִבְבוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "רבותי": {
+ "slug": "6936-rabotay",
+ "singular": "רַבּוֹתַי",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1oo80c94wbcbm.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רבד": {
+ "slug": "7399-roved",
+ "singular": "רֹבֶד",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtskv08w9uj2.mp3",
+ "plural": "רְבָדִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1ck7ekavar3uz.mp3",
+ "construct_singular": "רֹבֶד־",
+ "construct_plural": "רָבְדֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רבוד": {
+ "slug": "5625-ribud",
+ "singular": "רִבּוּד",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jrlg5nu9gky6.mp3",
+ "plural": "רִבּוּדִים",
+ "plural_audio": "https://audio.pealim.com/v0/12/129g1op6madko.mp3",
+ "construct_singular": "רִבּוּד־",
+ "construct_plural": "רִבּוּדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "מרבד": {
+ "slug": "6972-marvad",
+ "singular": "מַרְבָד",
+ "singular_audio": "https://audio.pealim.com/v0/10/10lnblzp7n0pb.mp3",
+ "plural": "מַרְבַדִּים",
+ "plural_audio": "https://audio.pealim.com/v0/ik/ik0ltv2o6kka.mp3",
+ "construct_singular": "מַרְבַד־",
+ "construct_plural": "מַרְבַדֵּי־",
+ "gender": "masculine",
+ "mishkal": "maktal"
+ },
+ "תרבות": {
+ "slug": "5908-tarbut",
+ "singular": "תַּרְבּוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1g601908b2odk.mp3",
+ "plural": "תַּרְבֻּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1anv0dtiix5c8.mp3",
+ "construct_singular": "תַּרְבּוּת־",
+ "construct_plural": "תַּרְבֻּיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktut"
+ },
+ "רבוי": {
+ "slug": "4498-ribuy",
+ "singular": "רִבּוּי",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jrlg3k07nrgu.mp3",
+ "plural": "רִבּוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/2c/2cu6rg3qggzc.mp3",
+ "construct_singular": "רִבּוּי־",
+ "construct_plural": "רִבּוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רבע": {
+ "slug": "6094-reva",
+ "singular": "רֶבַע",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt4dphj4weh3.mp3",
+ "plural": "רְבָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1tnz5mlcslli.mp3",
+ "construct_singular": "רֶבַע־",
+ "construct_plural": "רִבְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רבוע": {
+ "slug": "4577-ribua",
+ "singular": "רִבּוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1iga8elgma09f.mp3",
+ "plural": "רִבּוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1fi2lmfiuydrb.mp3",
+ "construct_singular": "רִבּוּעַ־",
+ "construct_plural": "רִבּוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רגב": {
+ "slug": "6777-regev",
+ "singular": "רֶגֶב",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt4mm11qvcf9.mp3",
+ "plural": "רְגָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/15/15cy0zmz9ko9z.mp3",
+ "construct_singular": "רֶגֶב־",
+ "construct_plural": "רִגְבֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "ארגז": {
+ "slug": "7824-argaz",
+ "singular": "אַרְגָּז",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1b2niprd9zfqp.mp3",
+ "plural": "אַרְגָּזִים",
+ "plural_audio": "https://audio.pealim.com/v0/iu/iu8qr29u1bn.mp3",
+ "construct_singular": "אַרְגַּז־",
+ "construct_plural": "אַרְגְּזֵי־",
+ "gender": "masculine",
+ "mishkal": "aktal"
+ },
+ "רגול": {
+ "slug": "2995-rigul",
+ "singular": "רִגּוּל",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jkn9ikxxzfud.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִגּוּל־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "הרגל": {
+ "slug": "2940-hergel",
+ "singular": "הֶרְגֵּל",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1vcgimbr75g85.mp3",
+ "plural": "הֶרְגֵּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/ev/evivl4fgensh.mp3",
+ "construct_singular": "הֶרְגֵּל־",
+ "construct_plural": "הֶרְגֵּלֵי־",
+ "gender": "masculine",
+ "mishkal": "hektel"
+ },
+ "רגל": {
+ "slug": "3168-regel",
+ "singular": "רֶגֶל",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt4mpw2u66gg.mp3",
+ "plural": "רַגְלַיִם",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1ugdh66fv81jg.mp3",
+ "construct_singular": "רֶגֶל־",
+ "construct_plural": "רַגְלֵי־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "תרגיל": {
+ "slug": "3730-targil",
+ "singular": "תַּרְגִּיל",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1adra5ro1afws.mp3",
+ "plural": "תַּרְגִּילִים",
+ "plural_audio": "https://audio.pealim.com/v0/ve/veisuvun1kgw.mp3",
+ "construct_singular": "תַּרְגִּיל־",
+ "construct_plural": "תַּרְגִּילֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "מרגמה": {
+ "slug": "3563-margema",
+ "singular": "מַרְגֵּמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1flm624y40hfl.mp3",
+ "plural": "מַרְגֵּמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1ptgx526unkij.mp3",
+ "construct_singular": "מַרְגֵּמַת־",
+ "construct_plural": "מַרְגְּמוֹת־",
+ "gender": "feminine",
+ "mishkal": "maktela"
+ },
+ "רגע": {
+ "slug": "4005-rega",
+ "singular": "רֶגַע",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt4n2vq59wk7.mp3",
+ "plural": "רְגָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/2x/2xxxksjka5y2.mp3",
+ "construct_singular": "רֶגַע־",
+ "construct_plural": "רִגְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "הרגעה": {
+ "slug": "2909-hargaa",
+ "singular": "הַרְגָּעָה",
+ "singular_audio": "https://audio.pealim.com/v0/33/332vqi6276bo.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַרְגָּעַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "הרגשה": {
+ "slug": "2910-hargasha",
+ "singular": "הַרְגָּשָׁה",
+ "singular_audio": "https://audio.pealim.com/v0/rp/rp808qn2pzz.mp3",
+ "plural": "הַרְגָּשׁוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v0s7o3qt5lt.mp3",
+ "construct_singular": "הַרְגָּשַׁת־",
+ "construct_plural": "הַרְגָּשׁוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "התרגשות": {
+ "slug": "3027-hitragshut",
+ "singular": "הִתְרַגְּשׁוּת",
+ "singular_audio": "https://audio.pealim.com/v0/yc/yc1eud8avycg.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הִתְרַגְּשׁוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "רגש": {
+ "slug": "3182-regesh",
+ "singular": "רֶגֶשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/7m/7mtyano33snx.mp3",
+ "plural": "רְגָשׁוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1teg8wdgddcti.mp3",
+ "construct_singular": "רֶגֶשׁ־",
+ "construct_plural": "רִגְשׁוֹת־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "מרגש": {
+ "slug": "4009-margash",
+ "singular": "מַרְגָּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/36/36bb1id6frp3.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "מַרְגַּשׁ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "maktal"
+ },
+ "רדיו": {
+ "slug": "7079-radyo",
+ "singular": "רַדְיוֹ",
+ "singular_audio": "https://audio.pealim.com/v0/11/11i1r7byu66v4.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "הרדמות": {
+ "slug": "5341-heradmut",
+ "singular": "הֵרָדְמוּת",
+ "singular_audio": "https://audio.pealim.com/v0/v8/v8195mtgckg8.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הֵרָדְמוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "hikkatlut"
+ },
+ "תרדמה": {
+ "slug": "4993-tardema",
+ "singular": "תַּרְדֵּמָה",
+ "singular_audio": "https://audio.pealim.com/v0/64/6490e31t5jjo.mp3",
+ "plural": "תַּרְדֵּמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/u0/u0f1154vwlpg.mp3",
+ "construct_singular": "תַּרְדֵּמַת־",
+ "construct_plural": "תַּרְדֵּמוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktela"
+ },
+ "מרדף": {
+ "slug": "7783-mirdaf",
+ "singular": "מִרְדָּף",
+ "singular_audio": "https://audio.pealim.com/v0/fx/fxq1e3q66s4.mp3",
+ "plural": "מִרְדָּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/cx/cxxc75k507rz.mp3",
+ "construct_singular": "מִרְדַּף־",
+ "construct_plural": "מִרְדְּפֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רדיפה": {
+ "slug": "8356-redifa",
+ "singular": "רְדִיפָה",
+ "singular_audio": "https://audio.pealim.com/v0/tn/tnkcdh0ouv82.mp3",
+ "plural": "רְדִיפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/15/15yf6px5lvz6s.mp3",
+ "construct_singular": "רְדִיפַת־",
+ "construct_plural": "רְדִיפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "רהט": {
+ "slug": "5285-rahat",
+ "singular": "רַהַט",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtd89drcqha5.mp3",
+ "plural": "רְהָטִים",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1bd6ohrwzou27.mp3",
+ "construct_singular": "רַהַט־",
+ "construct_plural": "רַהֲטֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רהיט": {
+ "slug": "5181-rahit",
+ "singular": "רָהִיט",
+ "singular_audio": "https://audio.pealim.com/v0/81/815t43bwl2n8.mp3",
+ "plural": "רָהִיטִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/17f9t4s76w97i.mp3",
+ "construct_singular": "רָהִיט־",
+ "construct_plural": "רָהִיטֵי־",
+ "gender": "masculine",
+ "mishkal": "kattil"
+ },
+ "רהוט": {
+ "slug": "6199-rihut",
+ "singular": "רִהוּט",
+ "singular_audio": "https://audio.pealim.com/v0/79/79lfeslx4jry.mp3",
+ "plural": "רִהוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18tsh24cm1wkw.mp3",
+ "construct_singular": "רִהוּט־",
+ "construct_plural": "רִהוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רובה": {
+ "slug": "7938-rove",
+ "singular": "רוֹבֶה",
+ "singular_audio": "https://audio.pealim.com/v0/dz/dzwj6yw6rwp4.mp3",
+ "plural": "רוֹבִים",
+ "plural_audio": "https://audio.pealim.com/v0/2x/2xyhl492q6gt.mp3",
+ "construct_singular": "רוֹבֵה־",
+ "construct_plural": "רוֹבֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "רודן": {
+ "slug": "7331-rodan",
+ "singular": "רוֹדָן",
+ "singular_audio": "https://audio.pealim.com/v0/dg/dguzda920fnt.mp3",
+ "plural": "רוֹדָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/m0/m0rviea0qn66.mp3",
+ "construct_singular": "רוֹדַן־",
+ "construct_plural": "רוֹדָנֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "רווח": {
+ "slug": "7101-rivuach",
+ "singular": "רִוּוּחַ",
+ "singular_audio": "https://audio.pealim.com/v0/d5/d5fhk0sjti79.mp3",
+ "plural": "רִוּוּחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dyby83lv6ux3.mp3",
+ "construct_singular": "רִוּוּחַ־",
+ "construct_plural": "רִוּוּחֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "מרוח": {
+ "slug": "3547-mirvach",
+ "singular": "מִרְוָח",
+ "singular_audio": "https://audio.pealim.com/v0/14/14ooxr9587xed.mp3",
+ "plural": "מִרְוָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/la/lamjusishxt9.mp3",
+ "construct_singular": "מִרְוַח־",
+ "construct_plural": "מִרְוְחֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רוח": {
+ "slug": "7100-revach",
+ "singular": "רֶוַח",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt5f37a34ti9.mp3",
+ "plural": "רְוָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cl0ewvwehzow.mp3",
+ "construct_singular": "רוֹחַ־",
+ "construct_plural": "רוֹחֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רוחה": {
+ "slug": "8371-revacha",
+ "singular": "רְוָחָה",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1t3d86ha6wmo9.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רַוְחַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "רווי": {
+ "slug": "7751-rivuy",
+ "singular": "רִוּוּי",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1izspvvf8k3xi.mp3",
+ "plural": "רִוּוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/11zgnx0lbvxqg.mp3",
+ "construct_singular": "רִוּוּי־",
+ "construct_plural": "רִוּוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רויה": {
+ "slug": "7559-revaya",
+ "singular": "רְוָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1t2x3417jm25g.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְוָיַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "רויון": {
+ "slug": "7753-rivyon",
+ "singular": "רִוְיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1k3xu4be1o198.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִוְיוֹן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "רמה": {
+ "slug": "5487-rama",
+ "singular": "רָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1ht00i34pen5e.mp3",
+ "plural": "רָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/83/83mu8dmfzfoc.mp3",
+ "construct_singular": "רָמַת־",
+ "construct_plural": "רָמוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "הרמה": {
+ "slug": "7817-harama",
+ "singular": "הֲרָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/18/181g4a8el5emv.mp3",
+ "plural": "הֲרָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/35/35556uvv1y9j.mp3",
+ "construct_singular": "הֲרָמַת־",
+ "construct_plural": "הֲרָמוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תרומה": {
+ "slug": "5947-truma",
+ "singular": "תְּרוּמָה",
+ "singular_audio": "https://audio.pealim.com/v0/ql/qlh8loqvw8np.mp3",
+ "plural": "תְּרוּמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1gaw4bm3td0lj.mp3",
+ "construct_singular": "תְּרוּמַת־",
+ "construct_plural": "תְּרוּמוֹת־",
+ "gender": "feminine",
+ "mishkal": "tkula"
+ },
+ "מרום": {
+ "slug": "6262-marom",
+ "singular": "מָרוֹם",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1fogw3diizuv2.mp3",
+ "plural": "מְרוֹמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wrdcc01y5f31.mp3",
+ "construct_singular": "מְרוֹם־",
+ "construct_plural": "מְרוֹמֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "ריצה": {
+ "slug": "3136-ritza",
+ "singular": "רִיצָה",
+ "singular_audio": "https://audio.pealim.com/v0/7a/7au65oaowj0f.mp3",
+ "plural": "רִיצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/90/90jmscbloui9.mp3",
+ "construct_singular": "רִיצַת־",
+ "construct_plural": "רִיצוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "מריצה": {
+ "slug": "3754-meritza",
+ "singular": "מְרִיצָה",
+ "singular_audio": "https://audio.pealim.com/v0/15/153d5f5ii5ih1.mp3",
+ "plural": "מְרִיצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/5g/5gg5stpkidon.mp3",
+ "construct_singular": "מְרִיצַת־",
+ "construct_plural": "מְרִיצוֹת־",
+ "gender": "feminine",
+ "mishkal": "mekila"
+ },
+ "רץ": {
+ "slug": "4366-ratz",
+ "singular": "רָץ",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksq8yxg065w.mp3",
+ "plural": "רָצִים",
+ "plural_audio": "https://audio.pealim.com/v0/rt/rtoo29ee4drp.mp3",
+ "construct_singular": "רַץ־",
+ "construct_plural": "רָצֵי־",
+ "gender": "masculine",
+ "mishkal": "kal"
+ },
+ "מרוץ": {
+ "slug": "7922-merotz",
+ "singular": "מֵרוֹץ",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1prtuej3rcnm3.mp3",
+ "plural": "מְרוֹצִים",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1ha80zohg8x6t.mp3",
+ "construct_singular": "מְרוֹץ־",
+ "construct_plural": "מְרוֹצֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "מרוצה": {
+ "slug": "8500-merutza",
+ "singular": "מְרוּצָה",
+ "singular_audio": "https://audio.pealim.com/v0/10/10ygrtnjpldu5.mp3",
+ "plural": "מְרוּצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/lb/lbuzju0hojmr.mp3",
+ "construct_singular": "מְרוּצַת־",
+ "construct_plural": "מְרוּצוֹת־",
+ "gender": "feminine",
+ "mishkal": "mekula"
+ },
+ "רז": {
+ "slug": "6386-raz",
+ "singular": "רָז",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v98p3ygl38.mp3",
+ "plural": "רָזִים",
+ "plural_audio": "https://audio.pealim.com/v0/81/81ly8alm6vxk.mp3",
+ "construct_singular": "רַז־",
+ "construct_plural": "רָזֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "הרזיה": {
+ "slug": "2911-harzaya",
+ "singular": "הַרְזָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/a0/a0be56dib6x6.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַרְזָיַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רוזן": {
+ "slug": "7184-rozen",
+ "singular": "רוֹזֵן",
+ "singular_audio": "https://audio.pealim.com/v0/dg/dgvqktebnb2p.mp3",
+ "plural": "רוֹזְנִים",
+ "plural_audio": "https://audio.pealim.com/v0/pi/pio42ptjgqiu.mp3",
+ "construct_singular": "רוֹזֵן־",
+ "construct_plural": "רוֹזְנֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רחבה": {
+ "slug": "2861-rechava",
+ "singular": "רְחָבָה",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1h5ud2q49d0gd.mp3",
+ "plural": "רְחָבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1ws5bcm05g9h1.mp3",
+ "construct_singular": "רַחֲבַת־",
+ "construct_plural": "רַחֲבוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "הרחבה": {
+ "slug": "2912-harchava",
+ "singular": "הַרְחָבָה",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1htsugkb8k2mi.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַרְחָבַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רחב": {
+ "slug": "3204-rochav",
+ "singular": "רֹחַב",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtu5djy7rhpu.mp3",
+ "plural": "רְחָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1t6zko30g9m8c.mp3",
+ "construct_singular": "רֹחַב־",
+ "construct_plural": "רָחֳבֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רחוב": {
+ "slug": "3653-rechov",
+ "singular": "רְחוֹב",
+ "singular_audio": "https://audio.pealim.com/v0/6i/6igvto8h5k02.mp3",
+ "plural": "רְחוֹבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/hz/hzdkzfu5kd8n.mp3",
+ "construct_singular": "רְחוֹב־",
+ "construct_plural": "רְחוֹבוֹת־",
+ "gender": "masculine",
+ "mishkal": "ktol"
+ },
+ "מרחב": {
+ "slug": "7963-merchav",
+ "singular": "מֶרְחָב",
+ "singular_audio": "https://audio.pealim.com/v0/8q/8q36j6drhijz.mp3",
+ "plural": "מֶרְחָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1exuwcgy7ebj1.mp3",
+ "construct_singular": "מֶרְחַב־",
+ "construct_plural": "מֶרְחֲבֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רחם": {
+ "slug": "8869-rechem",
+ "singular": "רֶחֶם",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt5xl7owvu2z.mp3",
+ "plural": "רְחָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/2u/2u8wn2ik1wci.mp3",
+ "construct_singular": "רֶחֶם־",
+ "construct_plural": "רַחֲמֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רחמים": {
+ "slug": "6426-rachamim",
+ "singular": "רַחֲמִים",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1sbvmbp174rq5.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רַחֲמֵי־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רחפן": {
+ "slug": "7795-rachfan",
+ "singular": "רַחְפָן",
+ "singular_audio": "https://audio.pealim.com/v0/hc/hce2w1tyej39.mp3",
+ "plural": "רַחְפָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/fj/fjweio1hcugg.mp3",
+ "construct_singular": "רַחְפַן־",
+ "construct_plural": "רַחְפָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "רחיצה": {
+ "slug": "2837-rechitza",
+ "singular": "רְחִיצָה",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mxuhdfjj50m4.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְחִיצַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תרחיץ": {
+ "slug": "3617-tarchitz",
+ "singular": "תַּרְחִיץ",
+ "singular_audio": "https://audio.pealim.com/v0/hs/hs4coe5mzxkl.mp3",
+ "plural": "תַּרְחִיצִים",
+ "plural_audio": "https://audio.pealim.com/v0/mx/mxvi8giahfby.mp3",
+ "construct_singular": "תַּרְחִיץ־",
+ "construct_plural": "תַּרְחִיצֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "רחצה": {
+ "slug": "8452-rachtza",
+ "singular": "רַחְצָה",
+ "singular_audio": "https://audio.pealim.com/v0/hb/hby15bp4p6h5.mp3",
+ "plural": "רְחָצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1merg0v5uk6n3.mp3",
+ "construct_singular": "רַחְצַת־",
+ "construct_plural": "רַחֲצוֹת־",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "התרחקות": {
+ "slug": "8465-hitrachakut",
+ "singular": "הִתְרַחֲקוּת",
+ "singular_audio": "https://audio.pealim.com/v0/5i/5ic4bhwlq82h.mp3",
+ "plural": "הִתְרַחֲקֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v2ptplklyl6d.mp3",
+ "construct_singular": "הִתְרַחֲקוּת־",
+ "construct_plural": "הִתְרַחֲקֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "הרחקה": {
+ "slug": "2913-harchaka",
+ "singular": "הַרְחָקָה",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1m2oumtijnpd5.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַרְחָקַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "מרחק": {
+ "slug": "4043-merchak",
+ "singular": "מֶרְחָק",
+ "singular_audio": "https://audio.pealim.com/v0/8q/8q2zvqi2ts10.mp3",
+ "plural": "מֶרְחַקִּים",
+ "plural_audio": "https://audio.pealim.com/v0/3r/3r0ypqffmv21.mp3",
+ "construct_singular": "מֶרְחַק־",
+ "construct_plural": "מֶרְחַקֵּי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "תרחיש": {
+ "slug": "7900-tarchish",
+ "singular": "תַּרְחִישׁ",
+ "singular_audio": "https://audio.pealim.com/v0/hr/hrrz9ppq0e1a.mp3",
+ "plural": "תַּרְחִישִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/73/73jebhc284pq.mp3",
+ "construct_singular": "תַּרְחִישׁ־",
+ "construct_plural": "תַּרְחִישֵׁי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "התרחשות": {
+ "slug": "8997-hitrachashut",
+ "singular": "הִתְרַחֲשׁוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1l0u9ctcmhgic.mp3",
+ "plural": "הִתְרַחֲשֻׁיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cmzbsosj7u60.mp3",
+ "construct_singular": "הִתְרַחֲשׁוּת־",
+ "construct_plural": "הִתְרַחֲשֻׁיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "רטב": {
+ "slug": "7114-rotev",
+ "singular": "רֹטֶב",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtueg2bycvp5.mp3",
+ "plural": "רְטָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xylhe75joc5c.mp3",
+ "construct_singular": "רֹטֶב־",
+ "construct_plural": "רָטְבֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רטיבות": {
+ "slug": "6601-retivut",
+ "singular": "רְטִיבוּת",
+ "singular_audio": "https://audio.pealim.com/v0/mm/mmrmm8hju83x.mp3",
+ "plural": "רְטִיבֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1mybkqmjhmgdn.mp3",
+ "construct_singular": "רְטִיבוּת־",
+ "construct_plural": "רְטִיבֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "רטוט": {
+ "slug": "7243-ritut",
+ "singular": "רִטּוּט",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1iey68gmiu0yk.mp3",
+ "plural": "רִטּוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/zn/zninoh5imydq.mp3",
+ "construct_singular": "רִטּוּט־",
+ "construct_plural": "רִטּוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "ראה": {
+ "slug": "8276-rea",
+ "singular": "רֵאָה",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1ht0wun3ceqey.mp3",
+ "plural": "רֵאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/7f/7fnb3hofe57y.mp3",
+ "construct_singular": "רֵאַת־",
+ "construct_plural": "רֵאוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "מריבה": {
+ "slug": "3755-meriva",
+ "singular": "מְרִיבָה",
+ "singular_audio": "https://audio.pealim.com/v0/5p/5prnn10q7m89.mp3",
+ "plural": "מְרִיבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/wq/wqmazjtlnrhh.mp3",
+ "construct_singular": "מְרִיבַת־",
+ "construct_plural": "מְרִיבוֹת־",
+ "gender": "feminine",
+ "mishkal": "mekila"
+ },
+ "ריב": {
+ "slug": "7704-riv",
+ "singular": "רִיב",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksqa0f5zzew.mp3",
+ "plural": "רִיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1i3iuxhd5qtj8.mp3",
+ "construct_singular": "רִיב־",
+ "construct_plural": "רִיבֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "יריב": {
+ "slug": "8428-yariv",
+ "singular": "יָרִיב",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mjilg0yln6q8.mp3",
+ "plural": "יְרִיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/td/td6nund23moi.mp3",
+ "construct_singular": "יְרִיב־",
+ "construct_plural": "יְרִיבֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "ריח": {
+ "slug": "3620-reach",
+ "singular": "רֵיחַ",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1ht0tu4seux5m.mp3",
+ "plural": "רֵיחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1c2iguaw5czzn.mp3",
+ "construct_singular": "רֵיחַ־",
+ "construct_plural": "רֵיחוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רמון": {
+ "slug": "4770-rimon",
+ "singular": "רִמּוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1h993r4psnd4h.mp3",
+ "plural": "רִמּוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/ww/wwv34ur99y4q.mp3",
+ "construct_singular": "רִמּוֹן־",
+ "construct_plural": "רִמּוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "ריס": {
+ "slug": "6605-ris",
+ "singular": "רִיס",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksqa07la13v.mp3",
+ "plural": "רִיסִים",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hzxqdwrvias1.mp3",
+ "construct_singular": "רִיס־",
+ "construct_plural": "רִיסֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "ריק": {
+ "slug": "4207-rik",
+ "singular": "רִיק",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksqa04r0aqx.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִיק־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "ריר": {
+ "slug": "6509-rir",
+ "singular": "רִיר",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksqa049yocj.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִיר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תרכבת": {
+ "slug": "5849-tirkovet",
+ "singular": "תִּרְכֹּבֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1xm1spobrd1ho.mp3",
+ "plural": "תִּרְכּוֹבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/i3/i3m13e6iit8p.mp3",
+ "construct_singular": "תִּרְכֹּבֶת־",
+ "construct_plural": "תִּרְכּוֹבוֹת־",
+ "gender": "feminine",
+ "mishkal": "tiktolet"
+ },
+ "התרכבות": {
+ "slug": "2041-hitrakvut",
+ "singular": "הִתְרַכְּבוּת",
+ "singular_audio": "https://audio.pealim.com/v0/jo/joq4mv2jn2l3.mp3",
+ "plural": "הִתְרַכְּבֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/nd/nd81xjd40lzj.mp3",
+ "construct_singular": "הִתְרַכְּבוּת־",
+ "construct_plural": "הִתְרַכְּבֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "הרכב": {
+ "slug": "2941-herkev",
+ "singular": "הֶרְכֵּב",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1tlwyyrdv89zn.mp3",
+ "plural": "הֶרְכֵּבִים",
+ "plural_audio": "https://audio.pealim.com/v0/12/12q23bm8tt9d5.mp3",
+ "construct_singular": "הֶרְכֵּב־",
+ "construct_plural": "הֶרְכֵּבֵי־",
+ "gender": "masculine",
+ "mishkal": "hektel"
+ },
+ "הרכבה": {
+ "slug": "2942-harkava",
+ "singular": "הַרְכָּבָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16peyxop76sro.mp3",
+ "plural": "הַרְכָּבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/df/dfs0pzmfnytw.mp3",
+ "construct_singular": "הַרְכָּבַת־",
+ "construct_plural": "הַרְכָּבוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רכב": {
+ "slug": "3183-rechev",
+ "singular": "רֶכֶב",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt6yyksutfz0.mp3",
+ "plural": "רְכָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jvytf9tligq8.mp3",
+ "construct_singular": "רֶכֶב־",
+ "construct_plural": "רִכְבֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רכבת": {
+ "slug": "3300-rakevet",
+ "singular": "רַכֶּבֶת",
+ "singular_audio": "https://audio.pealim.com/v0/mq/mqqrnq33142m.mp3",
+ "plural": "רַכָּבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/13/136mdx1r6ggj6.mp3",
+ "construct_singular": "רַכֶּבֶת־",
+ "construct_plural": "רַכְּבוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "רכיב": {
+ "slug": "3538-rechiv",
+ "singular": "רְכִיב",
+ "singular_audio": "https://audio.pealim.com/v0/6j/6j4uctypqz35.mp3",
+ "plural": "רְכִיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/13/13b9r6xyi1yun.mp3",
+ "construct_singular": "רְכִיב־",
+ "construct_plural": "רְכִיבֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "מרכבה": {
+ "slug": "3846-merkava",
+ "singular": "מֶרְכָּבָה",
+ "singular_audio": "https://audio.pealim.com/v0/wg/wgysjrpwas5u.mp3",
+ "plural": "מֶרְכָּבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1itz8ly8wuim8.mp3",
+ "construct_singular": "מִרְכֶּבֶת־",
+ "construct_plural": "מַרְכְּבוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktala"
+ },
+ "תרכיב": {
+ "slug": "8323-tarkiv",
+ "singular": "תַּרְכִּיב",
+ "singular_audio": "https://audio.pealim.com/v0/7h/7h5ewe0g1cs8.mp3",
+ "plural": "תַּרְכִּיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/pi/pi460aetc40k.mp3",
+ "construct_singular": "תַּרְכִּיב־",
+ "construct_plural": "תַּרְכִּיבֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "מרכיב": {
+ "slug": "9231-markiv",
+ "singular": "מַרְכִּיב",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1l07s6bq58cnn.mp3",
+ "plural": "מַרְכִּיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xour11f3452j.mp3",
+ "construct_singular": "מַרְכִּיב־",
+ "construct_plural": "מַרְכִּיבֵי־",
+ "gender": "masculine",
+ "mishkal": "maktil"
+ },
+ "רכבל": {
+ "slug": "8649-rakevel",
+ "singular": "רַכֶּבֶל",
+ "singular_audio": "https://audio.pealim.com/v0/mq/mqn4g7cn4ixu.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רכוז": {
+ "slug": "6703-rikuz",
+ "singular": "רִכּוּז",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1hu3mlegtj7ta.mp3",
+ "plural": "רִכּוּזִים",
+ "plural_audio": "https://audio.pealim.com/v0/13/13b0alhbi286i.mp3",
+ "construct_singular": "רִכּוּז־",
+ "construct_plural": "רִכּוּזֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תרכיז": {
+ "slug": "3618-tarkiz",
+ "singular": "תַּרְכִּיז",
+ "singular_audio": "https://audio.pealim.com/v0/7h/7h5get2qju9t.mp3",
+ "plural": "תַּרְכִּיזִים",
+ "plural_audio": "https://audio.pealim.com/v0/rz/rz9cc47ol0k5.mp3",
+ "construct_singular": "תַּרְכִּיז־",
+ "construct_plural": "תַּרְכִּיזֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "מרכז": {
+ "slug": "3850-merkaz",
+ "singular": "מֶרְכָּז",
+ "singular_audio": "https://audio.pealim.com/v0/am/amvfxc3zu37u.mp3",
+ "plural": "מֶרְכָּזִים",
+ "plural_audio": "https://audio.pealim.com/v0/je/jeg07kakb5ms.mp3",
+ "construct_singular": "מֶרְכַּז־",
+ "construct_plural": "מֶרְכְּזֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רכז": {
+ "slug": "4937-rakaz",
+ "singular": "רַכָּז",
+ "singular_audio": "https://audio.pealim.com/v0/7v/7vtxa0wiog5c.mp3",
+ "plural": "רַכָּזִים",
+ "plural_audio": "https://audio.pealim.com/v0/ff/ffpb5pcb0rg0.mp3",
+ "construct_singular": "רַכַּז־",
+ "construct_plural": "רַכָּזֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "רכוך": {
+ "slug": "4472-rikuch",
+ "singular": "רִכּוּךְ",
+ "singular_audio": "https://audio.pealim.com/v0/cv/cvka4kbamup9.mp3",
+ "plural": "רִכּוּכִים",
+ "plural_audio": "https://audio.pealim.com/v0/9d/9du2trqomy1e.mp3",
+ "construct_singular": "רִכּוּךְ־",
+ "construct_plural": "רִכּוּכֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רכילות": {
+ "slug": "8644-rechilut",
+ "singular": "רְכִילוּת",
+ "singular_audio": "https://audio.pealim.com/v0/st/steuj4atzwxg.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְכִילוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "רוכסן": {
+ "slug": "8184-rochsan",
+ "singular": "רוֹכְסָן",
+ "singular_audio": "https://audio.pealim.com/v0/xm/xmjboseypu6m.mp3",
+ "plural": "רוֹכְסָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1iuh9ne90j38n.mp3",
+ "construct_singular": "רוֹכְסַן־",
+ "construct_plural": "רוֹכְסָנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רכישה": {
+ "slug": "4228-rechisha",
+ "singular": "רְכִישָׁה",
+ "singular_audio": "https://audio.pealim.com/v0/13/138fgpreih0cg.mp3",
+ "plural": "רְכִישׁוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1y/1yjsxcskey7i.mp3",
+ "construct_singular": "רְכִישַׁת־",
+ "construct_plural": "רְכִישׁוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "רכש": {
+ "slug": "4520-rechesh",
+ "singular": "רֶכֶשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/7o/7oul3o02myo6.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רֶכֶשׁ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רכוש": {
+ "slug": "8106-rechush",
+ "singular": "רְכוּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qizg9lv77uyz.mp3",
+ "plural": "רְכוּשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/v0/v00hfo8ishsz.mp3",
+ "construct_singular": "רְכוּשׁ־",
+ "construct_plural": "רְכוּשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ktul"
+ },
+ "רמז": {
+ "slug": "6091-remez",
+ "singular": "רֶמֶז",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt7r4ikwz7y6.mp3",
+ "plural": "רְמָזִים",
+ "plural_audio": "https://audio.pealim.com/v0/bn/bnyvgljdemhe.mp3",
+ "construct_singular": "רֶמֶז־",
+ "construct_plural": "רִמְזֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רמזור": {
+ "slug": "6654-ramzor",
+ "singular": "רַמְזוֹר",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1lnh6zac696hh.mp3",
+ "plural": "רַמְזוֹרִים",
+ "plural_audio": "https://audio.pealim.com/v0/vz/vzbzhv9ngmlz.mp3",
+ "construct_singular": "רַמְזוֹר־",
+ "construct_plural": "רַמְזוֹרֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רמח": {
+ "slug": "3975-romach",
+ "singular": "רֹמַח",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtvz1f5brc3g.mp3",
+ "plural": "רְמָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/5o/5oj8b20h4q4e.mp3",
+ "construct_singular": "רֹמַח־",
+ "construct_plural": "רָמְחֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רמיה": {
+ "slug": "8635-remiya",
+ "singular": "רְמִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1cn6rcl64amjs.mp3",
+ "plural": "רְמִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lb64uyer5kdg.mp3",
+ "construct_singular": "רְמִיַּת־",
+ "construct_plural": "רְמִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "מרמה": {
+ "slug": "3765-mirma",
+ "singular": "מִרְמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jkd800e16ler.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "מִרְמַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "miktal"
+ },
+ "רמאי": {
+ "slug": "3953-ramay",
+ "singular": "רַמַּאי",
+ "singular_audio": "https://audio.pealim.com/v0/zb/zb5sk45wjhu5.mp3",
+ "plural": "רַמָּאִים",
+ "plural_audio": "https://audio.pealim.com/v0/sg/sgvowiufhj79.mp3",
+ "construct_singular": "רַמַּאי־",
+ "construct_plural": "רַמָּאֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "תרמית": {
+ "slug": "7932-tarmit",
+ "singular": "תַּרְמִית",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1lzt5povjt5sw.mp3",
+ "plural": "תַּרְמִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1r67g8e9c3n2d.mp3",
+ "construct_singular": "תַּרְמִית־",
+ "construct_plural": "תַּרְמִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktit"
+ },
+ "תרמיל": {
+ "slug": "6533-tarmil",
+ "singular": "תַּרְמִיל",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1lzt9y2961pyu.mp3",
+ "plural": "תַּרְמִילִים",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1s9zx1hruizuq.mp3",
+ "construct_singular": "תַּרְמִיל־",
+ "construct_plural": "תַּרְמִילֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "רמקול": {
+ "slug": "7646-ramkol",
+ "singular": "רַמְקוֹל",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1oxm6rc26139d.mp3",
+ "plural": "רַמְקוֹלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wt6ka9m42o9.mp3",
+ "construct_singular": "רַמְקוֹל־",
+ "construct_plural": "רַמְקוֹלֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רמש": {
+ "slug": "6906-remes",
+ "singular": "רֶמֶשׂ",
+ "singular_audio": "https://audio.pealim.com/v0/7p/7pispor24jem.mp3",
+ "plural": "רְמָשִׂים",
+ "plural_audio": "https://audio.pealim.com/v0/gj/gjymq7vy7deu.mp3",
+ "construct_singular": "רֶמֶשׂ־",
+ "construct_plural": "רִמְשֵׂי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רנה": {
+ "slug": "5643-rina",
+ "singular": "רִנָּה",
+ "singular_audio": "https://audio.pealim.com/v0/ds/dss6r4haeakr.mp3",
+ "plural": "רִנּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1gvcqjfe7yg6x.mp3",
+ "construct_singular": "רִנַּת־",
+ "construct_plural": "רִנּוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "רננה": {
+ "slug": "5642-renana",
+ "singular": "רְנָנָה",
+ "singular_audio": "https://audio.pealim.com/v0/sf/sfhbhoxejca.mp3",
+ "plural": "רְנָנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1rvuik1fgvkis.mp3",
+ "construct_singular": "רִנְנַת־",
+ "construct_plural": "רִנְנוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "רסן": {
+ "slug": "8176-resen",
+ "singular": "רֶסֶן",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt8jbux0u08c.mp3",
+ "plural": "רְסָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qh7aa3obs6v5.mp3",
+ "construct_singular": "רֶסֶן־",
+ "construct_plural": "רִסְנֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רסוס": {
+ "slug": "6417-risus",
+ "singular": "רִסּוּס",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1goej60k9yy6m.mp3",
+ "plural": "רִסּוּסִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/175j2vne18gee.mp3",
+ "construct_singular": "רִסּוּס־",
+ "construct_plural": "רִסּוּסֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רסיס": {
+ "slug": "8015-resis",
+ "singular": "רְסִיס",
+ "singular_audio": "https://audio.pealim.com/v0/6k/6kh9pseesprc.mp3",
+ "plural": "רְסִיסִים",
+ "plural_audio": "https://audio.pealim.com/v0/14/14noyz3vqo6nk.mp3",
+ "construct_singular": "רְסִיס־",
+ "construct_plural": "רְסִיסֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "התרסקות": {
+ "slug": "3715-hitraskut",
+ "singular": "הִתְרַסְּקוּת",
+ "singular_audio": "https://audio.pealim.com/v0/14/146m1nea1u2r0.mp3",
+ "plural": "הִתְרַסְּקֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1ogmbur53n9n8.mp3",
+ "construct_singular": "הִתְרַסְּקוּת־",
+ "construct_plural": "הִתְרַסְּקֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "רסק": {
+ "slug": "6229-resek",
+ "singular": "רֶסֶק",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt8jeo138fj5.mp3",
+ "plural": "רְסָקִים",
+ "plural_audio": "https://audio.pealim.com/v0/zs/zs58o5wg1rrp.mp3",
+ "construct_singular": "רֶסֶק־",
+ "construct_plural": "רִסְקֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רע": {
+ "slug": "7759-roa",
+ "singular": "רֹעַ",
+ "singular_audio": "https://audio.pealim.com/v0/sv/sv0dtnnhg2gj.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רֹעַ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רעב": {
+ "slug": "3341-raav",
+ "singular": "רָעָב",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtoy8jv0absw.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְעַב־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "רעבתן": {
+ "slug": "3459-reavtan",
+ "singular": "רְעַבְתָּן",
+ "singular_audio": "https://audio.pealim.com/v0/13/133syr61dnwg7.mp3",
+ "plural": "רְעַבְתָּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1a3au9rcno9fg.mp3",
+ "construct_singular": "רְעַבְתַּן־",
+ "construct_plural": "רְעַבְתָּנֵי־",
+ "gender": "masculine",
+ "mishkal": "ktaltan"
+ },
+ "רעד": {
+ "slug": "4775-raad",
+ "singular": "רַעַד",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtgvf5agx9ww.mp3",
+ "plural": "רְעָדִים",
+ "plural_audio": "https://audio.pealim.com/v0/aj/aju5zbhutkg2.mp3",
+ "construct_singular": "רַעַד־",
+ "construct_plural": "רַעֲדֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רעידה": {
+ "slug": "8797-reida",
+ "singular": "רְעִידָה",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1e241gf44baec.mp3",
+ "plural": "רְעִידוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/tb/tbnqfrswg40i.mp3",
+ "construct_singular": "רְעִידַת־",
+ "construct_plural": "רְעִידוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "רעות": {
+ "slug": "8161-reut",
+ "singular": "רֵעוּת",
+ "singular_audio": "https://audio.pealim.com/v0/7j/7jolm5s5dp8p.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רֵעוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "רעיון": {
+ "slug": "5050-raayon",
+ "singular": "רַעֲיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1b4tchh21ulhf.mp3",
+ "plural": "רַעֲיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/88/88c76f8hysid.mp3",
+ "construct_singular": "רַעֲיוֹן־",
+ "construct_plural": "רַעֲיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "מרעית": {
+ "slug": "8033-marit",
+ "singular": "מַרְעִית",
+ "singular_audio": "https://audio.pealim.com/v0/gp/gpktl3syliek.mp3",
+ "plural": "מַרְעִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/t7/t7lv7jov0olv.mp3",
+ "construct_singular": "מַרְעִית־",
+ "construct_plural": "מַרְעִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "מרעה": {
+ "slug": "6816-mire",
+ "singular": "מִרְעֶה",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jke8vtjkfebk.mp3",
+ "plural": "מִרְעִים",
+ "plural_audio": "https://audio.pealim.com/v0/2e/2eqzgccbrjbh.mp3",
+ "construct_singular": "מִרְעֵה־",
+ "construct_plural": "מִרְעֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רעידת אדמה": {
+ "slug": "8798-reidat-adama",
+ "singular": "רְעִידַת אֲדָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1t531cllf6mso.mp3",
+ "plural": "רְעִידוֹת אֲדָמָה",
+ "plural_audio": "https://audio.pealim.com/v0/jh/jhgzr81vz1x7.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "רעילות": {
+ "slug": "8522-reilut",
+ "singular": "רְעִילוּת",
+ "singular_audio": "https://audio.pealim.com/v0/oj/ojx9jrxeyos8.mp3",
+ "plural": "רְעִילֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/br/brehb0g90l8s.mp3",
+ "construct_singular": "רְעִילוּת־",
+ "construct_plural": "רְעִילֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "הרעלה": {
+ "slug": "2914-harala",
+ "singular": "הַרְעָלָה",
+ "singular_audio": "https://audio.pealim.com/v0/5n/5nf9edq1k5jd.mp3",
+ "plural": "הַרְעָלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vr90tt2u9x87.mp3",
+ "construct_singular": "הַרְעָלַת־",
+ "construct_plural": "הַרְעָלוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רעל": {
+ "slug": "4776-raal",
+ "singular": "רַעַל",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtgvib1jmi4v.mp3",
+ "plural": "רְעָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/17b2mek4gwngf.mp3",
+ "construct_singular": "רַעַל־",
+ "construct_plural": "רַעֲלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תרעלה": {
+ "slug": "5001-tarela",
+ "singular": "תַּרְעֵלָה",
+ "singular_audio": "https://audio.pealim.com/v0/19/19nroh49le1tw.mp3",
+ "plural": "תַּרְעֵלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/o7/o7bdd38j50vi.mp3",
+ "construct_singular": "תַּרְעֵלַת־",
+ "construct_plural": "תַּרְעֵלוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktela"
+ },
+ "רעם": {
+ "slug": "4777-raam",
+ "singular": "רַעַם",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtgvinojxb1r.mp3",
+ "plural": "רְעָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1j9xwpn5fhzc0.mp3",
+ "construct_singular": "רַעַם־",
+ "construct_plural": "רַעֲמֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רענון": {
+ "slug": "4006-rianun",
+ "singular": "רִעְנוּן",
+ "singular_audio": "https://audio.pealim.com/v0/lb/lbp3k81t0nue.mp3",
+ "plural": "רִעְנוּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/zx/zxjaj5y8gu3r.mp3",
+ "construct_singular": "רִעְנוּן־",
+ "construct_plural": "רִעְנוּנֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רעף": {
+ "slug": "4778-raaf",
+ "singular": "רַעַף",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtgvkrilq4iq.mp3",
+ "plural": "רְעָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cyu9e5xtovoz.mp3",
+ "construct_singular": "רַעַף־",
+ "construct_plural": "רַעֲפֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רעש": {
+ "slug": "4774-raash",
+ "singular": "רַעַשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/7x/7xdirjlkl23c.mp3",
+ "plural": "רְעָשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/15/152fmhgco9yve.mp3",
+ "construct_singular": "רַעַשׁ־",
+ "construct_plural": "רַעֲשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רעשן": {
+ "slug": "9021-raashan",
+ "singular": "רַעֲשָׁן",
+ "singular_audio": "https://audio.pealim.com/v0/18/18qx8dk7qmyqh.mp3",
+ "plural": "רַעֲשָׁנִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16cda2b00mp5u.mp3",
+ "construct_singular": "רַעֲשַׁן־",
+ "construct_plural": "רַעֲשָׁנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "רופא": {
+ "slug": "5514-rofe",
+ "singular": "רוֹפֵא",
+ "singular_audio": "https://audio.pealim.com/v0/dg/dgzdn2jc5uzw.mp3",
+ "plural": "רוֹפְאִים",
+ "plural_audio": "https://audio.pealim.com/v0/19/19vplcpkkso76.mp3",
+ "construct_singular": "רוֹפֵא־",
+ "construct_plural": "רוֹפְאֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "מרפאה": {
+ "slug": "3573-mirpaa",
+ "singular": "מִרְפָּאָה",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w70j85c8zwvz.mp3",
+ "plural": "מִרְפָּאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1chzebz3b5i6z.mp3",
+ "construct_singular": "מִרְפְּאַת־",
+ "construct_plural": "מִרְפְּאוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktala"
+ },
+ "רפואה": {
+ "slug": "3661-refua",
+ "singular": "רְפוּאָה",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1brljljlj1o9h.mp3",
+ "plural": "רְפוּאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1x25hjbh53hpr.mp3",
+ "construct_singular": "רְפוּאַת־",
+ "construct_plural": "רְפוּאוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktula"
+ },
+ "תרופה": {
+ "slug": "4390-trufa",
+ "singular": "תְּרוּפָה",
+ "singular_audio": "https://audio.pealim.com/v0/ql/qlisu1wy6yq0.mp3",
+ "plural": "תְּרוּפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hgl7n4z9cve0.mp3",
+ "construct_singular": "תְּרוּפַת־",
+ "construct_plural": "תְּרוּפוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "רפוד": {
+ "slug": "6645-ripud",
+ "singular": "רִפּוּד",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1g3jzn62o5y33.mp3",
+ "plural": "רִפּוּדִים",
+ "plural_audio": "https://audio.pealim.com/v0/wb/wb69vuuvqn3n.mp3",
+ "construct_singular": "רִפּוּד־",
+ "construct_plural": "רִפּוּדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רפידה": {
+ "slug": "9072-refida",
+ "singular": "רְפִידָה",
+ "singular_audio": "https://audio.pealim.com/v0/14/14o1s124v40j0.mp3",
+ "plural": "רְפִידוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/e2/e2pezos2i78m.mp3",
+ "construct_singular": "רְפִידַת־",
+ "construct_plural": "רְפִידוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "רפוי": {
+ "slug": "8728-ripuy",
+ "singular": "רִפּוּי",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1g3jzl28md4lr.mp3",
+ "plural": "רִפּוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/3l/3lfl1e8039hp.mp3",
+ "construct_singular": "רִפּוּי־",
+ "construct_plural": "רִפּוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "הרפיה": {
+ "slug": "7813-harpaya",
+ "singular": "הַרְפָּיָה",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1gzwf26aqlb8i.mp3",
+ "plural": "הַרְפָּיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/j5/j5lu8zxvef5w.mp3",
+ "construct_singular": "הַרְפָּיַת־",
+ "construct_plural": "הַרְפָּיוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רפיון": {
+ "slug": "3591-rifyon",
+ "singular": "רִפְיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/zt/zt7c45ofoqzh.mp3",
+ "plural": "רִפְיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1ji1z2vi2w4az.mp3",
+ "construct_singular": "רִפְיוֹן־",
+ "construct_plural": "רִפְיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "מרפסת": {
+ "slug": "3911-mirpeset",
+ "singular": "מִרְפֶּסֶת",
+ "singular_audio": "https://audio.pealim.com/v0/11/11ctsw880owt.mp3",
+ "plural": "מִרְפָּסוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/lx/lxfx5cok8f79.mp3",
+ "construct_singular": "מִרְפֶּסֶת־",
+ "construct_plural": "מִרְפְּסוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "רפיסות": {
+ "slug": "9065-refisut",
+ "singular": "רְפִיסוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1xq1srkingsoy.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְפִיסוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "התרפסות": {
+ "slug": "9066-hitrapsut",
+ "singular": "הִתְרַפְּסוּת",
+ "singular_audio": "https://audio.pealim.com/v0/ax/ax2bopq3tx6w.mp3",
+ "plural": "הִתְרַפְּסֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dfqrjr7gc85u.mp3",
+ "construct_singular": "הִתְרַפְּסוּת־",
+ "construct_plural": "הִתְרַפְּסֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "רף": {
+ "slug": "6904-raf",
+ "singular": "רַף",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v98pch9s7a.mp3",
+ "plural": "רַפִּים",
+ "plural_audio": "https://audio.pealim.com/v0/y5/y5helf04l8jn.mp3",
+ "construct_singular": "רַף־",
+ "construct_plural": "רַפֵּי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "מרפק": {
+ "slug": "5044-marpek",
+ "singular": "מַרְפֵּק",
+ "singular_audio": "https://audio.pealim.com/v0/h5/h50cnvxno9yi.mp3",
+ "plural": "מַרְפְּקִים",
+ "plural_audio": "https://audio.pealim.com/v0/og/ogs34o3ibem5.mp3",
+ "construct_singular": "מַרְפֵּק־",
+ "construct_plural": "מַרְפְּקֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "רפרוף": {
+ "slug": "6607-rifruf",
+ "singular": "רִפְרוּף",
+ "singular_audio": "https://audio.pealim.com/v0/12/12pgvqop4htdx.mp3",
+ "plural": "רִפְרוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/12/12p5r4ugcixoc.mp3",
+ "construct_singular": "רִפְרוּף־",
+ "construct_plural": "רִפְרוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רפש": {
+ "slug": "6478-refesh",
+ "singular": "רֶפֶשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/7q/7qv7woc16ilq.mp3",
+ "plural": "רְפָשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1k/1kbdxxjdi7vna.mp3",
+ "construct_singular": "רֶפֶשׁ־",
+ "construct_plural": "רִפְשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רפת": {
+ "slug": "8207-refet",
+ "singular": "רֶפֶת",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dt9bjwj5a09j.mp3",
+ "plural": "רְפָתִים",
+ "plural_audio": "https://audio.pealim.com/v0/3j/3j0l09j3csaz.mp3",
+ "construct_singular": "רֶפֶת־",
+ "construct_plural": "רִפְתֵי־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "הרצאה": {
+ "slug": "3880-hartzaa",
+ "singular": "הַרְצָאָה",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1gduvraxyah1c.mp3",
+ "plural": "הַרְצָאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1d3jco2yp2c7o.mp3",
+ "construct_singular": "הַרְצָאַת־",
+ "construct_plural": "הַרְצָאוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רצח": {
+ "slug": "4437-retzach",
+ "singular": "רֶצַח",
+ "singular_audio": "https://audio.pealim.com/v0/7r/7rb3qvswx4up.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רֶצַח־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רצון": {
+ "slug": "3780-ratzon",
+ "singular": "רָצוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/rm/rminqqsbbei3.mp3",
+ "plural": "רְצוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/of/of0sa7zm0gwh.mp3",
+ "construct_singular": "רְצוֹן־",
+ "construct_plural": "רְצוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "katon"
+ },
+ "רצינות": {
+ "slug": "5108-retzinut",
+ "singular": "רְצִינוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1u307hxb1ro27.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְצִינוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "מרצע": {
+ "slug": "4314-martzea",
+ "singular": "מַרְצֵעַ",
+ "singular_audio": "https://audio.pealim.com/v0/9p/9pi757wrlzfj.mp3",
+ "plural": "מַרְצְעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1ie3zvbm1242w.mp3",
+ "construct_singular": "מַרְצֵעַ־",
+ "construct_plural": "מַרְצְעֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "רצועה": {
+ "slug": "8193-retzua",
+ "singular": "רְצוּעָה",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1u9chtudcggh6.mp3",
+ "plural": "רְצוּעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ap/apdp22ol895a.mp3",
+ "construct_singular": "רְצוּעַת־",
+ "construct_plural": "רְצוּעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktula"
+ },
+ "רצוף": {
+ "slug": "2996-ritzuf",
+ "singular": "רִצּוּף",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1pg1yhce764ei.mp3",
+ "plural": "רִצּוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/bv/bv2a1i2a98ur.mp3",
+ "construct_singular": "רִצּוּף־",
+ "construct_plural": "רִצּוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רצפה": {
+ "slug": "3224-ritzpa",
+ "singular": "רִצְפָּה",
+ "singular_audio": "https://audio.pealim.com/v0/bn/bn6zdzgfia6k.mp3",
+ "plural": "רְצָפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/yr/yrrvvto46viv.mp3",
+ "construct_singular": "רִצְפַּת־",
+ "construct_plural": "רִצְפוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "רציף": {
+ "slug": "4859-ratzif",
+ "singular": "רָצִיף",
+ "singular_audio": "https://audio.pealim.com/v0/rt/rtom8yiuazzq.mp3",
+ "plural": "רְצִיפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jklzht2wwtw5.mp3",
+ "construct_singular": "רְצִיף־",
+ "construct_plural": "רְצִיפֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "רצף": {
+ "slug": "7859-retzef",
+ "singular": "רֶצֶף",
+ "singular_audio": "https://audio.pealim.com/v0/7r/7ray03d062mx.mp3",
+ "plural": "רְצָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1i54uuywq9m1a.mp3",
+ "construct_singular": "רֶצֶף־",
+ "construct_plural": "רִצְפֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "מרצפת": {
+ "slug": "7049-mirtzefet",
+ "singular": "מִרְצֶפֶת",
+ "singular_audio": "https://audio.pealim.com/v0/5k/5kfgqsc1q7t8.mp3",
+ "plural": "מִרְצָפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/11/118gmh47v15i2.mp3",
+ "construct_singular": "מִרְצֶפֶת־",
+ "construct_plural": "מִרְצְפוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "רקב": {
+ "slug": "3343-rakav",
+ "singular": "רָקָב",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtq93itsea3o.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְקַב־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "רקבון": {
+ "slug": "5386-rikavon",
+ "singular": "רִקָּבוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/17/17zn0bck2jtyk.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִקְבוֹן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "רקוד": {
+ "slug": "2997-rikud",
+ "singular": "רִקּוּד",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1fipfzemy6z65.mp3",
+ "plural": "רִקּוּדִים",
+ "plural_audio": "https://audio.pealim.com/v0/nz/nzsmhry0ikcr.mp3",
+ "construct_singular": "רִקּוּד־",
+ "construct_plural": "רִקּוּדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רקדן": {
+ "slug": "3448-rakdan",
+ "singular": "רַקְדָן",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1pun0j8s5oe80.mp3",
+ "plural": "רַקְדָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1pufqmnmd6z4n.mp3",
+ "construct_singular": "רַקְדַן־",
+ "construct_plural": "רַקְדָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "רוקחות": {
+ "slug": "6567-rokchut",
+ "singular": "רוֹקְחוּת",
+ "singular_audio": "https://audio.pealim.com/v0/17/17deg6qsknenc.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רוֹקְחוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "רוקח": {
+ "slug": "6566-rokeach",
+ "singular": "רוֹקֵחַ",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1h5s4bibeuwz4.mp3",
+ "plural": "רוֹקְחִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/1767kfbnmd016.mp3",
+ "construct_singular": "רוֹקֵחַ־",
+ "construct_plural": "רוֹקְחֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "מרקחת": {
+ "slug": "6603-mirkachat",
+ "singular": "מִרְקַחַת",
+ "singular_audio": "https://audio.pealim.com/v0/14/145ubdgnxdkop.mp3",
+ "plural": "מִרְקָחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/r1/r11kh00faxdz.mp3",
+ "construct_singular": "מִרְקַחַת־",
+ "construct_plural": "מִרְקְחוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "רקטה": {
+ "slug": "8633-raketa",
+ "singular": "רָקֶטָה",
+ "singular_audio": "https://audio.pealim.com/v0/fa/faqr4kx4y0m8.mp3",
+ "plural": "רָקֶטוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/jn/jna6saym3c10.mp3",
+ "construct_singular": "רָקֶטַת־",
+ "construct_plural": "רָקֶטוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "רקמה": {
+ "slug": "3711-rikma",
+ "singular": "רִקְמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1flbz8pxuduis.mp3",
+ "plural": "רְקָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1iv5fn4gwdf4j.mp3",
+ "construct_singular": "רִקְמַת־",
+ "construct_plural": "רִקְמוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "מרקם": {
+ "slug": "7295-mirkam",
+ "singular": "מִרְקָם",
+ "singular_audio": "https://audio.pealim.com/v0/14/14sq96kopx0ce.mp3",
+ "plural": "מִרְקָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/d1/d1clbt9pzwwv.mp3",
+ "construct_singular": "מִרְקַם־",
+ "construct_plural": "מִרְקְמֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רקיע": {
+ "slug": "3165-rakia",
+ "singular": "רָקִיעַ",
+ "singular_audio": "https://audio.pealim.com/v0/fo/fo4cu9kc0oxu.mp3",
+ "plural": "רְקִיעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1bregjjsc9umm.mp3",
+ "construct_singular": "רְקִיעַ־",
+ "construct_plural": "רְקִיעֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "מרקע": {
+ "slug": "3424-mirka",
+ "singular": "מִרְקָע",
+ "singular_audio": "https://audio.pealim.com/v0/14/14sqaozr0fi96.mp3",
+ "plural": "מִרְקָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1ica79q2vg9xw.mp3",
+ "construct_singular": "מִרְקַע־",
+ "construct_plural": "מִרְקְעֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רקע": {
+ "slug": "8470-reka",
+ "singular": "רֶקַע",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dta3w5tdc0x2.mp3",
+ "plural": "רְקָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/113o01bk8isnp.mp3",
+ "construct_singular": "רֶקַע־",
+ "construct_plural": "רִקְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רקה": {
+ "slug": "5272-raka",
+ "singular": "רַקָּה",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dti7yjycm9d8.mp3",
+ "plural": "רַקּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/xk/xkej7cu7qmwy.mp3",
+ "construct_singular": "רַקַּת־",
+ "construct_plural": "רַקּוֹת־",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "רשות": {
+ "slug": "3776-rashut",
+ "singular": "רָשׁוּת",
+ "singular_audio": "https://audio.pealim.com/v0/r5/r5y5d7ek70ul.mp3",
+ "plural": "רָשֻׁיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/m1/m1e97ad8kjnd.mp3",
+ "construct_singular": "רָשׁוּת־",
+ "construct_plural": "רָשֻׁיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "katut"
+ },
+ "רשוי": {
+ "slug": "7418-rishuy",
+ "singular": "רִשּׁוּי",
+ "singular_audio": "https://audio.pealim.com/v0/16/16ofbp561pg48.mp3",
+ "plural": "רִשּׁוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/10/10kfapxpzz4fk.mp3",
+ "construct_singular": "רִשּׁוּי־",
+ "construct_plural": "רִשּׁוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רשיון": {
+ "slug": "4014-rishayon",
+ "singular": "רִשָּׁיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1g0e9decj8k5n.mp3",
+ "plural": "רִשְׁיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vrbxjhm4ytku.mp3",
+ "construct_singular": "רִשְׁיוֹן־",
+ "construct_plural": "רִשְׁיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "התרשלות": {
+ "slug": "7846-hitrashlut",
+ "singular": "הִתְרַשְּׁלוּת",
+ "singular_audio": "https://audio.pealim.com/v0/t9/t94dlt067mn9.mp3",
+ "plural": "הִתְרַשְּׁלֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/u4/u4d2ce9s8h6h.mp3",
+ "construct_singular": "הִתְרַשְּׁלוּת־",
+ "construct_plural": "הִתְרַשְּׁלֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "רשלנות": {
+ "slug": "9278-rashlanut",
+ "singular": "רַשְׁלָנוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qd5bh872el5v.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רַשְׁלָנוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "התרשמות": {
+ "slug": "3028-hitrashmut",
+ "singular": "הִתְרַשְּׁמוּת",
+ "singular_audio": "https://audio.pealim.com/v0/12/12sc72no7qgjq.mp3",
+ "plural": "הִתְרַשְּׁמֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/3d/3df9jby9ust2.mp3",
+ "construct_singular": "הִתְרַשְּׁמוּת־",
+ "construct_plural": "הִתְרַשְּׁמֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "הרשמה": {
+ "slug": "3387-harshama",
+ "singular": "הַרְשָׁמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mgwk27vbdddb.mp3",
+ "plural": "הַרְשָׁמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/q2/q25vdc0dz5ep.mp3",
+ "construct_singular": "הַרְשָׁמַת־",
+ "construct_plural": "הַרְשָׁמוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תרשים": {
+ "slug": "3619-tarshim",
+ "singular": "תַּרְשִׁים",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bxelkvhe5nhw.mp3",
+ "plural": "תַּרְשִׁימִים",
+ "plural_audio": "https://audio.pealim.com/v0/10/10ijn57xdjv4h.mp3",
+ "construct_singular": "תַּרְשִׁים־",
+ "construct_plural": "תַּרְשִׁימֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "רשם": {
+ "slug": "3845-roshem",
+ "singular": "רֹשֶׁם",
+ "singular_audio": "https://audio.pealim.com/v0/8c/8cwk6njqp693.mp3",
+ "plural": "רְשָׁמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e6ceng9185gh.mp3",
+ "construct_singular": "רֹשֶׁם־",
+ "construct_plural": "רָשְׁמֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "רשימה": {
+ "slug": "4901-reshima",
+ "singular": "רְשִׁימָה",
+ "singular_audio": "https://audio.pealim.com/v0/rj/rjsnxmyty229.mp3",
+ "plural": "רְשִׁימוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ij/ijztehtp6fht.mp3",
+ "construct_singular": "רְשִׁימַת־",
+ "construct_plural": "רְשִׁימוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "רשום": {
+ "slug": "6288-rishum",
+ "singular": "רִשּׁוּם",
+ "singular_audio": "https://audio.pealim.com/v0/16/16ofbnqm0i8gp.mp3",
+ "plural": "רִשּׁוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1uhlihnaegrma.mp3",
+ "construct_singular": "רִשּׁוּם־",
+ "construct_plural": "רִשּׁוּמֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "מרשם": {
+ "slug": "7013-mirsham",
+ "singular": "מִרְשָׁם",
+ "singular_audio": "https://audio.pealim.com/v0/3u/3u2kzoey7rml.mp3",
+ "plural": "מִרְשָׁמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1up4veek88suo.mp3",
+ "construct_singular": "מִרְשַׁם־",
+ "construct_plural": "מִרְשְׁמֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "רשע": {
+ "slug": "3802-resha",
+ "singular": "רֶשַׁע",
+ "singular_audio": "https://audio.pealim.com/v0/7s/7s20vj45xznr.mp3",
+ "plural": "רְשָׁעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1u1b1rfuwn3s2.mp3",
+ "construct_singular": "רֶשַׁע־",
+ "construct_plural": "רִשְׁעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רשעה": {
+ "slug": "3803-risha",
+ "singular": "רִשְׁעָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16r0tizixujjg.mp3",
+ "plural": "רְשָׁעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1nv1wr2pdkioz.mp3",
+ "construct_singular": "רִשְׁעַת־",
+ "construct_plural": "רִשְׁעוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "הרשעה": {
+ "slug": "4343-harshaa",
+ "singular": "הַרְשָׁעָה",
+ "singular_audio": "https://audio.pealim.com/v0/1n/1n8pa9wgaflqq.mp3",
+ "plural": "הַרְשָׁעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vd3hb8tjfifq.mp3",
+ "construct_singular": "הַרְשָׁעַת־",
+ "construct_plural": "הַרְשָׁעוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "רשף": {
+ "slug": "4562-reshef",
+ "singular": "רֶשֶׁף",
+ "singular_audio": "https://audio.pealim.com/v0/7s/7s20kzxwxvxv.mp3",
+ "plural": "רְשָׁפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1i2frgcu7ypki.mp3",
+ "construct_singular": "רֶשֶׁף־",
+ "construct_plural": "רִשְׁפֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "רשרוש": {
+ "slug": "9177-rishrush",
+ "singular": "רִשְׁרוּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/20/20kfobodnuia.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רִשְׁרוּשׁ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רשת": {
+ "slug": "3382-reshet",
+ "singular": "רֶשֶׁת",
+ "singular_audio": "https://audio.pealim.com/v0/7s/7s20ngez1ica.mp3",
+ "plural": "רְשָׁתוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/bz/bzkriqlsx3zv.mp3",
+ "construct_singular": "רֶשֶׁת־",
+ "construct_plural": "רִשְׁתוֹת־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "רתיחה": {
+ "slug": "8518-reticha",
+ "singular": "רְתִיחָה",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkngkaeo0657.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "רְתִיחַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "רתוך": {
+ "slug": "6586-rituch",
+ "singular": "רִתּוּךְ",
+ "singular_audio": "https://audio.pealim.com/v0/11/11ib3ld5mooj1.mp3",
+ "plural": "רִתּוּכִים",
+ "plural_audio": "https://audio.pealim.com/v0/w7/w7264n9r0l3o.mp3",
+ "construct_singular": "רִתּוּךְ־",
+ "construct_plural": "רִתּוּכֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "רתם": {
+ "slug": "8380-rotem",
+ "singular": "רֹתֶם",
+ "singular_audio": "https://audio.pealim.com/v0/dt/dtz39di8v4eq.mp3",
+ "plural": "רְתָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1aqkug7i3s4ag.mp3",
+ "construct_singular": "רֹתֶם־",
+ "construct_plural": "רָתְמֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "מרתף": {
+ "slug": "3933-martef",
+ "singular": "מַרְתֵּף",
+ "singular_audio": "https://audio.pealim.com/v0/ia/iapervk2nkev.mp3",
+ "plural": "מַרְתְּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/19/195oopo1qqsg7.mp3",
+ "construct_singular": "מַרְתֵּף־",
+ "construct_plural": "מַרְתְּפֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "משאב": {
+ "slug": "3519-mashav",
+ "singular": "מַשְׁאָב",
+ "singular_audio": "https://audio.pealim.com/v0/e6/e67pd4c746u5.mp3",
+ "plural": "מַשְׁאַבִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1c6be01kfs0vc.mp3",
+ "construct_singular": "מַשְׁאַב־",
+ "construct_plural": "מַשְׁאַבֵּי־",
+ "gender": "masculine",
+ "mishkal": "maktal"
+ },
+ "משאבה": {
+ "slug": "7026-masheva",
+ "singular": "מַשְׁאֵבָה",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1s59uq3t9dnqt.mp3",
+ "plural": "מַשְׁאֵבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lxpsop59egxp.mp3",
+ "construct_singular": "מַשְׁאֵבַת־",
+ "construct_plural": "מַשְׁאֲבוֹת־",
+ "gender": "feminine",
+ "mishkal": "maktela"
+ },
+ "שואה": {
+ "slug": "7205-shoa",
+ "singular": "שׁוֹאָה",
+ "singular_audio": "https://audio.pealim.com/v0/fr/free1fiif7ge.mp3",
+ "plural": "שׁוֹאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/a9/a99e1j0dged4.mp3",
+ "construct_singular": "שׁוֹאַת־",
+ "construct_plural": "שׁוֹאוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שאלה": {
+ "slug": "2843-sheela",
+ "singular": "שְׁאֵלָה",
+ "singular_audio": "https://audio.pealim.com/v0/xc/xcimerab69lw.mp3",
+ "plural": "שְׁאֵלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/15/15fpas4u5rhyc.mp3",
+ "construct_singular": "שְׁאֵלַת־",
+ "construct_plural": "שְׁאֵלוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktela"
+ },
+ "השאלה": {
+ "slug": "2917-hashala",
+ "singular": "הַשְׁאָלָה",
+ "singular_audio": "https://audio.pealim.com/v0/83/83xj20oeoibs.mp3",
+ "plural": "הַשְׁאָלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1bvagb9xqy19w.mp3",
+ "construct_singular": "הַשְׁאָלַת־",
+ "construct_plural": "הַשְׁאָלוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "משאל": {
+ "slug": "3944-mishal",
+ "singular": "מִשְׁאָל",
+ "singular_audio": "https://audio.pealim.com/v0/4l/4lxifm8g94d.mp3",
+ "plural": "מִשְׁאָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/h7/h761yc8diqt.mp3",
+ "construct_singular": "מִשְׁאַל־",
+ "construct_plural": "מִשְׁאֲלֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שאילה": {
+ "slug": "5113-sheila",
+ "singular": "שְׁאִילָה",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1ae7i6dlfftcm.mp3",
+ "plural": "שְׁאִילוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/nd/ndu5w0r0rouu.mp3",
+ "construct_singular": "שְׁאִילַת־",
+ "construct_plural": "שְׁאִילוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שאלון": {
+ "slug": "7658-sheelon",
+ "singular": "שְׁאֵלוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/15/15fs5vgz9zf9b.mp3",
+ "plural": "שְׁאֵלוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/ob/obbuja34gb2.mp3",
+ "construct_singular": "שְׁאֵלוֹן־",
+ "construct_plural": "שְׁאֵלוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "משאלה": {
+ "slug": "6811-mishala",
+ "singular": "מִשְׁאָלָה",
+ "singular_audio": "https://audio.pealim.com/v0/lk/lki08per8188.mp3",
+ "plural": "מִשְׁאָלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1era48b91yghi.mp3",
+ "construct_singular": "מִשְׁאֶלֶת־",
+ "construct_plural": "מִשְׁאֲלוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktala"
+ },
+ "שאיפה": {
+ "slug": "4279-sheifa",
+ "singular": "שְׁאִיפָה",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1ag02g5w2kwrc.mp3",
+ "plural": "שְׁאִיפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1ww2pwpb9tuak.mp3",
+ "construct_singular": "שְׁאִיפַת־",
+ "construct_plural": "שְׁאִיפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "משאף": {
+ "slug": "8878-mashef",
+ "singular": "מַשְׁאֵף",
+ "singular_audio": "https://audio.pealim.com/v0/e6/e672oudtezie.mp3",
+ "plural": "מַשְׁאֲפִים",
+ "plural_audio": "https://audio.pealim.com/v0/de/delw4wnctrnc.mp3",
+ "construct_singular": "מַשְׁאֵף־",
+ "construct_plural": "מַשְׁאֲפֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "שאר": {
+ "slug": "3501-shear",
+ "singular": "שְׁאָר",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fj9kmkndchns.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁאָר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "שאור": {
+ "slug": "6196-seor",
+ "singular": "שְׂאוֹר",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1v4pugh0y3431.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׂאוֹר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ktol"
+ },
+ "שארית": {
+ "slug": "6743-sheerit",
+ "singular": "שְׁאֵרִית",
+ "singular_audio": "https://audio.pealim.com/v0/o7/o7cnw4p7pfy5.mp3",
+ "plural": "שְׁאֵרִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1r4n8jsqpzamg.mp3",
+ "construct_singular": "שְׁאֵרִית־",
+ "construct_plural": "שְׁאֵרִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "השארות": {
+ "slug": "8566-hishaarut",
+ "singular": "הִשָּׁאֲרוּת",
+ "singular_audio": "https://audio.pealim.com/v0/f4/f4fnhg9rgkxt.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הִשָּׁאֲרוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "hikkatlut"
+ },
+ "שביב": {
+ "slug": "8143-shviv",
+ "singular": "שְׁבִיב",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fj9t2fxjn0dy.mp3",
+ "plural": "שְׁבִיבִים",
+ "plural_audio": "https://audio.pealim.com/v0/13/13d6pz1l952fw.mp3",
+ "construct_singular": "שְׁבִיב־",
+ "construct_plural": "שְׁבִיבֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "שבב": {
+ "slug": "6716-shvav",
+ "singular": "שְׁבָב",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2ayqjtsjmnr.mp3",
+ "plural": "שְׁבָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/q8/q8ona3p1gzh1.mp3",
+ "construct_singular": "שְׁבַב־",
+ "construct_plural": "שְׁבָבֵי־",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "שבח": {
+ "slug": "5254-shevach",
+ "singular": "שֶׁבַח",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkm8qgdzlwsa.mp3",
+ "plural": "שְׁבָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/p2/p2zjykt6ajws.mp3",
+ "construct_singular": "שֶׁבַח־",
+ "construct_plural": "שִׁבְחֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שבט": {
+ "slug": "7629-shevet",
+ "singular": "שֵׁבֶט",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fke5wp6epncw.mp3",
+ "plural": "שְׁבָטִים",
+ "plural_audio": "https://audio.pealim.com/v0/ow/ow1denocp7sq.mp3",
+ "construct_singular": "שֵׁבֶט־",
+ "construct_plural": "שִׁבְטֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שבי": {
+ "slug": "8417-shevi",
+ "singular": "שֶׁבִי",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2cixlp8uz2y.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁבִי־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שבלת": {
+ "slug": "3270-shibolet",
+ "singular": "שִׁבֹּלֶת",
+ "singular_audio": "https://audio.pealim.com/v0/10/10w8v3cjz9wjb.mp3",
+ "plural": "שִׁבֳּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/eo/eo38k197i4ws.mp3",
+ "construct_singular": "שִׁבֹּלֶת־",
+ "construct_plural": "שִׁבֳּלֵי־",
+ "gender": "feminine",
+ "mishkal": "kittolet"
+ },
+ "שביל": {
+ "slug": "3836-shvil",
+ "singular": "שְׁבִיל",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fj9t2kf004tz.mp3",
+ "plural": "שְׁבִילִים",
+ "plural_audio": "https://audio.pealim.com/v0/15/15hmq266wim0r.mp3",
+ "construct_singular": "שְׁבִיל־",
+ "construct_plural": "שְׁבִילֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "שביעה": {
+ "slug": "5862-svia",
+ "singular": "שְׂבִיעָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/17w8uhcyu2xqv.mp3",
+ "plural": "שְׂבִיעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/13/13i7opdkps2v.mp3",
+ "construct_singular": "שְׂבִיעַת־",
+ "construct_plural": "שְׂבִיעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שבועה": {
+ "slug": "3662-shvua",
+ "singular": "שְׁבוּעָה",
+ "singular_audio": "https://audio.pealim.com/v0/19/19bgwj1b73boc.mp3",
+ "plural": "שְׁבוּעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/z7/z7c07vfo6nai.mp3",
+ "construct_singular": "שְׁבוּעַת־",
+ "construct_plural": "שְׁבוּעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktula"
+ },
+ "שבוע": {
+ "slug": "3958-shavua",
+ "singular": "שָׁבוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/c8/c82a3oymsung.mp3",
+ "plural": "שָׁבוּעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/15/15dgwuzeoi6zl.mp3",
+ "construct_singular": "שְׁבוּעַ־",
+ "construct_plural": "שְׁבוּעוֹת־",
+ "gender": "masculine",
+ "mishkal": "katul"
+ },
+ "שבועים": {
+ "slug": "7865-shvuayim",
+ "singular": "שְׁבוּעַיִם",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1riz35jnxx2db.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "משבצת": {
+ "slug": "3278-mishbetzet",
+ "singular": "מִשְׁבֶּצֶת",
+ "singular_audio": "https://audio.pealim.com/v0/tv/tvpp65t9s8jg.mp3",
+ "plural": "מִשְׁבָּצוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1nj91xvza80qm.mp3",
+ "construct_singular": "מִשְׁבֶּצֶת־",
+ "construct_plural": "מִשְׁבְּצוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "שבץ": {
+ "slug": "9030-shavatz",
+ "singular": "שָׁבָץ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qow6ej3eo291.mp3",
+ "plural": "שְׁבָצִים",
+ "plural_audio": "https://audio.pealim.com/v0/cx/cxuloi2g3qq9.mp3",
+ "construct_singular": "שְׁבַץ־",
+ "construct_plural": "שִׁבְצֵי־",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "משבר": {
+ "slug": "3515-mashber",
+ "singular": "מַשְׁבֵּר",
+ "singular_audio": "https://audio.pealim.com/v0/j4/j4fl9374w35k.mp3",
+ "plural": "מַשְׁבְּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/119j2ucbglzjn.mp3",
+ "construct_singular": "מַשְׁבֵּר־",
+ "construct_plural": "מַשְׁבְּרֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "שבר": {
+ "slug": "4379-shever",
+ "singular": "שֶׁבֶר",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkm8ljfvenfz.mp3",
+ "plural": "שְׁבָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/ls/lsugjxchqyko.mp3",
+ "construct_singular": "שֶׁבֶר־",
+ "construct_plural": "שִׁבְרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שבריר": {
+ "slug": "7897-shavrir",
+ "singular": "שַׁבְרִיר",
+ "singular_audio": "https://audio.pealim.com/v0/10/10b25bkfyukhb.mp3",
+ "plural": "שַׁבְרִירִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16rxl3wrq6qod.mp3",
+ "construct_singular": "שַׁבְרִיר־",
+ "construct_plural": "שַׁבְרִירֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שבוש": {
+ "slug": "8068-shibush",
+ "singular": "שִׁבּוּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1m7dsjwhy36q9.mp3",
+ "plural": "שִׁבּוּשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/17/17myxab2r3qp5.mp3",
+ "construct_singular": "שִׁבּוּשׁ־",
+ "construct_plural": "שִׁבּוּשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שביתה": {
+ "slug": "5077-shvita",
+ "singular": "שְׁבִיתָה",
+ "singular_audio": "https://audio.pealim.com/v0/13/134p0qa4vvkri.mp3",
+ "plural": "שְׁבִיתוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/18/18e3dgas7enr4.mp3",
+ "construct_singular": "שְׁבִיתַת־",
+ "construct_plural": "שְׁבִיתוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שבת": {
+ "slug": "5078-shabat",
+ "singular": "שַׁבָּת",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qhz14r3mtivi.mp3",
+ "plural": "שַׁבָּתוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/u4/u491ni65biep.mp3",
+ "construct_singular": "שַׁבַּת־",
+ "construct_plural": "שַׁבְּתוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שבתאי": {
+ "slug": "8002-shabtay",
+ "singular": "שַׁבְּתַאי",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1t62xhr484xrc.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שגיאה": {
+ "slug": "5183-shgia",
+ "singular": "שְׁגִיאָה",
+ "singular_audio": "https://audio.pealim.com/v0/19/193xw7kkv9496.mp3",
+ "plural": "שְׁגִיאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/18/1850jss54a1gq.mp3",
+ "construct_singular": "שְׁגִיאַת־",
+ "construct_plural": "שְׁגִיאוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "משגב": {
+ "slug": "9086-misgav",
+ "singular": "מִשְׂגָּב",
+ "singular_audio": "https://audio.pealim.com/v0/15/15t1sj6bee1k2.mp3",
+ "plural": "מִשְׂגָּבִים",
+ "plural_audio": "https://audio.pealim.com/v0/sf/sfbx3q0yje0q.mp3",
+ "construct_singular": "מִשְׂגַּב־",
+ "construct_plural": "מִשְׂגְּבֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "השגחה": {
+ "slug": "4370-hashgacha",
+ "singular": "הַשְׁגָּחָה",
+ "singular_audio": "https://audio.pealim.com/v0/aj/ajuxch9gk4wh.mp3",
+ "plural": "הַשְׁגָּחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hyk8vz8sjqk7.mp3",
+ "construct_singular": "הַשְׁגָּחַת־",
+ "construct_plural": "הַשְׁגָּחוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "משגיח": {
+ "slug": "7940-mashgiach",
+ "singular": "מַשְׁגִּיחַ",
+ "singular_audio": "https://audio.pealim.com/v0/6e/6ejmcvashrkg.mp3",
+ "plural": "מַשְׁגִּיחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1r6w1hp5ygsd6.mp3",
+ "construct_singular": "מַשְׁגִּיחַ־",
+ "construct_plural": "מַשְׁגִּיחֵי־",
+ "gender": "masculine",
+ "mishkal": "maktil"
+ },
+ "שגיון": {
+ "slug": "5297-shigayon",
+ "singular": "שִׁגָּיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1vu9sb602bhvy.mp3",
+ "plural": "שִׁגְיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/m6/m6mnturl4v3v.mp3",
+ "construct_singular": "שִׁגְיוֹן־",
+ "construct_plural": "שִׁגְיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "משגל": {
+ "slug": "8286-mishgal",
+ "singular": "מִשְׁגָּל",
+ "singular_audio": "https://audio.pealim.com/v0/3k/3k10vu9g2ywc.mp3",
+ "plural": "מִשְׁגָּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18dx9yhho5pos.mp3",
+ "construct_singular": "מִשְׁגַּל־",
+ "construct_plural": "מִשְׁגְּלֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שגעון": {
+ "slug": "3583-shigaon",
+ "singular": "שִׁגָּעוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/ig/ig7gc0jh245v.mp3",
+ "plural": "שִׁגְעוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/2r/2riaclgf6bhg.mp3",
+ "construct_singular": "שִׁגְעוֹן־",
+ "construct_plural": "שִׁגְעוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "שגור": {
+ "slug": "6963-shigur",
+ "singular": "שִׁגּוּר",
+ "singular_audio": "https://audio.pealim.com/v0/16/16dfmyspiss6e.mp3",
+ "plural": "שִׁגּוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lp0bs4w5wa9g.mp3",
+ "construct_singular": "שִׁגּוּר־",
+ "construct_plural": "שִׁגּוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שגרה": {
+ "slug": "7041-shigra",
+ "singular": "שִׁגְרָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16fzkpjhhgawr.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שִׁגְרַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שגרירות": {
+ "slug": "4806-shagrirut",
+ "singular": "שַׁגְרִירוּת",
+ "singular_audio": "https://audio.pealim.com/v0/10/10loi3dmlnyzh.mp3",
+ "plural": "שַׁגְרִירֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/44/44j9h3sat819.mp3",
+ "construct_singular": "שַׁגְרִירוּת־",
+ "construct_plural": "שַׁגְרִירֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שגריר": {
+ "slug": "4805-shagrir",
+ "singular": "שַׁגְרִיר",
+ "singular_audio": "https://audio.pealim.com/v0/92/920rf6ak0rmp.mp3",
+ "plural": "שַׁגְרִירִים",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1fqdozniiq89x.mp3",
+ "construct_singular": "שַׁגְרִיר־",
+ "construct_plural": "שַׁגְרִירֵי־",
+ "gender": "masculine",
+ "mishkal": "kattil"
+ },
+ "שגשוג": {
+ "slug": "7297-sigsug",
+ "singular": "שִׂגְשׂוּג",
+ "singular_audio": "https://audio.pealim.com/v0/1l/1lpq9ehu63tl8.mp3",
+ "plural": "שִׂגְשׂוּגִים",
+ "plural_audio": "https://audio.pealim.com/v0/3s/3s944a9ni07c.mp3",
+ "construct_singular": "שִׂגְשׂוּג־",
+ "construct_plural": "שִׂגְשׂוּגֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שד": {
+ "slug": "5333-shod",
+ "singular": "שֹׁד",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkspuxba0l3n.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שֹׁד־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שדה": {
+ "slug": "8101-shida",
+ "singular": "שִׁדָּה",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fk6o1n3pfyv9.mp3",
+ "plural": "שִׁדּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/16/166hhatq1h6p9.mp3",
+ "construct_singular": "שִׁדַּת־",
+ "construct_plural": "שִׁדּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שדה תעופה": {
+ "slug": "8052-sde-teufa",
+ "singular": "שְׂדֵה תְּעוּפָה",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1ehqeiv8ehara.mp3",
+ "plural": "שְׂדוֹת תְּעוּפָה",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1szccic63vllp.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שדוך": {
+ "slug": "8266-shiduch",
+ "singular": "שִׁדּוּךְ",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1a8imy1j04bl7.mp3",
+ "plural": "שִׁדּוּכִים",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1s1n5rkjdmi96.mp3",
+ "construct_singular": "שִׁדּוּךְ־",
+ "construct_plural": "שִׁדּוּכֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שדכן": {
+ "slug": "3449-shadchan",
+ "singular": "שַׁדְכָן",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1gkr1zpl38dfv.mp3",
+ "plural": "שַׁדְכָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1nzlge7mw8pdc.mp3",
+ "construct_singular": "שַׁדְכַן־",
+ "construct_plural": "שַׁדְכָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "השתדלות": {
+ "slug": "7338-hishtadlut",
+ "singular": "הִשְׁתַּדְּלוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1hvqt1cq9x992.mp3",
+ "plural": "הִשְׁתַּדְּלֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/18/181yxxc3n4c1w.mp3",
+ "construct_singular": "הִשְׁתַּדְּלוּת־",
+ "construct_plural": "הִשְׁתַּדְּלֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שדור": {
+ "slug": "7057-shidur",
+ "singular": "שִׁדּוּר",
+ "singular_audio": "https://audio.pealim.com/v0/16/166hgevka5z6s.mp3",
+ "plural": "שִׁדּוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/dr/dr078h4fzbq0.mp3",
+ "construct_singular": "שִׁדּוּר־",
+ "construct_plural": "שִׁדּוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "משדר": {
+ "slug": "5190-mishdar",
+ "singular": "מִשְׁדָּר",
+ "singular_audio": "https://audio.pealim.com/v0/3d/3d2qpbd3tec8.mp3",
+ "plural": "מִשְׁדָּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/zk/zkvfbl592rgm.mp3",
+ "construct_singular": "מִשְׁדַּר־",
+ "construct_plural": "מִשְׁדְּרֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שדרה": {
+ "slug": "7348-sdera",
+ "singular": "שְׂדֵרָה",
+ "singular_audio": "https://audio.pealim.com/v0/ks/kskpd4etwnfz.mp3",
+ "plural": "שְׂדֵרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1msnoobtq6wkz.mp3",
+ "construct_singular": "שְׂדֵרַת־",
+ "construct_plural": "שְׂדֵרוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktela"
+ },
+ "תשדיר": {
+ "slug": "7919-tashdir",
+ "singular": "תַּשְׁדִּיר",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1eez1dh9buzt7.mp3",
+ "plural": "תַּשְׁדִּירִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1q03yihr3jq9b.mp3",
+ "construct_singular": "תַּשְׁדִּיר־",
+ "construct_plural": "תַּשְׁדִּירֵי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "שה": {
+ "slug": "4416-se",
+ "singular": "שֶׂה",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v9888f9xsa.mp3",
+ "plural": "שֵׂיִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1w592bhmogbjw.mp3",
+ "construct_singular": "שֵׂה־",
+ "construct_plural": "שֵׂיֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שהיה": {
+ "slug": "8339-shehiya",
+ "singular": "שְׁהִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1gnf5zx6vyn0c.mp3",
+ "plural": "שְׁהִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/2j/2j88w3wlfzs0.mp3",
+ "construct_singular": "שְׁהִיַּת־",
+ "construct_plural": "שְׁהִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "השהיה": {
+ "slug": "3838-hashhaya",
+ "singular": "הַשְׁהָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/wm/wm5j84g987op.mp3",
+ "plural": "הַשְׁהָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/db/db8im2l2ff53.mp3",
+ "construct_singular": "הַשְׁהָיַת־",
+ "construct_plural": "הַשְׁהָיוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שוא": {
+ "slug": "8434-shav",
+ "singular": "שָׁוְא",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2d2uf45zvie.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שָׁוְא־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "השואה": {
+ "slug": "4025-hashvaa",
+ "singular": "הַשְׁוָאָה",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rwp81ha2lyjb.mp3",
+ "plural": "הַשְׁוָאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/6h/6hojiklyvort.mp3",
+ "construct_singular": "הַשְׁוָאַת־",
+ "construct_plural": "הַשְׁוָאוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תשובה": {
+ "slug": "3744-tshuva",
+ "singular": "תְּשׁוּבָה",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1i1l41u3l8lj2.mp3",
+ "plural": "תְּשׁוּבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1n0csbooz23es.mp3",
+ "construct_singular": "תְּשׁוּבַת־",
+ "construct_plural": "תְּשׁוּבוֹת־",
+ "gender": "feminine",
+ "mishkal": "tkula"
+ },
+ "משוב": {
+ "slug": "5369-mashov",
+ "singular": "מָשׁוֹב",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1ocl6uvt1n4q4.mp3",
+ "plural": "מְשׁוֹבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qfb4rr8fmu3m.mp3",
+ "construct_singular": "מְשׁוֹב־",
+ "construct_plural": "מְשׁוֹבֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שיבה": {
+ "slug": "5130-shiva",
+ "singular": "שִׁיבָה",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fk8emkc741pi.mp3",
+ "plural": "שִׁיבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/14/14w2wrm2na640.mp3",
+ "construct_singular": "שִׁיבַת־",
+ "construct_plural": "שִׁיבוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "משיבון": {
+ "slug": "6362-meshivon",
+ "singular": "מְשִׁיבוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/na/na50kjzw9apx.mp3",
+ "plural": "מְשִׁיבוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e8c6skl5m3s6.mp3",
+ "construct_singular": "מְשִׁיבוֹן־",
+ "construct_plural": "מְשִׁיבוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שיטה": {
+ "slug": "5892-shita",
+ "singular": "שִׁיטָה",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fk8gqr108aaz.mp3",
+ "plural": "שִׁיטוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/14/14uif11tc2dpj.mp3",
+ "construct_singular": "שִׁיטַת־",
+ "construct_plural": "שִׁיטוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שוט": {
+ "slug": "9003-shot",
+ "singular": "שׁוֹט",
+ "singular_audio": "https://audio.pealim.com/v0/sv/sv0258e5btqb.mp3",
+ "plural": "שׁוֹטִים",
+ "plural_audio": "https://audio.pealim.com/v0/aa/aatml0kk2mn5.mp3",
+ "construct_singular": "שׁוֹט־",
+ "construct_plural": "שׁוֹטֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שויון": {
+ "slug": "8653-shivyon",
+ "singular": "שִׁוְיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/c0/c012vy1r15l9.mp3",
+ "plural": "שִׁוְיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/iy/iygvklsg5ug9.mp3",
+ "construct_singular": "שִׁוְיוֹן־",
+ "construct_plural": "שִׁוְיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "שוי": {
+ "slug": "7826-shovi",
+ "singular": "שֹׁוִי",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2dc9bjbedrl.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שֹׁוִי־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שלחן": {
+ "slug": "4939-shulchan",
+ "singular": "שֻׁלְחָן",
+ "singular_audio": "https://audio.pealim.com/v0/16/16k7276ydrgiy.mp3",
+ "plural": "שֻׁלְחָנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/t6/t6tlhwd08y1u.mp3",
+ "construct_singular": "שֻׁלְחַן־",
+ "construct_plural": "שֻׁלְחָנוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שולים": {
+ "slug": "4485-shulayim",
+ "singular": "שׁוּלַיִם",
+ "singular_audio": "https://audio.pealim.com/v0/c0/c0qq1a9dzl1i.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שׁוּלֵי־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שום": {
+ "slug": "6870-shum",
+ "singular": "שׁוּם",
+ "singular_audio": "https://audio.pealim.com/v0/sv/sv02573qwqna.mp3",
+ "plural": "שׁוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/ax/ax0lg48co01d.mp3",
+ "construct_singular": "שׁוּם־",
+ "construct_plural": "שׁוּמֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שמר": {
+ "slug": "8696-shumar",
+ "singular": "שֻׁמָּר",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rcoo9mw6rou8.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שֻׁמַּר־",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שמשם": {
+ "slug": "9289-shumshom",
+ "singular": "שֻׁמְשֹׁם",
+ "singular_audio": "https://audio.pealim.com/v0/c5/c5hvf1lbk9ng.mp3",
+ "plural": "שֻׁמְשֹׁמִין",
+ "plural_audio": "https://audio.pealim.com/v0/kr/kr28qyqmc7x6.mp3",
+ "construct_singular": "שֻׁמְשֹׁם־",
+ "construct_plural": "שֻׁמְשֹׁמֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תשועה": {
+ "slug": "8311-tshua",
+ "singular": "תְּשׁוּעָה",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1i1pjdjes2jzf.mp3",
+ "plural": "תְּשׁוּעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jq7ox17lrrdf.mp3",
+ "construct_singular": "תְּשׁוּעַת־",
+ "construct_plural": "תְּשׁוּעוֹת־",
+ "gender": "feminine",
+ "mishkal": "tkula"
+ },
+ "שועל": {
+ "slug": "7738-shual",
+ "singular": "שׁוּעָל",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w60wir5t09wd.mp3",
+ "plural": "שׁוּעָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18ctm1z1v21jb.mp3",
+ "construct_singular": "שׁוּעַל־",
+ "construct_plural": "שׁוּעֲלֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שופין": {
+ "slug": "8093-shofin",
+ "singular": "שׁוֹפִין",
+ "singular_audio": "https://audio.pealim.com/v0/ad/adih0eaj54fu.mp3",
+ "plural": "שׁוֹפִיןִים",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1see4c35nris6.mp3",
+ "construct_singular": "שׁוֹפִין־",
+ "construct_plural": "שׁוֹפִיןֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שוק": {
+ "slug": "6364-shok",
+ "singular": "שׁוֹק",
+ "singular_audio": "https://audio.pealim.com/v0/sv/sv025871nhtn.mp3",
+ "plural": "שׁוֹקַיִם",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1rvr444pgk53h.mp3",
+ "construct_singular": "שׁוֹק־",
+ "construct_plural": "שׁוֹקֵי־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תשוקה": {
+ "slug": "6752-tshuka",
+ "singular": "תְּשׁוּקָה",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1i1qu8idto7z1.mp3",
+ "plural": "תְּשׁוּקוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1irgs5fho59db.mp3",
+ "construct_singular": "תְּשׁוּקַת־",
+ "construct_plural": "תְּשׁוּקוֹת־",
+ "gender": "feminine",
+ "mishkal": "tkula"
+ },
+ "שווק": {
+ "slug": "6755-shivuk",
+ "singular": "שִׁוּוּק",
+ "singular_audio": "https://audio.pealim.com/v0/15/15sl3bdwsrufy.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שִׁוּוּק־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שוקולד": {
+ "slug": "6208-shokolad",
+ "singular": "שׁוֹקוֹלָד",
+ "singular_audio": "https://audio.pealim.com/v0/11/11pyo98aqw9mm.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שוקולדה": {
+ "slug": "6209-shokolada",
+ "singular": "שׁוֹקוֹלָדָה",
+ "singular_audio": "https://audio.pealim.com/v0/fi/fi005k487dwt.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שור": {
+ "slug": "4336-shor",
+ "singular": "שׁוֹר",
+ "singular_audio": "https://audio.pealim.com/v0/sv/sv02586klvf9.mp3",
+ "plural": "שְׁוָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/ji/ji35dzgdxkok.mp3",
+ "construct_singular": "שׁוֹר־",
+ "construct_plural": "שׁוֹרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תשורה": {
+ "slug": "5080-tshura",
+ "singular": "תְּשׁוּרָה",
+ "singular_audio": "https://audio.pealim.com/v0/1i/1i1r3lwku26df.mp3",
+ "plural": "תְּשׁוּרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1ikillicfc2if.mp3",
+ "construct_singular": "תְּשׁוּרַת־",
+ "construct_plural": "תְּשׁוּרוֹת־",
+ "gender": "feminine",
+ "mishkal": "tkula"
+ },
+ "שורה": {
+ "slug": "6701-shura",
+ "singular": "שׁוּרָה",
+ "singular_audio": "https://audio.pealim.com/v0/fr/frfdetlqmr9n.mp3",
+ "plural": "שׁוּרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/az/azhminbukcid.mp3",
+ "construct_singular": "שׁוּרַת־",
+ "construct_plural": "שׁוּרוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שושלת": {
+ "slug": "6699-shoshelet",
+ "singular": "שׁוֹשֶׁלֶת",
+ "singular_audio": "https://audio.pealim.com/v0/11/112olxfwsscza.mp3",
+ "plural": "שׁוֹשָׁלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wkh0795wolsc.mp3",
+ "construct_singular": "שׁוֹשֶׁלֶת־",
+ "construct_plural": "שׁוֹשְׁלוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "שושן": {
+ "slug": "7310-shoshan",
+ "singular": "שׁוֹשָׁן",
+ "singular_audio": "https://audio.pealim.com/v0/ae/aepxjh7273qk.mp3",
+ "plural": "שׁוֹשַׁנִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dnxjsum46tt4.mp3",
+ "construct_singular": "שׁוֹשַׁן־",
+ "construct_plural": "שׁוֹשַׁנֵּי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שושנה": {
+ "slug": "8359-shoshana",
+ "singular": "שׁוֹשַׁנָּה",
+ "singular_audio": "https://audio.pealim.com/v0/ua/ua5ha3340c9n.mp3",
+ "plural": "שׁוֹשַׁנִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dnxjsum46tt4.mp3",
+ "construct_singular": "שׁוֹשַׁנַּת־",
+ "construct_plural": "שׁוֹשַׁנֵּי־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שזיף": {
+ "slug": "7556-shezif",
+ "singular": "שְׁזִיף",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1p6eauz21xecw.mp3",
+ "plural": "שְׁזִיפִים",
+ "plural_audio": "https://audio.pealim.com/v0/tb/tbgwkegfw153.mp3",
+ "construct_singular": "שְׁזִיף־",
+ "construct_plural": "שְׁזִיפֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שזוף": {
+ "slug": "7510-shizuf",
+ "singular": "שִׁזּוּף",
+ "singular_audio": "https://audio.pealim.com/v0/15/15lmwsvbl7s78.mp3",
+ "plural": "שִׁזּוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vcpzlntxuib.mp3",
+ "construct_singular": "שִׁזּוּף־",
+ "construct_plural": "שִׁזּוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שחד": {
+ "slug": "3904-shochad",
+ "singular": "שֹׁחַד",
+ "singular_audio": "https://audio.pealim.com/v0/fl/flc0j346dfn7.mp3",
+ "plural": "שְׁחָדִים",
+ "plural_audio": "https://audio.pealim.com/v0/xz/xz2vrm4c1c3g.mp3",
+ "construct_singular": "שֹׁחַד־",
+ "construct_plural": "שָׁחֳדֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שחיה": {
+ "slug": "7078-schiya",
+ "singular": "שְׂחִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1oct7rf5v2dcm.mp3",
+ "plural": "שְׂחִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/k6/k62bp6934sla.mp3",
+ "construct_singular": "שְׂחִיַּת־",
+ "construct_plural": "שְׂחִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שחין": {
+ "slug": "3450-sachyan",
+ "singular": "שַׂחְיָן",
+ "singular_audio": "https://audio.pealim.com/v0/nv/nvupvj6t6a60.mp3",
+ "plural": "שַׂחְיָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1c2t9lx7dwkpp.mp3",
+ "construct_singular": "שַׂחְיַן־",
+ "construct_plural": "שַׂחְיָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "שחל": {
+ "slug": "7937-shachal",
+ "singular": "שַׁחַל",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkvvjssdl8le.mp3",
+ "plural": "שְׁחָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/w8/w8j8sbt5pqnh.mp3",
+ "construct_singular": "שַׁחַל־",
+ "construct_plural": "שַׁחֲלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שחמט": {
+ "slug": "6653-shachmat",
+ "singular": "שַׁחְמָט",
+ "singular_audio": "https://audio.pealim.com/v0/sm/smcbw1r611l4.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁחְמַט־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שחפת": {
+ "slug": "5444-shachefet",
+ "singular": "שַׁחֶפֶת",
+ "singular_audio": "https://audio.pealim.com/v0/9a/9aakjpzd13oa.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁחֶפֶת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "שחף": {
+ "slug": "7762-shachaf",
+ "singular": "שַׁחַף",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkvvm99fouz9.mp3",
+ "plural": "שְׁחָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/uo/uoxscyn8bsz3.mp3",
+ "construct_singular": "שַׁחַף־",
+ "construct_plural": "שַׁחֲפֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שחץ": {
+ "slug": "3907-shachatz",
+ "singular": "שַׁחַץ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qja5ok8mn302.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁחַץ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שחצן": {
+ "slug": "3908-shachtzan",
+ "singular": "שַׁחְצָן",
+ "singular_audio": "https://audio.pealim.com/v0/18/18smse0ua5c5b.mp3",
+ "plural": "שַׁחְצָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vndajrjryp60.mp3",
+ "construct_singular": "שַׁחְצַן־",
+ "construct_plural": "שַׁחְצָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "משחק": {
+ "slug": "3162-mischak",
+ "singular": "מִשְׂחָק",
+ "singular_audio": "https://audio.pealim.com/v0/5w/5weapdvhjon6.mp3",
+ "plural": "מִשְׂחָקִים",
+ "plural_audio": "https://audio.pealim.com/v0/ui/ui97aa8pl44m.mp3",
+ "construct_singular": "מִשְׂחַק־",
+ "construct_plural": "מִשְׂחֲקֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שחקן": {
+ "slug": "3163-sachkan",
+ "singular": "שַׂחְקָן",
+ "singular_audio": "https://audio.pealim.com/v0/ns/nspqeeo6niff.mp3",
+ "plural": "שַׂחְקָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/eo/eo3gqvkxqvu6.mp3",
+ "construct_singular": "שַׂחְקַן־",
+ "construct_plural": "שַׂחְקָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "השחרה": {
+ "slug": "2915-hashchara",
+ "singular": "הַשְׁחָרָה",
+ "singular_audio": "https://audio.pealim.com/v0/vg/vg8yq426lx6m.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַשְׁחָרַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שחר": {
+ "slug": "4116-shachar",
+ "singular": "שַׁחַר",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkvvo0gh6vjw.mp3",
+ "plural": "שְׁחָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/tx/tx525a29d9bz.mp3",
+ "construct_singular": "שַׁחַר־",
+ "construct_plural": "שַׁחֲרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שוחר": {
+ "slug": "8179-shocher",
+ "singular": "שׁוֹחֵר",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w59t1b52y6lj.mp3",
+ "plural": "שׁוֹחֲרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cz7g92gw14sy.mp3",
+ "construct_singular": "שׁוֹחֵר־",
+ "construct_plural": "שׁוֹחֲרֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שחרור": {
+ "slug": "4290-shichrur",
+ "singular": "שִׁחְרוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mizpakafg8p1.mp3",
+ "plural": "שִׁחְרוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/mz/mzigee5xvm7h.mp3",
+ "construct_singular": "שִׁחְרוּר־",
+ "construct_plural": "שִׁחְרוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שחיתות": {
+ "slug": "6520-shchitut",
+ "singular": "שְׁחִיתוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1v5mf1pmsgjgo.mp3",
+ "plural": "שְׁחִיתֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1txm1gkww6unw.mp3",
+ "construct_singular": "שְׁחִיתוּת־",
+ "construct_plural": "שְׁחִיתֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שטח": {
+ "slug": "6095-shetach",
+ "singular": "שֶׁטַח",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fko2c7r2ajrl.mp3",
+ "plural": "שְׁטָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/c5/c5sr6i0vv0sv.mp3",
+ "construct_singular": "שֶׁטַח־",
+ "construct_plural": "שִׁטְחֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שטיח": {
+ "slug": "4103-shatiach",
+ "singular": "שָׁטִיחַ",
+ "singular_audio": "https://audio.pealim.com/v0/nh/nh2e3ur6x10h.mp3",
+ "plural": "שְׁטִיחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1u98ulidtajde.mp3",
+ "construct_singular": "שְׁטִיחַ־",
+ "construct_plural": "שְׁטִיחֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "שטיחון": {
+ "slug": "9079-shtichon",
+ "singular": "שְׁטִיחוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1u22u9zrqhk3s.mp3",
+ "plural": "שְׁטִיחוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/mp/mp8kidu5a8d.mp3",
+ "construct_singular": "שְׁטִיחוֹן־",
+ "construct_plural": "שְׁטִיחוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שטח הפקר": {
+ "slug": "7591-shetach-hefker",
+ "singular": "שֶׁטַח הֶפְקֵר",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mrcbdayscijy.mp3",
+ "plural": "שִׁטְחֵי הֶפְקֵר",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1fcrz4z9g2pk9.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שטות": {
+ "slug": "3759-shtut",
+ "singular": "שְׁטוּת",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fjbwdgrui2oi.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁטוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktut"
+ },
+ "שטפון": {
+ "slug": "3584-shitafon",
+ "singular": "שִׁטָּפוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/13/139isbxqggfje.mp3",
+ "plural": "שִׁטְפוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1ph7msfuigp2f.mp3",
+ "construct_singular": "שִׁטְפוֹן־",
+ "construct_plural": "שִׁטְפוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "שטיפה": {
+ "slug": "9035-shtifa",
+ "singular": "שְׁטִיפָה",
+ "singular_audio": "https://audio.pealim.com/v0/1n/1n4p2gclzb7qd.mp3",
+ "plural": "שְׁטִיפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1rjqdray6kn4z.mp3",
+ "construct_singular": "שְׁטִיפַת־",
+ "construct_plural": "שְׁטִיפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "משטר": {
+ "slug": "5683-mishtar",
+ "singular": "מִשְׁטָר",
+ "singular_audio": "https://audio.pealim.com/v0/2t/2t9m1krbmk3.mp3",
+ "plural": "מִשְׁטָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18a0wjo6tt4td.mp3",
+ "construct_singular": "מִשְׁטַר־",
+ "construct_plural": "מִשְׁטְרֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שוטר": {
+ "slug": "4664-shoter",
+ "singular": "שׁוֹטֵר",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w5a2epbo8lyx.mp3",
+ "plural": "שׁוֹטְרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lkv126d6cs6p.mp3",
+ "construct_singular": "שׁוֹטֵר־",
+ "construct_plural": "שׁוֹטְרֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "משטרה": {
+ "slug": "4665-mishtara",
+ "singular": "מִשְׁטָרָה",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rcrea5pl9qca.mp3",
+ "plural": "מִשְׁטָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/18/18mvu74e0ncqs.mp3",
+ "construct_singular": "מִשְׁטֶרֶת־",
+ "construct_plural": "מִשְׁטְרוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktala"
+ },
+ "שטר": {
+ "slug": "7821-shtar",
+ "singular": "שְׁטָר",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2b0uzw6r5w3.mp3",
+ "plural": "שְׁטָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/fn/fn3y8e1hjgoe.mp3",
+ "construct_singular": "שְׁטַר־",
+ "construct_plural": "שִׁטְרֵי־",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "שטרודל": {
+ "slug": "5348-shtrudel",
+ "singular": "שִׁטְרוּדֶל",
+ "singular_audio": "https://audio.pealim.com/v0/gx/gx1x3wr0wxyp.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שבלת שועל": {
+ "slug": "7965-shibolet-shual",
+ "singular": "שִׁבֹּלֶת שׁוּעָל",
+ "singular_audio": "https://audio.pealim.com/v0/pi/piemdge6ed1b.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שיה": {
+ "slug": "4417-seya",
+ "singular": "שֵׂיָה",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2kejuc7cfkx.mp3",
+ "plural": "שֵׂיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1w5he1scvby9n.mp3",
+ "construct_singular": "שֵׂיַת־",
+ "construct_plural": "שֵׂיוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שיחה": {
+ "slug": "4849-sicha",
+ "singular": "שִׂיחָה",
+ "singular_audio": "https://audio.pealim.com/v0/fr/fr6mzs4xs9os.mp3",
+ "plural": "שִׂיחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/4i/4icf69yignh0.mp3",
+ "construct_singular": "שִׂיחַת־",
+ "construct_plural": "שִׂיחוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שיח": {
+ "slug": "6763-siach",
+ "singular": "שִׂיחַ",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2k5h04t6bpb.mp3",
+ "plural": "שִׂיחִים",
+ "plural_audio": "https://audio.pealim.com/v0/4i/4i43fz8bl0r9.mp3",
+ "construct_singular": "שִׂיחַ־",
+ "construct_plural": "שִׂיחֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שיט": {
+ "slug": "6838-shayit",
+ "singular": "שַׁיִט",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkwdcj6kr884.mp3",
+ "plural": "שְׁיָטִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lptuh5rq4dze.mp3",
+ "construct_singular": "שֵׁיט־",
+ "construct_plural": "שֵׁיטֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שיוט": {
+ "slug": "4691-shiyut",
+ "singular": "שִׁיּוּט",
+ "singular_audio": "https://audio.pealim.com/v0/15/150sd8ywyqo66.mp3",
+ "plural": "שִׁיּוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1td6sg11xetmi.mp3",
+ "construct_singular": "שִׁיּוּט־",
+ "construct_plural": "שִׁיּוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שי": {
+ "slug": "7536-shay",
+ "singular": "שַׁי",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkspuy1sjpk3.mp3",
+ "plural": "שָׁיִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qqnytwhutero.mp3",
+ "construct_singular": "שַׁי־",
+ "construct_plural": "שָׁיֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שיש": {
+ "slug": "8438-shayish",
+ "singular": "שַׁיִשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qjpwuagtb4p5.mp3",
+ "plural": "שֵׁישִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/17/17lcu3oi4bf8q.mp3",
+ "construct_singular": "שֵׁישׁ־",
+ "construct_plural": "שֵׁישֵׁי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "משימה": {
+ "slug": "3756-mesima",
+ "singular": "מְשִׂימָה",
+ "singular_audio": "https://audio.pealim.com/v0/10/10t5f6gb2axqn.mp3",
+ "plural": "מְשִׂימוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1q52d8s1zafp7.mp3",
+ "construct_singular": "מְשִׂימַת־",
+ "construct_plural": "מְשִׂימוֹת־",
+ "gender": "feminine",
+ "mishkal": "mekila"
+ },
+ "השמה": {
+ "slug": "3929-hasama",
+ "singular": "הֲשָׂמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1puypf8e5mkpb.mp3",
+ "plural": "הֲשָׂמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ts/tsry2671jdal.mp3",
+ "construct_singular": "הֲשָׂמַת־",
+ "construct_plural": "הֲשָׂמוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תשומה": {
+ "slug": "7645-tsuma",
+ "singular": "תְּשׂוּמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1o1451hx56xq1.mp3",
+ "plural": "תְּשׂוּמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1fqeiehetbto7.mp3",
+ "construct_singular": "תְּשׂוּמַת־",
+ "construct_plural": "תְּשׂוּמוֹת־",
+ "gender": "feminine",
+ "mishkal": "tkula"
+ },
+ "שיר": {
+ "slug": "9137-shyar",
+ "singular": "שְׁיָר",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2b15vpfvobi.mp3",
+ "plural": "שְׁיָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1ot0rbw3l2n7g.mp3",
+ "construct_singular": "שְׁיַר־",
+ "construct_plural": "שְׁיָרֵי־",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "שירה": {
+ "slug": "4338-shira",
+ "singular": "שִׁירָה",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fk8lkw152lkp.mp3",
+ "plural": "שִׁירוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/14/14qxahh81t7yt.mp3",
+ "construct_singular": "שִׁירַת־",
+ "construct_plural": "שִׁירוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שיור": {
+ "slug": "9032-shiyur",
+ "singular": "שִׁיּוּר",
+ "singular_audio": "https://audio.pealim.com/v0/15/150sd3cotxtkg.mp3",
+ "plural": "שִׁיּוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/ud/udri0n5r5fiw.mp3",
+ "construct_singular": "שִׁיּוּר־",
+ "construct_plural": "שִׁיּוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "ששון": {
+ "slug": "8397-sason",
+ "singular": "שָׂשׂוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/ve/vekfbmiq15pg.mp3",
+ "plural": "שְׂשׂוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/we/wenm5ljyzhi5.mp3",
+ "construct_singular": "שְׂשׂוֹן־",
+ "construct_plural": "שְׂשׂוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "ששיה": {
+ "slug": "8302-shishiya",
+ "singular": "שִשִּיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/c9/c9uys34l51ll.mp3",
+ "plural": "שִשִּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/sc/scb29itipisn.mp3",
+ "construct_singular": "שִשִּיַּת־",
+ "construct_plural": "שִשִּיּוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שתוף פעלה": {
+ "slug": "7392-shituf-peula",
+ "singular": "שִׁתּוּף פְּעֻלָּה",
+ "singular_audio": "https://audio.pealim.com/v0/jy/jyhz5bdh0vpe.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "משכב": {
+ "slug": "5811-mishkav",
+ "singular": "מִשְׁכָּב",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1thh89w45snu.mp3",
+ "plural": "מִשְׁכָּבִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/165vs5u06ety2.mp3",
+ "construct_singular": "מִשְׁכַּב־",
+ "construct_plural": "מִשְׁכְּבֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שכבה": {
+ "slug": "3917-shichva",
+ "singular": "שִׁכְבָה",
+ "singular_audio": "https://audio.pealim.com/v0/14/14plxabn4rpjd.mp3",
+ "plural": "שְׁכָבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/75/754gpoxzq3kb.mp3",
+ "construct_singular": "שִׁכְבַת־",
+ "construct_plural": "שִׁכְבוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שכיחות": {
+ "slug": "5938-shchichut",
+ "singular": "שְׁכִיחוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1fr88mi1veguc.mp3",
+ "plural": "שְׁכִיחֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/er/ermm5tn36d6i.mp3",
+ "construct_singular": "שְׁכִיחוּת־",
+ "construct_plural": "שְׁכִיחֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שכל": {
+ "slug": "3202-sechel",
+ "singular": "שֵׂכֶל",
+ "singular_audio": "https://audio.pealim.com/v0/fr/frey7rvt4qei.mp3",
+ "plural": "שְׂכָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/go/govipqwf0d9a.mp3",
+ "construct_singular": "שֵׂכֶל־",
+ "construct_plural": "שִׂכְלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שכלתן": {
+ "slug": "3460-schaltan",
+ "singular": "שְׂכַלְתָּן",
+ "singular_audio": "https://audio.pealim.com/v0/19/192unaagyaz8z.mp3",
+ "plural": "שְׂכַלְתָּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1alryl3awxr70.mp3",
+ "construct_singular": "שְׂכַלְתַּן־",
+ "construct_plural": "שְׂכַלְתָּנֵי־",
+ "gender": "masculine",
+ "mishkal": "ktaltan"
+ },
+ "שכול": {
+ "slug": "8707-shchol",
+ "singular": "שְׁכוֹל",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fjcogfqsadtv.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁכוֹל־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ktol"
+ },
+ "השכלה": {
+ "slug": "7396-haskala",
+ "singular": "הַשְׂכָּלָה",
+ "singular_audio": "https://audio.pealim.com/v0/ah/ah2w62blwjn3.mp3",
+ "plural": "הַשְׂכָּלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/c0/c0igvm8h4fh1.mp3",
+ "construct_singular": "הַשְׂכָּלַת־",
+ "construct_plural": "הַשְׂכָּלוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "אשכול": {
+ "slug": "6893-eshkol",
+ "singular": "אֶשְׁכּוֹל",
+ "singular_audio": "https://audio.pealim.com/v0/7m/7mi7ofmifo6g.mp3",
+ "plural": "אֶשְׁכּוֹלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/mw/mwbrppv4c5tn.mp3",
+ "construct_singular": "אֶשְׁכּוֹל־",
+ "construct_plural": "אֶשְׁכּוֹלוֹת־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "אשכולית": {
+ "slug": "6894-eshkolit",
+ "singular": "אֶשְׁכּוֹלִית",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1u3hvyz70qb0e.mp3",
+ "plural": "אֶשְׁכּוֹלִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/dd/ddbc3jy2hxj3.mp3",
+ "construct_singular": "אֶשְׁכּוֹלִית־",
+ "construct_plural": "אֶשְׁכּוֹלִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שכלול": {
+ "slug": "4704-shichlul",
+ "singular": "שִׁכְלוּל",
+ "singular_audio": "https://audio.pealim.com/v0/jj/jjgdmazjqybt.mp3",
+ "plural": "שִׁכְלוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lq17lev5kx9f.mp3",
+ "construct_singular": "שִׁכְלוּל־",
+ "construct_plural": "שִׁכְלוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "השתכללות": {
+ "slug": "4705-hishtachlelut",
+ "singular": "הִשְׁתַּכְלְלוּת",
+ "singular_audio": "https://audio.pealim.com/v0/wm/wmab8b1k04tc.mp3",
+ "plural": "הִשְׁתַּכְלְלֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1usc8lcrhosu6.mp3",
+ "construct_singular": "הִשְׁתַּכְלְלוּת־",
+ "construct_plural": "הִשְׁתַּכְלְלֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שכמה": {
+ "slug": "8579-shichma",
+ "singular": "שִׁכְמָה",
+ "singular_audio": "https://audio.pealim.com/v0/14/14pijg73zschr.mp3",
+ "plural": "שְׁכָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/9n/9ngtwnu4hq13.mp3",
+ "construct_singular": "שִׁכְמַת־",
+ "construct_plural": "שִׁכְמוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שכם": {
+ "slug": "7173-shechem",
+ "singular": "שֶׁכֶם",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkou7mcwff18.mp3",
+ "plural": "שְׁכָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/9g/9gaq9fa7cvho.mp3",
+ "construct_singular": "שֶׁכֶם־",
+ "construct_plural": "שִׁכְמֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שכונה": {
+ "slug": "3664-shchuna",
+ "singular": "שְׁכוּנָה",
+ "singular_audio": "https://audio.pealim.com/v0/yz/yzl7pdr73b59.mp3",
+ "plural": "שְׁכוּנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/c2/c2uq0urrgtcn.mp3",
+ "construct_singular": "שְׁכוּנַת־",
+ "construct_plural": "שְׁכוּנוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktula"
+ },
+ "משתכן": {
+ "slug": "4920-mishtaken",
+ "singular": "מִשְׁתַּכֵּן",
+ "singular_audio": "https://audio.pealim.com/v0/cy/cy5u2ndehx3f.mp3",
+ "plural": "מִשְׁתַּכְּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/jh/jhijckga7ft8.mp3",
+ "construct_singular": "מִשְׁתַּכֵּן־",
+ "construct_plural": "מִשְׁתַּכְּנֵי־",
+ "gender": "masculine",
+ "mishkal": "mitkattel"
+ },
+ "שכינה": {
+ "slug": "7558-shchina",
+ "singular": "שְׁכִינָה",
+ "singular_audio": "https://audio.pealim.com/v0/15/156f6hahl2ccj.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁכִינַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שכן": {
+ "slug": "6340-shachen",
+ "singular": "שָׁכֵן",
+ "singular_audio": "https://audio.pealim.com/v0/fl/fl4yzvwdcn9w.mp3",
+ "plural": "שְׁכֵנִים",
+ "plural_audio": "https://audio.pealim.com/v0/84/843u3cyowwl2.mp3",
+ "construct_singular": "שְׁכֵן־",
+ "construct_plural": "שְׁכֵנֵי־",
+ "gender": "masculine",
+ "mishkal": "katel"
+ },
+ "משכנתה": {
+ "slug": "6363-mashkanta",
+ "singular": "מַשְׁכַּנְתָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rtw81ngi2qwm.mp3",
+ "plural": "מַשְׁכַּנְתּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/nn/nnn8xg1qw4sc.mp3",
+ "construct_singular": "מַשְׁכַּנְתַּת־",
+ "construct_plural": "מַשְׁכַּנְתּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "משכן": {
+ "slug": "6769-mishkan",
+ "singular": "מִשְׁכָּן",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1thczwihx8ic.mp3",
+ "plural": "מִשְׁכָּנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v1rgl4a1dcaa.mp3",
+ "construct_singular": "מִשְׁכַּן־",
+ "construct_plural": "מִשְׁכְּנוֹת־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שכנוע": {
+ "slug": "6585-shichnua",
+ "singular": "שִׁכְנוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/17/17bunxsjb62m7.mp3",
+ "plural": "שִׁכְנוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/dz/dz44u69k9anr.mp3",
+ "construct_singular": "שִׁכְנוּעַ־",
+ "construct_plural": "שִׁכְנוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שכירות": {
+ "slug": "6560-schirut",
+ "singular": "שְׂכִירוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bqar3kktnk6p.mp3",
+ "plural": "שְׂכִירֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/9o/9o3t5xg9ni1b.mp3",
+ "construct_singular": "שְׂכִירוּת־",
+ "construct_plural": "שְׂכִירֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "משכרת": {
+ "slug": "5431-maskoret",
+ "singular": "מַשְׂכֹּרֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1ogkqeqo3isg3.mp3",
+ "plural": "מַשְׂכּוֹרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1r/1rhnyn82jv01g.mp3",
+ "construct_singular": "מַשְׂכֹּרֶת־",
+ "construct_plural": "מַשְׂכּוֹרוֹת־",
+ "gender": "feminine",
+ "mishkal": "maktolet"
+ },
+ "השכרה": {
+ "slug": "2924-haskara",
+ "singular": "הַשְׂכָּרָה",
+ "singular_audio": "https://audio.pealim.com/v0/cs/csh2t42i5bhl.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַשְׂכָּרַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שכירה": {
+ "slug": "2925-schira",
+ "singular": "שְׂכִירָה",
+ "singular_audio": "https://audio.pealim.com/v0/10/10er6rwjh14fq.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׂכִירַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שכר": {
+ "slug": "2926-sachar",
+ "singular": "שָׂכָר",
+ "singular_audio": "https://audio.pealim.com/v0/fs/fs36jfagur6l.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׂכַר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "שכור": {
+ "slug": "7820-shikor",
+ "singular": "שִׁכּוֹר",
+ "singular_audio": "https://audio.pealim.com/v0/14/14mw0w5u4gk0s.mp3",
+ "plural": "שִׁכּוֹרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hg3g9ucl86lm.mp3",
+ "construct_singular": "שִׁכּוֹר־",
+ "construct_plural": "שִׁכּוֹרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittol"
+ },
+ "שלוב": {
+ "slug": "4329-shiluv",
+ "singular": "שִׁלּוּב",
+ "singular_audio": "https://audio.pealim.com/v0/14/14fxtnnyaquqi.mp3",
+ "plural": "שִׁלּוּבִים",
+ "plural_audio": "https://audio.pealim.com/v0/15/157jdwbj0xxj2.mp3",
+ "construct_singular": "שִׁלּוּב־",
+ "construct_plural": "שִׁלּוּבֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תשלבת": {
+ "slug": "3258-tishlovet",
+ "singular": "תִּשְׁלֹבֶת",
+ "singular_audio": "https://audio.pealim.com/v0/sa/sadw053mccu7.mp3",
+ "plural": "תִּשְׁלוֹבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1ohr7qnkcftzo.mp3",
+ "construct_singular": "תִּשְׁלֹבֶת־",
+ "construct_plural": "תִּשְׁלוֹבוֹת־",
+ "gender": "feminine",
+ "mishkal": "tiktolet"
+ },
+ "שלב": {
+ "slug": "3259-shalav",
+ "singular": "שָׁלָב",
+ "singular_audio": "https://audio.pealim.com/v0/fl/fl5950km7bwj.mp3",
+ "plural": "שְׁלַבִּים",
+ "plural_audio": "https://audio.pealim.com/v0/zt/ztbge80u25s7.mp3",
+ "construct_singular": "שְׁלַב־",
+ "construct_plural": "שְׁלַבֵּי־",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "משלב": {
+ "slug": "3551-mishlav",
+ "singular": "מִשְׁלָב",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1x6fh4durcq.mp3",
+ "plural": "מִשְׁלַבִּים",
+ "plural_audio": "https://audio.pealim.com/v0/wg/wgnc34uqb0sf.mp3",
+ "construct_singular": "מִשְׁלַב־",
+ "construct_plural": "מִשְׁלִבֵּי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שלג": {
+ "slug": "3185-sheleg",
+ "singular": "שֶׁלֶג",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkp3h5it0p8l.mp3",
+ "plural": "שְׁלָגִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1ghzgcszcfahk.mp3",
+ "construct_singular": "שֶׁלֶג־",
+ "construct_plural": "שִׁלְגֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שלגון": {
+ "slug": "7651-shilgon",
+ "singular": "שִׁלְגּוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/z9/z91fmrz72rum.mp3",
+ "plural": "שִׁלְגּוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1k/1k3y27m046dwd.mp3",
+ "construct_singular": "שִׁלְגּוֹן־",
+ "construct_plural": "שִׁלְגּוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שלגיה": {
+ "slug": "9262-shilgiya",
+ "singular": "שִׁלְגִּיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/ig/igyo9qaoraxl.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "אשלג": {
+ "slug": "6206-ashlag",
+ "singular": "אַשְׁלָג",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bnmd3yvh68ag.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "אַשְׁלַג־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "aktal"
+ },
+ "אשלגן": {
+ "slug": "6207-ashlegan",
+ "singular": "אַשְׁלְגַן",
+ "singular_audio": "https://audio.pealim.com/v0/2y/2yh89suy793n.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "אַשְׁלְגַן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שלד": {
+ "slug": "6273-sheled",
+ "singular": "שֶׁלֶד",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkp3hi5tbi5d.mp3",
+ "plural": "שְׁלָדִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1goxmwq4l23h6.mp3",
+ "construct_singular": "שֶׁלֶד־",
+ "construct_plural": "שִׁלְדֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שלהבת": {
+ "slug": "3612-shalhevet",
+ "singular": "שַׁלְהֶבֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1x7ngg2b8tbof.mp3",
+ "plural": "שַׁלְהָבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/an/anedsqksgs3b.mp3",
+ "construct_singular": "שַׁלְהֶבֶת־",
+ "construct_plural": "שַׁלְהֲבוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "שלוה": {
+ "slug": "3456-shalva",
+ "singular": "שַׁלְוָה",
+ "singular_audio": "https://audio.pealim.com/v0/mk/mkbrs76ybjw8.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁלְוַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "שלוק": {
+ "slug": "9059-shluk",
+ "singular": "שְׁלוּק",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fjcxv0bupcy2.mp3",
+ "plural": "שְׁלוּקִים",
+ "plural_audio": "https://audio.pealim.com/v0/hz/hzxsz69u4u9g.mp3",
+ "construct_singular": "שְׁלוּק־",
+ "construct_plural": "שְׁלוּקֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שליחות": {
+ "slug": "8272-shlichut",
+ "singular": "שְׁלִיחוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1azmbwe0kcq2w.mp3",
+ "plural": "שְׁלִיחֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e5hdpgxotp0.mp3",
+ "construct_singular": "שְׁלִיחוּת־",
+ "construct_plural": "שְׁלִיחֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שליח": {
+ "slug": "4356-shaliach",
+ "singular": "שָׁלִיחַ",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1besyq0szo21p.mp3",
+ "plural": "שְׁלִיחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1b6t7nt5in4p2.mp3",
+ "construct_singular": "שְׁלִיחַ־",
+ "construct_plural": "שְׁלִיחֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "משלוח": {
+ "slug": "8876-mishloach",
+ "singular": "מִשְׁלוֹחַ",
+ "singular_audio": "https://audio.pealim.com/v0/az/azdbm4adtf4z.mp3",
+ "plural": "מִשְׁלוֹחִים",
+ "plural_audio": "https://audio.pealim.com/v0/19/19bpwvh402k61.mp3",
+ "construct_singular": "מִשְׁלוֹחַ־",
+ "construct_plural": "מִשְׁלוֹחֵי־",
+ "gender": "masculine",
+ "mishkal": "miktol"
+ },
+ "שלוחה": {
+ "slug": "8013-shlucha",
+ "singular": "שְׁלוּחָה",
+ "singular_audio": "https://audio.pealim.com/v0/t0/t07wwecx2vt1.mp3",
+ "plural": "שְׁלוּחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/f3/f3wzroibjabn.mp3",
+ "construct_singular": "שְׁלוּחַת־",
+ "construct_plural": "שְׁלוּחוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktula"
+ },
+ "משלחת": {
+ "slug": "6948-mishlachat",
+ "singular": "מִשְׁלַחַת",
+ "singular_audio": "https://audio.pealim.com/v0/dy/dyh34v9asvpg.mp3",
+ "plural": "מִשְׁלָחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jkzi96mo0x18.mp3",
+ "construct_singular": "מִשְׁלַחַת־",
+ "construct_plural": "מִשְׁלְחוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "שליט": {
+ "slug": "3321-shalit",
+ "singular": "שַׁלִּיט",
+ "singular_audio": "https://audio.pealim.com/v0/mh/mhv8myss2jxy.mp3",
+ "plural": "שַׁלִּיטִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16iowwl590zf2.mp3",
+ "construct_singular": "שַׁלִּיט־",
+ "construct_plural": "שַׁלִּיטֵי־",
+ "gender": "masculine",
+ "mishkal": "kattil"
+ },
+ "שלטון": {
+ "slug": "3592-shilton",
+ "singular": "שִׁלְטוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/p1/p1t1p7nv7dw9.mp3",
+ "plural": "שִׁלְטוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/e7/e77xg81ys393.mp3",
+ "construct_singular": "שִׁלְטוֹן־",
+ "construct_plural": "שִׁלְטוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "שלט": {
+ "slug": "5987-shalat",
+ "singular": "שַׁלָּט",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qkfstw04f4m9.mp3",
+ "plural": "שַׁלָּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/3f/3f2uywdhjl7.mp3",
+ "construct_singular": "שַׁלַּט־",
+ "construct_plural": "שַׁלָּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "השתלטות": {
+ "slug": "7498-hishtaltut",
+ "singular": "הִשְׁתַּלְּטוּת",
+ "singular_audio": "https://audio.pealim.com/v0/av/av5qnw2j5kz.mp3",
+ "plural": "הִשְׁתַּלְּטֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/fx/fxltkitql96x.mp3",
+ "construct_singular": "הִשְׁתַּלְּטוּת־",
+ "construct_plural": "הִשְׁתַּלְּטֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שלוט": {
+ "slug": "9265-shilut",
+ "singular": "שִׁלּוּט",
+ "singular_audio": "https://audio.pealim.com/v0/14/14fxtl7h8n8cj.mp3",
+ "plural": "שִׁלּוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1l1t51y1qve49.mp3",
+ "construct_singular": "שִׁלּוּט־",
+ "construct_plural": "שִׁלּוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שליטה": {
+ "slug": "9209-shlita",
+ "singular": "שְׁלִיטָה",
+ "singular_audio": "https://audio.pealim.com/v0/z7/z71mawwb5mtr.mp3",
+ "plural": "שְׁלִיטוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1asoxgngrwy1l.mp3",
+ "construct_singular": "שְׁלִיטַת־",
+ "construct_plural": "שְׁלִיטוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "אשליה": {
+ "slug": "2916-ashlaya",
+ "singular": "אַשְׁלָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/hh/hhju6c5br0hh.mp3",
+ "plural": "אַשְׁלָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/oa/oa8ozpe18wtx.mp3",
+ "construct_singular": "אַשְׁלָיַת־",
+ "construct_plural": "אַשְׁלָיוֹת־",
+ "gender": "feminine",
+ "mishkal": "aktala"
+ },
+ "שליה": {
+ "slug": "7790-shilya",
+ "singular": "שִׁלְיָה",
+ "singular_audio": "https://audio.pealim.com/v0/14/14ilnr8y898jn.mp3",
+ "plural": "שְׁלָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1i1stvhjyf3mx.mp3",
+ "construct_singular": "שִׁלְיַת־",
+ "construct_plural": "שִׁלְיוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שליתן": {
+ "slug": "8468-shilyatan",
+ "singular": "שִׁלְיָתָן",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qiwk99neatc5.mp3",
+ "plural": "שִׁלְיָתָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/bo/bome33ezht32.mp3",
+ "construct_singular": "שִׁלְיָתַן־",
+ "construct_plural": "שִׁלְיָתָנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שלו": {
+ "slug": "8755-slav",
+ "singular": "שְׂלָו",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2j4lj7lv14x.mp3",
+ "plural": "שְׂלָוִים",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1opb5kqbrslsl.mp3",
+ "construct_singular": "שְׂלַו־",
+ "construct_plural": "שְׂלָוֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "השלכה": {
+ "slug": "3879-hashlacha",
+ "singular": "הַשְׁלָכָה",
+ "singular_audio": "https://audio.pealim.com/v0/oj/ojgwt9tk4tvk.mp3",
+ "plural": "הַשְׁלָכוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qngchr971gy.mp3",
+ "construct_singular": "הַשְׁלָכַת־",
+ "construct_plural": "הַשְׁלָכוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שלכת": {
+ "slug": "4099-shalechet",
+ "singular": "שַׁלֶּכֶת",
+ "singular_audio": "https://audio.pealim.com/v0/k9/k9mi54uacmku.mp3",
+ "plural": "שַׁלָּכוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/o7/o7z5bylrijui.mp3",
+ "construct_singular": "שַׁלֶּכֶת־",
+ "construct_plural": "שַׁלְּכוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "השתוללות": {
+ "slug": "4278-hishtolelut",
+ "singular": "הִשְׁתּוֹלְלוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1ef4rl2haw70t.mp3",
+ "plural": "הִשְׁתּוֹלְלֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/2l/2l9vx9yxjxmt.mp3",
+ "construct_singular": "הִשְׁתּוֹלְלוּת־",
+ "construct_plural": "הִשְׁתּוֹלְלֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שלל": {
+ "slug": "8318-shlal",
+ "singular": "שְׁלָל",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2b22e9328i5.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁלַל־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "שלולית": {
+ "slug": "9283-shlulit",
+ "singular": "שְׁלוּלִית",
+ "singular_audio": "https://audio.pealim.com/v0/fv/fvhwtj8jj7o2.mp3",
+ "plural": "שְׁלוּלִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/s0/s0lw0tnptwd5.mp3",
+ "construct_singular": "שְׁלוּלִית־",
+ "construct_plural": "שְׁלוּלִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שלילה": {
+ "slug": "9140-shlila",
+ "singular": "שְׁלִילָה",
+ "singular_audio": "https://audio.pealim.com/v0/z7/z70ktc49mjx7.mp3",
+ "plural": "שְׁלִילוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1a0w78yvtb651.mp3",
+ "construct_singular": "שְׁלִילַת־",
+ "construct_plural": "שְׁלִילוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שלמות": {
+ "slug": "8399-shlemut",
+ "singular": "שְׁלֵמוּת",
+ "singular_audio": "https://audio.pealim.com/v0/11/1129lanbtebgl.mp3",
+ "plural": "שִׁלְמֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/5g/5gdxjt319ihq.mp3",
+ "construct_singular": "שִׁלְמוּת־",
+ "construct_plural": "שִׁלְמֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שלום": {
+ "slug": "3126-shalom",
+ "singular": "שָׁלוֹם",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qrki1b0xic16.mp3",
+ "plural": "שְׁלוֹמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hqnti0y1bo3.mp3",
+ "construct_singular": "שְׁלוֹם־",
+ "construct_plural": "שְׁלוֹמוֹת־",
+ "gender": "masculine",
+ "mishkal": "katol"
+ },
+ "תשלום": {
+ "slug": "3626-tashlum",
+ "singular": "תַּשְׁלוּם",
+ "singular_audio": "https://audio.pealim.com/v0/s4/s4jab3kevnae.mp3",
+ "plural": "תַּשְׁלוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xwy46r9sgjuf.mp3",
+ "construct_singular": "תַּשְׁלוּם־",
+ "construct_plural": "תַּשְׁלוּמֵי־",
+ "gender": "masculine",
+ "mishkal": "taktul"
+ },
+ "השלמה": {
+ "slug": "4384-hashlama",
+ "singular": "הַשְׁלָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/ny/nymd5idukc8t.mp3",
+ "plural": "הַשְׁלָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/5s/5ssr5bpjulyz.mp3",
+ "construct_singular": "הַשְׁלָמַת־",
+ "construct_plural": "הַשְׁלָמוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "השתלמות": {
+ "slug": "4344-hishtalmut",
+ "singular": "הִשְׁתַּלְּמוּת",
+ "singular_audio": "https://audio.pealim.com/v0/sa/sasanw41uy96.mp3",
+ "plural": "הִשְׁתַּלְּמֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1sb7kuo9izzva.mp3",
+ "construct_singular": "הִשְׁתַּלְּמוּת־",
+ "construct_plural": "הִשְׁתַּלְּמֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שליף": {
+ "slug": "6169-shlif",
+ "singular": "שְׁלִיף",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fjco5zeutntj.mp3",
+ "plural": "שְׁלִיפִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18ogugu9t2302.mp3",
+ "construct_singular": "שְׁלִיף־",
+ "construct_plural": "שְׁלִיפֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "שלפוחית": {
+ "slug": "9132-shalpuchit",
+ "singular": "שַׁלְפּוּחִית",
+ "singular_audio": "https://audio.pealim.com/v0/6u/6uofkzgapg1s.mp3",
+ "plural": "שַׁלְפּוּחִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/a3/a390y2xjy8g3.mp3",
+ "construct_singular": "שַׁלְפּוּחִית־",
+ "construct_plural": "שַׁלְפּוּחִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שליש": {
+ "slug": "4489-shlish",
+ "singular": "שְׁלִישׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1p7qqjiitpx45.mp3",
+ "plural": "שְׁלִישִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cmwex26d8foh.mp3",
+ "construct_singular": "שְׁלִישׁ־",
+ "construct_plural": "שְׁלִישֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "שלישיה": {
+ "slug": "6274-shlishiya",
+ "singular": "שְׁלִישִׁיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1h4hc1nwsyfoa.mp3",
+ "plural": "שְׁלִישִׁיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1t9xy3ay95tg0.mp3",
+ "construct_singular": "שְׁלִישִׁיַּת־",
+ "construct_plural": "שְׁלִישִׁיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שלשלת": {
+ "slug": "3675-shalshelet",
+ "singular": "שַׁלְשֶׁלֶת",
+ "singular_audio": "https://audio.pealim.com/v0/b7/b7mi86rkxf8n.mp3",
+ "plural": "שַׁלְשָׁלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/iw/iw1a0fq2b7c5.mp3",
+ "construct_singular": "שַׁלְשֶׁלֶת־",
+ "construct_plural": "שַׁלְשְׁלוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "השתלשלות": {
+ "slug": "8321-hishtalshelut",
+ "singular": "הִשְׁתַּלְשְׁלוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1alhku75kv35j.mp3",
+ "plural": "הִשְׁתַּלְשְׁלֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1w1qscomrfusd.mp3",
+ "construct_singular": "הִשְׁתַּלְשְׁלוּת־",
+ "construct_plural": "הִשְׁתַּלְשְׁלֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שם": {
+ "slug": "3194-shem",
+ "singular": "שֵׁם",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkspuyt95pgi.mp3",
+ "plural": "שֵׁמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1q763kjz1cqdo.mp3",
+ "construct_singular": "שֵׁם־",
+ "construct_plural": "שְׁמוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שמאות": {
+ "slug": "7204-shamaut",
+ "singular": "שַׁמָּאוּת",
+ "singular_audio": "https://audio.pealim.com/v0/qc/qc6eb1k6a1y0.mp3",
+ "plural": "שַׁמָּאֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1uja9afcqw4w8.mp3",
+ "construct_singular": "שַׁמָּאוּת־",
+ "construct_plural": "שַׁמָּאֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שמאי": {
+ "slug": "3927-shamay",
+ "singular": "שַׁמַּאי",
+ "singular_audio": "https://audio.pealim.com/v0/m3/m3y64jlkyh4o.mp3",
+ "plural": "שַׁמָּאִים",
+ "plural_audio": "https://audio.pealim.com/v0/wj/wj3qx2tp17xc.mp3",
+ "construct_singular": "שַׁמַּאי־",
+ "construct_plural": "שַׁמָּאֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "שמאל": {
+ "slug": "7073-smol",
+ "singular": "שְׂמֹאל",
+ "singular_audio": "https://audio.pealim.com/v0/fq/fqbevv6j0o1i.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׂמֹאל־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "השמדה": {
+ "slug": "2918-hashmada",
+ "singular": "הַשְׁמָדָה",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1sn3g8ui0nu90.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַשְׁמָדַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שמחה": {
+ "slug": "3225-simcha",
+ "singular": "שִׂמְחָה",
+ "singular_audio": "https://audio.pealim.com/v0/58/58d3ccr06r6w.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שִׂמְחַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שמים": {
+ "slug": "3248-shamayim",
+ "singular": "שָׁמַיִם",
+ "singular_audio": "https://audio.pealim.com/v0/10/10kjrhb8e2jza.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁמֵי־",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שמיכה": {
+ "slug": "5980-smicha",
+ "singular": "שְׂמִיכָה",
+ "singular_audio": "https://audio.pealim.com/v0/ig/igjn5ew9fjez.mp3",
+ "plural": "שְׂמִיכוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1n/1nirbzdtwaun7.mp3",
+ "construct_singular": "שְׂמִיכַת־",
+ "construct_plural": "שְׂמִיכוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שמלה": {
+ "slug": "4098-simla",
+ "singular": "שִׂמְלָה",
+ "singular_audio": "https://audio.pealim.com/v0/58/58ee7bq1m4a0.mp3",
+ "plural": "שְׂמָלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ct/ctwbju881rqo.mp3",
+ "construct_singular": "שִׂמְלַת־",
+ "construct_plural": "שִׂמְלוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שממה": {
+ "slug": "8639-shmama",
+ "singular": "שְׁמָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1s0m04tfwyos4.mp3",
+ "plural": "שְׁמָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/5l/5lbj3im0e9z2.mp3",
+ "construct_singular": "שִׁמְמַת־",
+ "construct_plural": "שִׁמְמוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktala"
+ },
+ "שממית": {
+ "slug": "8854-smamit",
+ "singular": "שְׂמָמִית",
+ "singular_audio": "https://audio.pealim.com/v0/d0/d0moxxj58nye.mp3",
+ "plural": "שְׂמָמִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1af7ex4nbojzb.mp3",
+ "construct_singular": "שְׂמָמִית־",
+ "construct_plural": "שְׂמָמִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שמן": {
+ "slug": "3186-shemen",
+ "singular": "שֶׁמֶן",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkpmci7xos9q.mp3",
+ "plural": "שְׁמָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/5s/5s1sk4cknibk.mp3",
+ "construct_singular": "שֶׁמֶן־",
+ "construct_plural": "שִׁמְנֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שמנת": {
+ "slug": "3301-shamenet",
+ "singular": "שַׁמֶּנֶת",
+ "singular_audio": "https://audio.pealim.com/v0/ur/url8dl8zue5t.mp3",
+ "plural": "שַׁמָּנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xe3ojyj8vphx.mp3",
+ "construct_singular": "שַׁמֶּנֶת־",
+ "construct_plural": "שַׁמְּנוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "השמנה": {
+ "slug": "8554-hashmana",
+ "singular": "הַשְׁמָנָה",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1v5ftfte5lf0h.mp3",
+ "plural": "הַשְׁמָנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/13/13z2n8m0o9akh.mp3",
+ "construct_singular": "הַשְׁמָנַת־",
+ "construct_plural": "הַשְׁמָנוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שמוע": {
+ "slug": "6558-shimua",
+ "singular": "שִׁמּוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1apml5m958e76.mp3",
+ "plural": "שִׁמּוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1j1x2f7tbxbo2.mp3",
+ "construct_singular": "שִׁמּוּעַ־",
+ "construct_plural": "שִׁמּוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "משמעות": {
+ "slug": "4532-mashmaut",
+ "singular": "מַשְׁמָעוּת",
+ "singular_audio": "https://audio.pealim.com/v0/ub/ubafv8ojmnxz.mp3",
+ "plural": "מַשְׁמָעֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1ls050ql9y0j5.mp3",
+ "construct_singular": "מַשְׁמָעוּת־",
+ "construct_plural": "מַשְׁמָעֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שמועה": {
+ "slug": "3663-shmua",
+ "singular": "שְׁמוּעָה",
+ "singular_audio": "https://audio.pealim.com/v0/h1/h19rhz6twso0.mp3",
+ "plural": "שְׁמוּעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/qr/qrktbnsc703w.mp3",
+ "construct_singular": "שְׁמוּעַת־",
+ "construct_plural": "שְׁמוּעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktula"
+ },
+ "משמעת": {
+ "slug": "3820-mishmaat",
+ "singular": "מִשְׁמַעַת",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1etx1qdl1gair.mp3",
+ "plural": "מִשְׁמָעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/98/989prehruf7l.mp3",
+ "construct_singular": "מִשְׁמַעַת־",
+ "construct_plural": "מִשְׁמְעוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "משמע": {
+ "slug": "4531-mashma",
+ "singular": "מַשְׁמָע",
+ "singular_audio": "https://audio.pealim.com/v0/e9/e9ctz9nxzra9.mp3",
+ "plural": "מַשְׁמָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1m0rr7sgkrjbf.mp3",
+ "construct_singular": "מַשְׁמַע־",
+ "construct_plural": "מַשְׁמָעֵי־",
+ "gender": "masculine",
+ "mishkal": "maktal"
+ },
+ "השמעה": {
+ "slug": "8572-hashmaa",
+ "singular": "הַשְׁמָעָה",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1vjc6jnona6qt.mp3",
+ "plural": "הַשְׁמָעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1er368vh3qe8n.mp3",
+ "construct_singular": "הַשְׁמָעַת־",
+ "construct_plural": "הַשְׁמָעוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שמיעה": {
+ "slug": "6346-shmia",
+ "singular": "שְׁמִיעָה",
+ "singular_audio": "https://audio.pealim.com/v0/n8/n83q9vx7vtva.mp3",
+ "plural": "שְׁמִיעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/zb/zbzaglbkukde.mp3",
+ "construct_singular": "שְׁמִיעַת־",
+ "construct_plural": "שְׁמִיעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שמץ": {
+ "slug": "6895-shemetz",
+ "singular": "שֶׁמֶץ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qdw7ht75sc0l.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שֶׁמֶץ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "משמרת": {
+ "slug": "3279-mishmeret",
+ "singular": "מִשְׁמֶרֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1ohca3se3n97h.mp3",
+ "plural": "מִשְׁמָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/13/13z45qlracv1.mp3",
+ "construct_singular": "מִשְׁמֶרֶת־",
+ "construct_plural": "מִשְׁמְרוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "משמר": {
+ "slug": "3674-mishmar",
+ "singular": "מִשְׁמָר",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1guepcs36km.mp3",
+ "plural": "מִשְׁמָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e4i64izj1mda.mp3",
+ "construct_singular": "מִשְׁמַר־",
+ "construct_plural": "מִשְׁמְרֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שמירה": {
+ "slug": "5360-shmira",
+ "singular": "שְׁמִירָה",
+ "singular_audio": "https://audio.pealim.com/v0/n8/n8261ir5w7ha.mp3",
+ "plural": "שְׁמִירוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/y6/y6a752geevie.mp3",
+ "construct_singular": "שְׁמִירַת־",
+ "construct_plural": "שְׁמִירוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שמרן": {
+ "slug": "7439-shamran",
+ "singular": "שַׁמְרָן",
+ "singular_audio": "https://audio.pealim.com/v0/db/dbxxn5j7cw97.mp3",
+ "plural": "שַׁמְרָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/tv/tvwhqhdt4x3q.mp3",
+ "construct_singular": "שַׁמְרַן־",
+ "construct_plural": "שַׁמְרָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "שומר": {
+ "slug": "8695-shomer",
+ "singular": "שׁוֹמֵר",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w5bmn2hqf0be.mp3",
+ "plural": "שׁוֹמְרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dgkfgihbmsis.mp3",
+ "construct_singular": "שׁוֹמֵר־",
+ "construct_plural": "שׁוֹמְרֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שמיר": {
+ "slug": "8400-shamir",
+ "singular": "שָׁמִיר",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qrsblvplmx6o.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁמִיר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "שמור": {
+ "slug": "4914-shimur",
+ "singular": "שִׁמּוּר",
+ "singular_audio": "https://audio.pealim.com/v0/14/1421gbqymgauw.mp3",
+ "plural": "שִׁמּוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1d6v3ola6tpae.mp3",
+ "construct_singular": "שִׁמּוּר־",
+ "construct_plural": "שִׁמּוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שמרים": {
+ "slug": "6451-shmarim",
+ "singular": "שְׁמָרִים",
+ "singular_audio": "https://audio.pealim.com/v0/7b/7bn8zhii7tv8.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שִׁמְרֵי־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "שמשיה": {
+ "slug": "6367-shimshiya",
+ "singular": "שִׁמְשִׁיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/l5/l55s82g6pxoy.mp3",
+ "plural": "שִׁמְשִׁיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/13/13onnyzqnxeya.mp3",
+ "construct_singular": "שִׁמְשִׁיַּת־",
+ "construct_plural": "שִׁמְשִׁיּוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שמש": {
+ "slug": "6070-shemesh",
+ "singular": "שֶׁמֶשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qdwlp9wb212w.mp3",
+ "plural": "שְׁמָשׁוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/18/18stfcga8pyng.mp3",
+ "construct_singular": "שֶׁמֶשׁ־",
+ "construct_plural": "שִׁמְשׁוֹת־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "שמוש": {
+ "slug": "5012-shimush",
+ "singular": "שִׁמּוּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/jl/jl9kg56aubwx.mp3",
+ "plural": "שִׁמּוּשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/75/75cd2qpy98dr.mp3",
+ "construct_singular": "שִׁמּוּשׁ־",
+ "construct_plural": "שִׁמּוּשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תשמיש": {
+ "slug": "5118-tashmish",
+ "singular": "תַּשְׁמִישׁ",
+ "singular_audio": "https://audio.pealim.com/v0/p7/p7txgvn4q1sc.mp3",
+ "plural": "תַּשְׁמִישִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/av/avr8o3r0swpi.mp3",
+ "construct_singular": "תַּשְׁמִישׁ־",
+ "construct_plural": "תַּשְׁמִישֵׁי־",
+ "gender": "masculine",
+ "mishkal": "taktil"
+ },
+ "משתמש": {
+ "slug": "7918-mishtamesh",
+ "singular": "מִשְׁתַּמֵּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/5l/5lp3z4rws61e.mp3",
+ "plural": "מִשְׁתַּמְּשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jcuxs1n6ddsa.mp3",
+ "construct_singular": "מִשְׁתַּמֵּשׁ־",
+ "construct_plural": "מִשְׁתַּמְּשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "mitkattel"
+ },
+ "שמשה": {
+ "slug": "9180-shimsha",
+ "singular": "שִׁמְשָׁה",
+ "singular_audio": "https://audio.pealim.com/v0/he/hedopwgkjide.mp3",
+ "plural": "שְׁמָשׁוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/18/18stfcga8pyng.mp3",
+ "construct_singular": "שִׁמְשַׁת־",
+ "construct_plural": "שִׁמְשׁוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שנאה": {
+ "slug": "3226-sina",
+ "singular": "שִׂנְאָה",
+ "singular_audio": "https://audio.pealim.com/v0/5m/5m7mufoeptyx.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שִׂנְאַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שנהבת": {
+ "slug": "4736-shanhevet",
+ "singular": "שַׁנְהֶבֶת",
+ "singular_audio": "https://audio.pealim.com/v0/zb/zb43ffx6fsx3.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁנְהֶבֶת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "שנהב": {
+ "slug": "4734-shenhav",
+ "singular": "שֶׁנְהָב",
+ "singular_audio": "https://audio.pealim.com/v0/k6/k6r7pc8wqdd1.mp3",
+ "plural": "שֶׁנְהַבִּים",
+ "plural_audio": "https://audio.pealim.com/v0/of/ofgtmnzu4sve.mp3",
+ "construct_singular": "שֶׁנְהַב־",
+ "construct_plural": "שֶׁנְהַבֵּי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תשנית": {
+ "slug": "5917-tashnit",
+ "singular": "תַּשְׁנִית",
+ "singular_audio": "https://audio.pealim.com/v0/rj/rjx7zuzoikea.mp3",
+ "plural": "תַּשְׁנִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/s8/s88rmzx7lo77.mp3",
+ "construct_singular": "תַּשְׁנִית־",
+ "construct_plural": "תַּשְׁנִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktit"
+ },
+ "השתנות": {
+ "slug": "8354-hishtanut",
+ "singular": "הִשְׁתַּנּוּת",
+ "singular_audio": "https://audio.pealim.com/v0/z9/z9mm6ax490sb.mp3",
+ "plural": "הִשְׁתַּנֻּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/19/194l0h3qo4zpd.mp3",
+ "construct_singular": "הִשְׁתַּנּוּת־",
+ "construct_plural": "הִשְׁתַּנֻּיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שני": {
+ "slug": "6819-shani",
+ "singular": "שָׁנִי",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2d67na4r3rx.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁנִי־",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "משנה": {
+ "slug": "7427-mishna",
+ "singular": "מִשְׁנָה",
+ "singular_audio": "https://audio.pealim.com/v0/1d/1dq9lf0ul3wgb.mp3",
+ "plural": "מִשְׁנָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/10/10nnxm6omggxd.mp3",
+ "construct_singular": "מִשְׁנַת־",
+ "construct_plural": "מִשְׁנוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktal"
+ },
+ "שנוי": {
+ "slug": "6001-shinuy",
+ "singular": "שִׁנּוּי",
+ "singular_audio": "https://audio.pealim.com/v0/13/13o53d699k9o4.mp3",
+ "plural": "שִׁנּוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/1h/1hge1z2wqsdec.mp3",
+ "construct_singular": "שִׁנּוּי־",
+ "construct_plural": "שִׁנּוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שניה": {
+ "slug": "8864-shniya",
+ "singular": "שְׁנִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/b9/b9ic3sannl4n.mp3",
+ "plural": "שְׁנִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/x4/x4ue0q6i7vw1.mp3",
+ "construct_singular": "שְׁנִיַּת־",
+ "construct_plural": "שְׁנִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שניצל": {
+ "slug": "7258-shnitzel",
+ "singular": "שְׁנִיצֶל",
+ "singular_audio": "https://audio.pealim.com/v0/p7/p7zcnbieff8u.mp3",
+ "plural": "שְׁנִיצֶלִים",
+ "plural_audio": "https://audio.pealim.com/v0/19/19j2suxjko7gy.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שנינות": {
+ "slug": "8189-shninut",
+ "singular": "שְׁנִינוּת",
+ "singular_audio": "https://audio.pealim.com/v0/q6/q6n1zecs9to6.mp3",
+ "plural": "שְׁנִינֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/r5/r5l61s92tprk.mp3",
+ "construct_singular": "שְׁנִינוּת־",
+ "construct_plural": "שְׁנִינֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שן": {
+ "slug": "5719-shen",
+ "singular": "שֵׁן",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkspuysb2go3.mp3",
+ "plural": "שִׁנַּיִם",
+ "plural_audio": "https://audio.pealim.com/v0/m1/m1mf1mjbg4xp.mp3",
+ "construct_singular": "שֵׁן־",
+ "construct_plural": "שִׁנֵּי־",
+ "gender": "feminine",
+ "mishkal": "ketel"
+ },
+ "שנינה": {
+ "slug": "8188-shnina",
+ "singular": "שְׁנִינָה",
+ "singular_audio": "https://audio.pealim.com/v0/b9/b98ypla9uamv.mp3",
+ "plural": "שְׁנִינוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/q6/q6nu3kxtfdqx.mp3",
+ "construct_singular": "שְׁנִינַת־",
+ "construct_plural": "שְׁנִינוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שנון": {
+ "slug": "8974-shinun",
+ "singular": "שִׁנּוּן",
+ "singular_audio": "https://audio.pealim.com/v0/13/13o53b2f7rg6u.mp3",
+ "plural": "שִׁנּוּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18sygz6o0x4bt.mp3",
+ "construct_singular": "שִׁנּוּן־",
+ "construct_plural": "שִׁנּוּנֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "השתעבדות": {
+ "slug": "5834-hishtaabdut",
+ "singular": "הִשְׁתַּעְבְּדוּת",
+ "singular_audio": "https://audio.pealim.com/v0/ms/ms2edhrhloza.mp3",
+ "plural": "הִשְׁתַּעְבְּדֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/7a/7agb8gopxs4u.mp3",
+ "construct_singular": "הִשְׁתַּעְבְּדוּת־",
+ "construct_plural": "הִשְׁתַּעְבְּדֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שעבוד": {
+ "slug": "3143-shiabud",
+ "singular": "שִׁעְבּוּד",
+ "singular_audio": "https://audio.pealim.com/v0/s0/s0imv4oipr4u.mp3",
+ "plural": "שִׁעְבּוּדִים",
+ "plural_audio": "https://audio.pealim.com/v0/fy/fycwt7snfgq8.mp3",
+ "construct_singular": "שִׁעְבּוּד־",
+ "construct_plural": "שִׁעְבּוּדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שעוה": {
+ "slug": "7216-shaava",
+ "singular": "שַׁעֲוָה",
+ "singular_audio": "https://audio.pealim.com/v0/11/11jbfw7gw8rzx.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁעֲוַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "שעון עצר": {
+ "slug": "8058-sheon-etzer",
+ "singular": "שְׁעוֹן עֶצֶר",
+ "singular_audio": "https://audio.pealim.com/v0/11/11le5znv29aky.mp3",
+ "plural": "שְׁעוֹנֵי עֶצֶר",
+ "plural_audio": "https://audio.pealim.com/v0/14/14odu73ix8a74.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "השעיה": {
+ "slug": "7143-hashaya",
+ "singular": "הַשְׁעָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/x1/x1nvirrdd06x.mp3",
+ "plural": "הַשְׁעָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1apybgwwqkv6p.mp3",
+ "construct_singular": "הַשְׁעָיַת־",
+ "construct_plural": "הַשְׁעָיוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שעון": {
+ "slug": "3783-shaon",
+ "singular": "שָׁעוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qswx9cj79bif.mp3",
+ "plural": "שְׁעוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/59/59il96ifbm8e.mp3",
+ "construct_singular": "שְׁעוֹן־",
+ "construct_plural": "שְׁעוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": "katon"
+ },
+ "שעה": {
+ "slug": "4139-shaa",
+ "singular": "שָׁעָה",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2d6urfaw0jo.mp3",
+ "plural": "שָׁעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qswxd7kak5k2.mp3",
+ "construct_singular": "שְׁעַת־",
+ "construct_plural": "שְׁעוֹת־",
+ "gender": "feminine",
+ "mishkal": "katal"
+ },
+ "שעתים": {
+ "slug": "8203-sheatayim",
+ "singular": "שְׁעָתַיִם",
+ "singular_audio": "https://audio.pealim.com/v0/jx/jxj7hmm5kecu.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שעול": {
+ "slug": "8063-shiul",
+ "singular": "שִׁעוּל",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q147x9h3x725.mp3",
+ "plural": "שִׁעוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1mczrbclmqrgp.mp3",
+ "construct_singular": "שִׁעוּל־",
+ "construct_plural": "שִׁעוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "משעול": {
+ "slug": "3634-mishol",
+ "singular": "מִשְׁעוֹל",
+ "singular_audio": "https://audio.pealim.com/v0/b8/b83b4t1hvcz.mp3",
+ "plural": "מִשְׁעוֹלִים",
+ "plural_audio": "https://audio.pealim.com/v0/8h/8h3pbfowm4zx.mp3",
+ "construct_singular": "מִשְׁעוֹל־",
+ "construct_plural": "מִשְׁעוֹלֵי־",
+ "gender": "masculine",
+ "mishkal": "miktol"
+ },
+ "שעמום": {
+ "slug": "8899-shiamum",
+ "singular": "שִׁעְמוּם",
+ "singular_audio": "https://audio.pealim.com/v0/6l/6laq4l3tt5r.mp3",
+ "plural": "שִׁעְמוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/12/126inkfkehaf6.mp3",
+ "construct_singular": "שִׁעְמוּם־",
+ "construct_plural": "שִׁעְמוּמֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "משענת": {
+ "slug": "8140-mishenet",
+ "singular": "מִשְׁעֶנֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1ev08mu95oi50.mp3",
+ "plural": "מִשְׁעָנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1ezzgtb125grm.mp3",
+ "construct_singular": "מִשְׁעֶנֶת־",
+ "construct_plural": "מִשְׁעֲנוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktelet"
+ },
+ "השענות": {
+ "slug": "8199-hishaanut",
+ "singular": "הִשָּׁעֲנוּת",
+ "singular_audio": "https://audio.pealim.com/v0/qv/qvu9yjh02dn3.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הִשָּׁעֲנוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "hikkatlut"
+ },
+ "שעועית": {
+ "slug": "9048-sheuit",
+ "singular": "שְׁעוּעִית",
+ "singular_audio": "https://audio.pealim.com/v0/d6/d6bylk50i3fr.mp3",
+ "plural": "שְׁעוּעִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/hq/hq5ravtwv0fe.mp3",
+ "construct_singular": "שְׁעוּעִית־",
+ "construct_plural": "שְׁעוּעִיּוֹת־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שעור": {
+ "slug": "6100-shiur",
+ "singular": "שִׁעוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q1481h57iu0n.mp3",
+ "plural": "שִׁעוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/dg/dg7yj5k4t7st.mp3",
+ "construct_singular": "שִׁעוּר־",
+ "construct_plural": "שִׁעוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שער": {
+ "slug": "4250-sear",
+ "singular": "שֵׂעָר",
+ "singular_audio": "https://audio.pealim.com/v0/fr/frgsjijgm4lm.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׂעַר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שוער": {
+ "slug": "3170-shoer",
+ "singular": "שׁוֹעֵר",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w5co4na1q2xb.mp3",
+ "plural": "שׁוֹעֲרִים",
+ "plural_audio": "https://audio.pealim.com/v0/12/12qhkpf2db900.mp3",
+ "construct_singular": "שׁוֹעֵר־",
+ "construct_plural": "שׁוֹעֲרֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שערה": {
+ "slug": "4251-saara",
+ "singular": "שַׂעֲרָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16f6olw8dgqwt.mp3",
+ "plural": "שְׂעָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1w6b7s67ch63i.mp3",
+ "construct_singular": "שַׂעֲרַת־",
+ "construct_plural": "שַׂעֲרוֹת־",
+ "gender": "feminine",
+ "mishkal": "katla"
+ },
+ "שעורה": {
+ "slug": "7521-seora",
+ "singular": "שְׂעוֹרָה",
+ "singular_audio": "https://audio.pealim.com/v0/1n/1n9bycgradpnk.mp3",
+ "plural": "שְׂעוֹרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1bsm2bqy7tt6n.mp3",
+ "construct_singular": "שְׂעוֹרַת־",
+ "construct_plural": "שְׂעוֹרֵי־",
+ "gender": "feminine",
+ "mishkal": "ktola"
+ },
+ "השערה": {
+ "slug": "8763-hashara",
+ "singular": "הַשְׁעָרָה",
+ "singular_audio": "https://audio.pealim.com/v0/u5/u5f57ykr210g.mp3",
+ "plural": "הַשְׁעָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v0oth2m3mc2g.mp3",
+ "construct_singular": "הַשְׁעָרַת־",
+ "construct_plural": "הַשְׁעָרוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שעשוע": {
+ "slug": "5619-shaashua",
+ "singular": "שַׁעְשׁוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1vyehigmuo60u.mp3",
+ "plural": "שַׁעְשׁוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/jd/jd1e4oapjyyy.mp3",
+ "construct_singular": "שַׁעְשׁוּעַ־",
+ "construct_plural": "שַׁעְשׁוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שפופרת": {
+ "slug": "8780-shfoferet",
+ "singular": "שְׁפוֹפֶרֶת",
+ "singular_audio": "https://audio.pealim.com/v0/cd/cd36e0eonz7h.mp3",
+ "plural": "שְׁפוֹפָרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/gt/gtbhoc2e41zv.mp3",
+ "construct_singular": "שְׁפוֹפֶרֶת־",
+ "construct_plural": "שְׁפוֹפְרוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "משפחה": {
+ "slug": "4899-mishpacha",
+ "singular": "מִשְׁפָּחָה",
+ "singular_audio": "https://audio.pealim.com/v0/14/14m1hoesgeybi.mp3",
+ "plural": "מִשְׁפָּחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/tx/tx6m0dfxab4u.mp3",
+ "construct_singular": "מִשְׁפַּחַת־",
+ "construct_plural": "מִשְׁפְּחוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktala"
+ },
+ "שפחה": {
+ "slug": "6878-shifcha",
+ "singular": "שִׁפְחָה",
+ "singular_audio": "https://audio.pealim.com/v0/12/12z0q2o6b56ue.mp3",
+ "plural": "שְׁפָחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/3v/3vmcdldbdp78.mp3",
+ "construct_singular": "שִׁפְחַת־",
+ "construct_plural": "שִׁפְחוֹת־",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שפוט": {
+ "slug": "5455-shiput",
+ "singular": "שִׁפּוּט",
+ "singular_audio": "https://audio.pealim.com/v0/12/12wcd5ubb2wsv.mp3",
+ "plural": "שִׁפּוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/bu/bubxnyo5fqyz.mp3",
+ "construct_singular": "שִׁפּוּט־",
+ "construct_plural": "שִׁפּוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "משפט": {
+ "slug": "2644-mishpat",
+ "singular": "מִשְׁפָּט",
+ "singular_audio": "https://audio.pealim.com/v0/2x/2xs4sw4ru3n.mp3",
+ "plural": "מִשְׁפָּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/zs/zskzjwavlf6v.mp3",
+ "construct_singular": "מִשְׁפַּט־",
+ "construct_plural": "מִשְׁפְּטֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שופט": {
+ "slug": "7393-shofet",
+ "singular": "שׁוֹפֵט",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1w5d6ptfnsk25.mp3",
+ "plural": "שׁוֹפְטִים",
+ "plural_audio": "https://audio.pealim.com/v0/12/1292x049lyjmt.mp3",
+ "construct_singular": "שׁוֹפֵט־",
+ "construct_plural": "שׁוֹפְטֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שפה": {
+ "slug": "5171-safa",
+ "singular": "שָׂפָה",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2l9zqv2r3k9.mp3",
+ "plural": "שְׂפָתַיִם",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1pua3wr74na0c.mp3",
+ "construct_singular": "שְׂפַת־",
+ "construct_plural": "שִׂפְתֵי־",
+ "gender": "feminine",
+ "mishkal": "katal"
+ },
+ "שפתון": {
+ "slug": "8159-sfaton",
+ "singular": "שְׂפָתוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/7e/7ew6dccpabe2.mp3",
+ "plural": "שְׂפָתוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/7l/7lczc7zj10j7.mp3",
+ "construct_singular": "שְׂפָתוֹן־",
+ "construct_plural": "שְׂפָתוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שפיות": {
+ "slug": "8504-shfiyut",
+ "singular": "שְׁפִיּוּת",
+ "singular_audio": "https://audio.pealim.com/v0/e2/e2dyyud6ex4y.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁפִיּוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "משפך": {
+ "slug": "7294-mashpech",
+ "singular": "מַשְׁפֵּךְ",
+ "singular_audio": "https://audio.pealim.com/v0/5r/5rxx8ies54dc.mp3",
+ "plural": "מַשְׁפְּכִים",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1ofr0kwykaz92.mp3",
+ "construct_singular": "מַשְׁפֵּךְ־",
+ "construct_plural": "מַשְׁפְּכֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "השפלה": {
+ "slug": "3069-hashpala",
+ "singular": "הַשְׁפָּלָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16tttpb5ysjis.mp3",
+ "plural": "הַשְׁפָּלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1ljnuvvw1o6yg.mp3",
+ "construct_singular": "הַשְׁפָּלַת־",
+ "construct_plural": "הַשְׁפָּלוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שפל": {
+ "slug": "7398-shefel",
+ "singular": "שֵׁפֶל",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkj40lfn6y41.mp3",
+ "plural": "שְׁפָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/34/341j987gbfq1.mp3",
+ "construct_singular": "שֵׁפֶל־",
+ "construct_plural": "שִׁפְלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שפם": {
+ "slug": "4413-safam",
+ "singular": "שָׂפָם",
+ "singular_audio": "https://audio.pealim.com/v0/fs/fs5is401nwd7.mp3",
+ "plural": "שְׂפָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/4w/4wbzerzq47tf.mp3",
+ "construct_singular": "שְׂפַם־",
+ "construct_plural": "שִׂפְמֵי־",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "שפן": {
+ "slug": "3993-shafan",
+ "singular": "שָׁפָן",
+ "singular_audio": "https://audio.pealim.com/v0/fl/fl7c932td8ff.mp3",
+ "plural": "שְׁפַנִּים",
+ "plural_audio": "https://audio.pealim.com/v0/nk/nkbcjp58jkt4.mp3",
+ "construct_singular": "שְׁפַן־",
+ "construct_plural": "שְׁפַנֵּי־",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "שפוע": {
+ "slug": "3697-shipua",
+ "singular": "שִׁפּוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/12/12lbzjydg0cgv.mp3",
+ "plural": "שִׁפּוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wgpntocwtwi3.mp3",
+ "construct_singular": "שִׁפּוּעַ־",
+ "construct_plural": "שִׁפּוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "השפעה": {
+ "slug": "2919-hashpaa",
+ "singular": "הַשְׁפָּעָה",
+ "singular_audio": "https://audio.pealim.com/v0/15/15o4qdsaicuia.mp3",
+ "plural": "הַשְׁפָּעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1tnyghjrir5pi.mp3",
+ "construct_singular": "הַשְׁפָּעַת־",
+ "construct_plural": "הַשְׁפָּעוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שפע": {
+ "slug": "3693-shefa",
+ "singular": "שֶׁפַע",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkr6wt4a6tp5.mp3",
+ "plural": "שְׁפָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1y/1ycfxpbqen9j.mp3",
+ "construct_singular": "שֶׁפַע־",
+ "construct_plural": "שִׁפְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שפעה": {
+ "slug": "3694-shifa",
+ "singular": "שִׁפְעָה",
+ "singular_audio": "https://audio.pealim.com/v0/12/12yxuzc173l6s.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שִׁפְעַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kitla"
+ },
+ "שפעת": {
+ "slug": "3695-shapaat",
+ "singular": "שַׁפַּעַת",
+ "singular_audio": "https://audio.pealim.com/v0/1t/1tqsrkr4s5xa2.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שַׁפַּעַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "שפיפה": {
+ "slug": "7442-shfifa",
+ "singular": "שְׁפִיפָה",
+ "singular_audio": "https://audio.pealim.com/v0/co/coine5jkftax.mp3",
+ "plural": "שְׁפִיפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/6c/6cfgy74k6761.mp3",
+ "construct_singular": "שְׁפִיפַת־",
+ "construct_plural": "שְׁפִיפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שפוץ": {
+ "slug": "5788-shiputz",
+ "singular": "שִׁפּוּץ",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jhv15xd0jm7j.mp3",
+ "plural": "שִׁפּוּצִים",
+ "plural_audio": "https://audio.pealim.com/v0/l5/l5oitu0air0w.mp3",
+ "construct_singular": "שִׁפּוּץ־",
+ "construct_plural": "שִׁפּוּצֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שפור": {
+ "slug": "5250-shipur",
+ "singular": "שִׁפּוּר",
+ "singular_audio": "https://audio.pealim.com/v0/12/12wcd0836a275.mp3",
+ "plural": "שִׁפּוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/wk/wk3swfaasgo3.mp3",
+ "construct_singular": "שִׁפּוּר־",
+ "construct_plural": "שִׁפּוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שפירית": {
+ "slug": "9112-shapirit",
+ "singular": "שַׁפִּירִית",
+ "singular_audio": "https://audio.pealim.com/v0/i0/i0w6wxunyi8u.mp3",
+ "plural": "שַׁפִּירִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/13/13stycpyt90p1.mp3",
+ "construct_singular": "שַׁפִּירִית־",
+ "construct_plural": "שַׁפִּירִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שפשוף": {
+ "slug": "6677-shifshuf",
+ "singular": "שִׁפְשׁוּף",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1wb3tx5besngr.mp3",
+ "plural": "שִׁפְשׁוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/e5/e5lv9s3nkjys.mp3",
+ "construct_singular": "שִׁפְשׁוּף־",
+ "construct_plural": "שִׁפְשׁוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שק": {
+ "slug": "4759-sak",
+ "singular": "שַׂק",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkspul8ezc75.mp3",
+ "plural": "שַׂקִּים",
+ "plural_audio": "https://audio.pealim.com/v0/oz/ozno8gsoajwj.mp3",
+ "construct_singular": "שַׂק־",
+ "construct_plural": "שַׂקֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שקידה": {
+ "slug": "8413-shkida",
+ "singular": "שְׁקִידָה",
+ "singular_audio": "https://audio.pealim.com/v0/um/ump5j2rwizkg.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁקִידַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שקד": {
+ "slug": "7215-shaked",
+ "singular": "שָׁקֵד",
+ "singular_audio": "https://audio.pealim.com/v0/fl/fl83cejz3m3q.mp3",
+ "plural": "שְׁקֵדִים",
+ "plural_audio": "https://audio.pealim.com/v0/qv/qv1ehyxiihwv.mp3",
+ "construct_singular": "שְׁקֵד־",
+ "construct_plural": "שְׁקֵדֵי־",
+ "gender": "masculine",
+ "mishkal": "katel"
+ },
+ "שקט": {
+ "slug": "3187-sheket",
+ "singular": "שֶׁקֶט",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkrymlhz1fa8.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שֶׁקֶט־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שקוי": {
+ "slug": "7201-shikuy",
+ "singular": "שִׁקּוּי",
+ "singular_audio": "https://audio.pealim.com/v0/12/12bhthq8kt4zc.mp3",
+ "plural": "שִׁקּוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/q5/q5587l3hrsam.mp3",
+ "construct_singular": "שִׁקּוּי־",
+ "construct_plural": "שִׁקּוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "השקיה": {
+ "slug": "2920-hashkaya",
+ "singular": "הַשְׁקָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1hmcn5vjtdjy1.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַשְׁקָיַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "משקה": {
+ "slug": "3833-mashke",
+ "singular": "מַשְׁקֶה",
+ "singular_audio": "https://audio.pealim.com/v0/19/19o63m6n5cnow.mp3",
+ "plural": "מַשְׁקָאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1q318ta4npp1t.mp3",
+ "construct_singular": "מַשְׁקֵה־",
+ "construct_plural": "מַשְׁקוֹת־",
+ "gender": "masculine",
+ "mishkal": "maktal"
+ },
+ "שקית": {
+ "slug": "4761-sakit",
+ "singular": "שַׂקִּית",
+ "singular_audio": "https://audio.pealim.com/v0/oz/oznod13s6zrx.mp3",
+ "plural": "שַׂקִּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/w6/w6rx51se82hw.mp3",
+ "construct_singular": "שַׂקִּית־",
+ "construct_plural": "שַׂקִּיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "משקלת": {
+ "slug": "7341-mishkolet",
+ "singular": "מִשְׁקֹלֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1ap5wvrnsfsar.mp3",
+ "plural": "מִשְׁקוֹלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/jv/jv1m3qh02vt6.mp3",
+ "construct_singular": "מִשְׁקֹלֶת־",
+ "construct_plural": "מִשְׁקוֹלוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktolet"
+ },
+ "שקול": {
+ "slug": "4326-shikul",
+ "singular": "שִׁקּוּל",
+ "singular_audio": "https://audio.pealim.com/v0/12/12bhtgobjwq8p.mp3",
+ "plural": "שִׁקּוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/183g5o7mxo3lr.mp3",
+ "construct_singular": "שִׁקּוּל־",
+ "construct_plural": "שִׁקּוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שקל": {
+ "slug": "6087-shekel",
+ "singular": "שֶׁקֶל",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkryo0208mxg.mp3",
+ "plural": "שְׁקָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/76/766u222yj1i9.mp3",
+ "construct_singular": "שֶׁקֶל־",
+ "construct_plural": "שִׁקְלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "משקל": {
+ "slug": "2662-mishkal",
+ "singular": "מִשְׁקָל",
+ "singular_audio": "https://audio.pealim.com/v0/jo/jorp83a583.mp3",
+ "plural": "מִשְׁקָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/yq/yqdgm3dndrhp.mp3",
+ "construct_singular": "מִשְׁקַל־",
+ "construct_plural": "מִשְׁקְלֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שקילה": {
+ "slug": "4961-shkila",
+ "singular": "שְׁקִילָה",
+ "singular_audio": "https://audio.pealim.com/v0/um/umrhvmizzgdr.mp3",
+ "plural": "שְׁקִילוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/6e/6esstprxx9hz.mp3",
+ "construct_singular": "שְׁקִילַת־",
+ "construct_plural": "שְׁקִילוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שקלול": {
+ "slug": "3893-shiklul",
+ "singular": "שִׁקְלוּל",
+ "singular_audio": "https://audio.pealim.com/v0/zs/zs1ktn46cvn5.mp3",
+ "plural": "שִׁקְלוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xipop2hwcq25.mp3",
+ "construct_singular": "שִׁקְלוּל־",
+ "construct_plural": "שִׁקְלוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שקום": {
+ "slug": "4124-shikum",
+ "singular": "שִׁקּוּם",
+ "singular_audio": "https://audio.pealim.com/v0/12/12bhtgbojlxbt.mp3",
+ "plural": "שִׁקּוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1k/1k2bfzanw9fhc.mp3",
+ "construct_singular": "שִׁקּוּם־",
+ "construct_plural": "שִׁקּוּמֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שקע": {
+ "slug": "5813-sheka",
+ "singular": "שֶׁקַע",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkrz0zpbcd17.mp3",
+ "plural": "שְׁקָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/60/60hqqj78m91r.mp3",
+ "construct_singular": "שֶׁקַע־",
+ "construct_plural": "שִׁקְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "השקעה": {
+ "slug": "2921-hashkaa",
+ "singular": "הַשְׁקָעָה",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jcwa55uzvgai.mp3",
+ "plural": "הַשְׁקָעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ks/ks0f8w3c9psg.mp3",
+ "construct_singular": "הַשְׁקָעַת־",
+ "construct_plural": "הַשְׁקָעוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שקיעה": {
+ "slug": "7169-shkia",
+ "singular": "שְׁקִיעָה",
+ "singular_audio": "https://audio.pealim.com/v0/um/umt23zp2loy9.mp3",
+ "plural": "שְׁקִיעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/7k/7khw58nnu1yh.mp3",
+ "construct_singular": "שְׁקִיעַת־",
+ "construct_plural": "שְׁקִיעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שקוף": {
+ "slug": "3914-shikuf",
+ "singular": "שִׁקּוּף",
+ "singular_audio": "https://audio.pealim.com/v0/12/12bhte7uht3uu.mp3",
+ "plural": "שִׁקּוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1c6gq4ifcxfjn.mp3",
+ "construct_singular": "שִׁקּוּף־",
+ "construct_plural": "שִׁקּוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שקף": {
+ "slug": "5438-shekef",
+ "singular": "שֶׁקֶף",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkryqgj2c9bb.mp3",
+ "plural": "שְׁקָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/5m/5mldmox153tv.mp3",
+ "construct_singular": "שֶׁקֶף־",
+ "construct_plural": "שִׁקְפֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שקופית": {
+ "slug": "5437-shkufit",
+ "singular": "שְׁקוּפִית",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1xusdbl285kzg.mp3",
+ "plural": "שְׁקוּפִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e7exph81g4mb.mp3",
+ "construct_singular": "שְׁקוּפִית־",
+ "construct_plural": "שְׁקוּפִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "השקפה": {
+ "slug": "3029-hashkafa",
+ "singular": "הַשְׁקָפָה",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jqsn905gxefe.mp3",
+ "plural": "הַשְׁקָפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xy5e8ldw2hjw.mp3",
+ "construct_singular": "הַשְׁקָפַת־",
+ "construct_plural": "הַשְׁקָפוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "השתקפות": {
+ "slug": "6317-hishtakfut",
+ "singular": "הִשְׁתַּקְּפוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1vtxr048a7d7v.mp3",
+ "plural": "הִשְׁתַּקְּפֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/yo/yo6x62vdtm39.mp3",
+ "construct_singular": "הִשְׁתַּקְּפוּת־",
+ "construct_plural": "הִשְׁתַּקְּפֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "משקפים": {
+ "slug": "6218-mishkafayim",
+ "singular": "מִשְׁקָפַיִם",
+ "singular_audio": "https://audio.pealim.com/v0/lz/lzs8bc4mwqv7.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "מִשְׁקְפֵי־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שקיפות": {
+ "slug": "6499-shkifut",
+ "singular": "שְׁקִיפוּת",
+ "singular_audio": "https://audio.pealim.com/v0/7y/7yf1d9iwgr94.mp3",
+ "plural": "שְׁקִיפֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/g9/g93x130rm36w.mp3",
+ "construct_singular": "שְׁקִיפוּת־",
+ "construct_plural": "שְׁקִיפֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שקוץ": {
+ "slug": "4459-shikutz",
+ "singular": "שִׁקּוּץ",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1up82ei9r4s7n.mp3",
+ "plural": "שִׁקּוּצִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cce3s133teg.mp3",
+ "construct_singular": "שִׁקּוּץ־",
+ "construct_plural": "שִׁקּוּצֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שקרן": {
+ "slug": "3451-shakran",
+ "singular": "שַׁקְרָן",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1v6uq115huf2q.mp3",
+ "plural": "שַׁקְרָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/11/11m6927fil39x.mp3",
+ "construct_singular": "שַׁקְרַן־",
+ "construct_plural": "שַׁקְרָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "שקר": {
+ "slug": "5025-sheker",
+ "singular": "שֶׁקֶר",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fkrys7q3u9vy.mp3",
+ "plural": "שְׁקָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/4u/4usnf0c26k6r.mp3",
+ "construct_singular": "שֶׁקֶר־",
+ "construct_plural": "שִׁקְרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שקת": {
+ "slug": "8615-shoket",
+ "singular": "שֹׁקֶת",
+ "singular_audio": "https://audio.pealim.com/v0/fl/flg6el49ma3f.mp3",
+ "plural": "שְׁקָתוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/49/49q6nxhnmzrw.mp3",
+ "construct_singular": "שֹׁקֶת־",
+ "construct_plural": "שָׁקְתוֹת־",
+ "gender": "feminine",
+ "mishkal": "kotel"
+ },
+ "השראה": {
+ "slug": "3097-hashraa",
+ "singular": "הַשְׁרָאָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16wi43q6mb6fi.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הַשְׁרָאַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "שרביט": {
+ "slug": "6143-sharvit",
+ "singular": "שַׁרְבִיט",
+ "singular_audio": "https://audio.pealim.com/v0/lk/lk88zs3okd8b.mp3",
+ "plural": "שַׁרְבִיטִים",
+ "plural_audio": "https://audio.pealim.com/v0/xa/xafqg5vj0eex.mp3",
+ "construct_singular": "שַׁרְבִיט־",
+ "construct_plural": "שַׁרְבִיטֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שרוול": {
+ "slug": "8952-sharvul",
+ "singular": "שַׁרְווּל",
+ "singular_audio": "https://audio.pealim.com/v0/mj/mj7s8xi9vkyl.mp3",
+ "plural": "שַׁרְווּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/c6/c6fpvu1s327j.mp3",
+ "construct_singular": "שַׁרְווּל־",
+ "construct_plural": "שַׁרְווּלֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שרברב": {
+ "slug": "7575-shravrav",
+ "singular": "שְׁרַבְרַב",
+ "singular_audio": "https://audio.pealim.com/v0/ij/ijx119ssivek.mp3",
+ "plural": "שְׁרַבְרָבִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/1795pvak54y0h.mp3",
+ "construct_singular": "שְׁרַבְרַב־",
+ "construct_plural": "שְׁרַבְרְבֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "שריג": {
+ "slug": "8268-sarig",
+ "singular": "שָׂרִיג",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1wtgnvql7jv41.mp3",
+ "plural": "שְׂרִיגִים",
+ "plural_audio": "https://audio.pealim.com/v0/yw/yw9cbxt6dkcq.mp3",
+ "construct_singular": "שְׂרִיג־",
+ "construct_plural": "שְׂרִיגֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "השרדות": {
+ "slug": "2871-hisardut",
+ "singular": "הִשָּׂרְדוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1xbzimcx8x06i.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "הִשָּׂרְדוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "hikkatlut"
+ },
+ "משרד": {
+ "slug": "3243-misrad",
+ "singular": "מִשְׂרָד",
+ "singular_audio": "https://audio.pealim.com/v0/60/607bqi8ijo31.mp3",
+ "plural": "מִשְׂרָדִים",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1aeb534wt5yor.mp3",
+ "construct_singular": "מִשְׂרַד־",
+ "construct_plural": "מִשְׂרְדֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שריד": {
+ "slug": "7887-sarid",
+ "singular": "שָׂרִיד",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1wtgnw387uo0t.mp3",
+ "plural": "שְׂרִידִים",
+ "plural_audio": "https://audio.pealim.com/v0/yp/ypb5s0nxqrd4.mp3",
+ "construct_singular": "שְׂרִיד־",
+ "construct_plural": "שְׂרִידֵי־",
+ "gender": "masculine",
+ "mishkal": "katil"
+ },
+ "שריטה": {
+ "slug": "7343-srita",
+ "singular": "שְׂרִיטָה",
+ "singular_audio": "https://audio.pealim.com/v0/15/15ds09tnkjxck.mp3",
+ "plural": "שְׂרִיטוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/xj/xje5d6dsw3aa.mp3",
+ "construct_singular": "שְׂרִיטַת־",
+ "construct_plural": "שְׂרִיטוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "שרטוט": {
+ "slug": "5891-sirtut",
+ "singular": "שִׂרְטוּט",
+ "singular_audio": "https://audio.pealim.com/v0/gf/gfpq21pdu538.mp3",
+ "plural": "שִׂרְטוּטִים",
+ "plural_audio": "https://audio.pealim.com/v0/p5/p5s7ki1fwiv0.mp3",
+ "construct_singular": "שִׂרְטוּט־",
+ "construct_plural": "שִׂרְטוּטֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "משרה": {
+ "slug": "3766-misra",
+ "singular": "מִשְׂרָה",
+ "singular_audio": "https://audio.pealim.com/v0/1d/1dx9uy3jni1yu.mp3",
+ "plural": "מִשְׂרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1a7k0zhyfz9dq.mp3",
+ "construct_singular": "מִשְׂרַת־",
+ "construct_plural": "מִשְׂרוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktal"
+ },
+ "שריון": {
+ "slug": "6519-shiryun",
+ "singular": "שִׁרְיוּן",
+ "singular_audio": "https://audio.pealim.com/v0/90/906t5zmqf6lb.mp3",
+ "plural": "שִׁרְיוּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lz5jykjygvis.mp3",
+ "construct_singular": "שִׁרְיוּן־",
+ "construct_plural": "שִׁרְיוּנֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שרוך": {
+ "slug": "5523-sroch",
+ "singular": "שְׂרוֹךְ",
+ "singular_audio": "https://audio.pealim.com/v0/1v/1va3jk05n8vkz.mp3",
+ "plural": "שְׂרוֹכִים",
+ "plural_audio": "https://audio.pealim.com/v0/az/azjgyz2t0dg2.mp3",
+ "construct_singular": "שְׂרוֹךְ־",
+ "construct_plural": "שְׂרוֹכֵי־",
+ "gender": "masculine",
+ "mishkal": "ktol"
+ },
+ "שרפה": {
+ "slug": "2844-srefa",
+ "singular": "שְׂרֵפָה",
+ "singular_audio": "https://audio.pealim.com/v0/gq/gqnx8d4lbvxa.mp3",
+ "plural": "שְׂרֵפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/tl/tltuutu9t268.mp3",
+ "construct_singular": "שְׂרֵפַת־",
+ "construct_plural": "שְׂרֵפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktela"
+ },
+ "שרף": {
+ "slug": "2845-saraf",
+ "singular": "שָׂרָף",
+ "singular_audio": "https://audio.pealim.com/v0/fs/fs6kbsm57mim.mp3",
+ "plural": "שְׂרָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1b/1bcyoo7tqc2lg.mp3",
+ "construct_singular": "שְׂרַף־",
+ "construct_plural": "שַׂרְפֵי־",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "שרפרף": {
+ "slug": "8599-shrafraf",
+ "singular": "שְׁרַפְרַף",
+ "singular_audio": "https://audio.pealim.com/v0/13/13k8to4e94q53.mp3",
+ "plural": "שְׁרַפְרַפִּים",
+ "plural_audio": "https://audio.pealim.com/v0/4q/4qwmbsrwbdk6.mp3",
+ "construct_singular": "שְׁרַפְרַף־",
+ "construct_plural": "שְׁרַפְרַפֵּי־",
+ "gender": "masculine",
+ "mishkal": "ktaltal"
+ },
+ "שר": {
+ "slug": "4160-sar",
+ "singular": "שָׂר",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wkspukt9jfkq.mp3",
+ "plural": "שָׂרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wtgnzlmaup5o.mp3",
+ "construct_singular": "שַׂר־",
+ "construct_plural": "שָׂרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שריר": {
+ "slug": "7397-shrir",
+ "singular": "שְׁרִיר",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fjfsmrsdindi.mp3",
+ "plural": "שְׁרִירִים",
+ "plural_audio": "https://audio.pealim.com/v0/da/damsjye97chw.mp3",
+ "construct_singular": "שְׁרִיר־",
+ "construct_plural": "שְׁרִירֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "שרשון": {
+ "slug": "8536-shorshon",
+ "singular": "שָׁרְשׁוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/iq/iqsdel0b43tw.mp3",
+ "plural": "שָׁרְשׁוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wltowgxk480d.mp3",
+ "construct_singular": "שָׁרְשׁוֹן־",
+ "construct_plural": "שָׁרְשׁוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "שרש": {
+ "slug": "6343-shoresh",
+ "singular": "שֹׁרֶשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1r0zup9phjre6.mp3",
+ "plural": "שֳׁרָשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1d2xutau4zqm0.mp3",
+ "construct_singular": "שֹׁרֶשׁ־",
+ "construct_plural": "שָׁרְשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "שרשרת": {
+ "slug": "4768-sharsheret",
+ "singular": "שַׁרְשֶׁרֶת",
+ "singular_audio": "https://audio.pealim.com/v0/6z/6z9fngmjt6vh.mp3",
+ "plural": "שַׁרְשְׁרָאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/jw/jwntw52fpwtw.mp3",
+ "construct_singular": "שַׁרְשֶׁרֶת־",
+ "construct_plural": "שַׁרְשְׁרָאוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattelet"
+ },
+ "שרשור": {
+ "slug": "7253-shirshur",
+ "singular": "שִׁרְשׁוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1d/1d8o5h0wuo90q.mp3",
+ "plural": "שִׁרְשׁוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1y/1ynvlp4pdk7g.mp3",
+ "construct_singular": "שִׁרְשׁוּר־",
+ "construct_plural": "שִׁרְשׁוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שרות": {
+ "slug": "6200-sherut",
+ "singular": "שֵׁרוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q9ettfs4a9h6.mp3",
+ "plural": "שֵׁרוּתִים",
+ "plural_audio": "https://audio.pealim.com/v0/r7/r7y2n74npdhy.mp3",
+ "construct_singular": "שֵׁרוּת־",
+ "construct_plural": "שֵׁרוּתֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שתין": {
+ "slug": "3452-shatyan",
+ "singular": "שַׁתְיָן",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1j3lfjr10o961.mp3",
+ "plural": "שַׁתְיָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/yb/ybyiurescuuw.mp3",
+ "construct_singular": "שַׁתְיַן־",
+ "construct_plural": "שַׁתְיָנֵי־",
+ "gender": "masculine",
+ "mishkal": "katlan"
+ },
+ "שתיה": {
+ "slug": "4568-shtiya",
+ "singular": "שְׁתִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1cku3fmu8imvt.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁתִיַּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תשתית": {
+ "slug": "7866-tashtit",
+ "singular": "תַּשְׁתִּית",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bwkthnirkhna.mp3",
+ "plural": "תַּשְׁתִּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/gf/gf22qg0ryl7d.mp3",
+ "construct_singular": "תַּשְׁתִּית־",
+ "construct_plural": "תַּשְׁתִּיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "taktit"
+ },
+ "משתה": {
+ "slug": "8704-mishte",
+ "singular": "מִשְׁתֶּה",
+ "singular_audio": "https://audio.pealim.com/v0/18/18zpthtc4jj.mp3",
+ "plural": "מִשְׁתִּים",
+ "plural_audio": "https://audio.pealim.com/v0/xc/xcy6gtyi70em.mp3",
+ "construct_singular": "מִשְׁתֵּה־",
+ "construct_plural": "מִשְׁתֵּי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "שתיל": {
+ "slug": "7409-shtil",
+ "singular": "שְׁתִיל",
+ "singular_audio": "https://audio.pealim.com/v0/fj/fjgbdfa9k534.mp3",
+ "plural": "שְׁתִילִים",
+ "plural_audio": "https://audio.pealim.com/v0/ki/kigfdrccgavq.mp3",
+ "construct_singular": "שְׁתִיל־",
+ "construct_plural": "שְׁתִילֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "שתל": {
+ "slug": "8223-shetel",
+ "singular": "שֶׁתֶל",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fksqs6n1e98a.mp3",
+ "plural": "שְׁתָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/b8/b8c4uvwkk5pp.mp3",
+ "construct_singular": "שֶׁתֶל־",
+ "construct_plural": "שִׁתְלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שתילה": {
+ "slug": "6676-shtila",
+ "singular": "שְׁתִילָה",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1cl2fc92ksn23.mp3",
+ "plural": "שְׁתִילוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/kp/kpmj0zw9l5f5.mp3",
+ "construct_singular": "שְׁתִילַת־",
+ "construct_plural": "שְׁתִילוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "משתן": {
+ "slug": "5725-mashten",
+ "singular": "מַשְׁתֵּן",
+ "singular_audio": "https://audio.pealim.com/v0/ny/ny62d5iunizk.mp3",
+ "plural": "מַשְׁתְּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16v0svwl0dg9s.mp3",
+ "construct_singular": "מַשְׁתֵּן־",
+ "construct_plural": "מַשְׁתְּנֵי־",
+ "gender": "masculine",
+ "mishkal": "maktel"
+ },
+ "שתן": {
+ "slug": "3188-sheten",
+ "singular": "שֶׁתֶן",
+ "singular_audio": "https://audio.pealim.com/v0/fk/fksqt8k2anyx.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שֶׁתֶן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "שתף": {
+ "slug": "7512-shutaf",
+ "singular": "שֻׁתָּף",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rfdimk543yym.mp3",
+ "plural": "שֻׁתָּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/2v/2vaip2xhg6tj.mp3",
+ "construct_singular": "שֻׁתַּף־",
+ "construct_plural": "שֻׁתָּפֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "השתתפות": {
+ "slug": "6328-hishtatfut",
+ "singular": "הִשְׁתַּתְּפוּת",
+ "singular_audio": "https://audio.pealim.com/v0/19/19bwu2k8fid8x.mp3",
+ "plural": "הִשְׁתַּתְּפֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1k/1kli1jz9vcw67.mp3",
+ "construct_singular": "הִשְׁתַּתְּפוּת־",
+ "construct_plural": "הִשְׁתַּתְּפֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "hitkattlut"
+ },
+ "שתוף": {
+ "slug": "4288-shituf",
+ "singular": "שִׁתּוּף",
+ "singular_audio": "https://audio.pealim.com/v0/11/11qn9qgerl74i.mp3",
+ "plural": "שִׁתּוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/13/13v32qfbv2na1.mp3",
+ "construct_singular": "שִׁתּוּף־",
+ "construct_plural": "שִׁתּוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שתפות": {
+ "slug": "9017-shutafut",
+ "singular": "שֻׁתָּפוּת",
+ "singular_audio": "https://audio.pealim.com/v0/92/927vb4707csv.mp3",
+ "plural": "שֻׁתָּפֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/z9/z9tnj0dwhq5l.mp3",
+ "construct_singular": "שֻׁתָּפוּת־",
+ "construct_plural": "שֻׁתָּפֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "שתוק": {
+ "slug": "7082-shituk",
+ "singular": "שִׁתּוּק",
+ "singular_audio": "https://audio.pealim.com/v0/11/11qn9p1uqdzgx.mp3",
+ "plural": "שִׁתּוּקִים",
+ "plural_audio": "https://audio.pealim.com/v0/lw/lws59ssf4f0b.mp3",
+ "construct_singular": "שִׁתּוּק־",
+ "construct_plural": "שִׁתּוּקֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "שתיקה": {
+ "slug": "2838-shtika",
+ "singular": "שְׁתִיקָה",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1cl5afl7p0jm7.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "שְׁתִיקַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תא": {
+ "slug": "6643-ta",
+ "singular": "תָּא",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v97y0lgr5e.mp3",
+ "plural": "תָּאִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1q0u01br58zmu.mp3",
+ "construct_singular": "תָּא־",
+ "construct_plural": "תָּאֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תאבון": {
+ "slug": "5387-teavon",
+ "singular": "תֵּאָבוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/19/19l336u23scbt.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תַּאֲבוֹן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "תאום": {
+ "slug": "6123-teum",
+ "singular": "תֵּאוּם",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qlg76pby7yxd.mp3",
+ "plural": "תֵּאוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1cuk4fkjwjt8k.mp3",
+ "construct_singular": "תֵּאוּם־",
+ "construct_plural": "תֵּאוּמֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "התאמה": {
+ "slug": "2922-hatama",
+ "singular": "הַתְאָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/yc/ycb7yqlnlv7o.mp3",
+ "plural": "הַתְאָמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/zu/zu3bojx5jv7s.mp3",
+ "construct_singular": "הַתְאָמַת־",
+ "construct_plural": "הַתְאָמוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "התאם": {
+ "slug": "8546-hetem",
+ "singular": "הֶתְאֵם",
+ "singular_audio": "https://audio.pealim.com/v0/18/18gw5sjtrjamc.mp3",
+ "plural": "הֶתְאֵמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1j/1jqbl7d6otiav.mp3",
+ "construct_singular": "הֶתְאֵם־",
+ "construct_plural": "הֶתְאֵמֵי־",
+ "gender": "masculine",
+ "mishkal": "hektel"
+ },
+ "תאנה": {
+ "slug": "7597-teena",
+ "singular": "תְּאֵנָה",
+ "singular_audio": "https://audio.pealim.com/v0/h5/h5uifp2wfalx.mp3",
+ "plural": "תְּאֵנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/12/12uxx9n8cos7t.mp3",
+ "construct_singular": "תְּאֵנַת־",
+ "construct_plural": "תְּאֵנוֹת־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תאר": {
+ "slug": "5169-toar",
+ "singular": "תֹּאַר",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klyxig10x7md.mp3",
+ "plural": "תְּאָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/17/17v7ui7z0xx7.mp3",
+ "construct_singular": "תֹּאַר־",
+ "construct_plural": "תָּאֳרֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "תאור": {
+ "slug": "3735-teur",
+ "singular": "תֵּאוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qlg72uaux4vr.mp3",
+ "plural": "תֵּאוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/az/azsb3ukweu5d.mp3",
+ "construct_singular": "תֵּאוּר־",
+ "construct_plural": "תֵּאוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "מתאר": {
+ "slug": "8765-mitar",
+ "singular": "מִתְאָר",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1gmg0j8t86rci.mp3",
+ "plural": "מִתְאָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1epebaorpffc2.mp3",
+ "construct_singular": "מִתְאַר־",
+ "construct_plural": "מִתְאֲרֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "תבלין": {
+ "slug": "5555-tavlin",
+ "singular": "תַּבְלִין",
+ "singular_audio": "https://audio.pealim.com/v0/jg/jgjp055xa1gt.mp3",
+ "plural": "תַּבְלִינִים",
+ "plural_audio": "https://audio.pealim.com/v0/6j/6jf2y6jmsse4.mp3",
+ "construct_singular": "תַּבְלִין־",
+ "construct_plural": "תַּבְלִינֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תבל": {
+ "slug": "3858-tevel",
+ "singular": "תֶּבֶל",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klayv2miwxe2.mp3",
+ "plural": "תְּבָלִים",
+ "plural_audio": "https://audio.pealim.com/v0/xy/xyrghqkq3q1t.mp3",
+ "construct_singular": "תֶּבֶל־",
+ "construct_plural": "תִּבְלֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תבן": {
+ "slug": "9271-teven",
+ "singular": "תֶּבֶן",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klayw4jjtc4p.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תֶּבֶן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תביעה": {
+ "slug": "5071-tvia",
+ "singular": "תְּבִיעָה",
+ "singular_audio": "https://audio.pealim.com/v0/mx/mx2jsy5p5hsf.mp3",
+ "plural": "תְּבִיעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/lh/lhiuwb4ohwj7.mp3",
+ "construct_singular": "תְּבִיעַת־",
+ "construct_plural": "תְּבִיעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תובע": {
+ "slug": "6131-tovea",
+ "singular": "תּוֹבֵעַ",
+ "singular_audio": "https://audio.pealim.com/v0/lg/lgstg5w8fatl.mp3",
+ "plural": "תּוֹבְעִים",
+ "plural_audio": "https://audio.pealim.com/v0/26/26lfj1uuahh3.mp3",
+ "construct_singular": "תּוֹבֵעַ־",
+ "construct_plural": "תּוֹבְעֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "תדירות": {
+ "slug": "8687-tdirut",
+ "singular": "תְּדִירוּת",
+ "singular_audio": "https://audio.pealim.com/v0/w6/w6gjsv0es5ae.mp3",
+ "plural": "תְּדִירֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/pt/ptjddx44c0o2.mp3",
+ "construct_singular": "תְּדִירוּת־",
+ "construct_plural": "תְּדִירֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תדר": {
+ "slug": "4848-teder",
+ "singular": "תֶּדֶר",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klbhq2on9tf4.mp3",
+ "plural": "תְּדָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/d5/d52kesliwyht.mp3",
+ "construct_singular": "תֶּדֶר־",
+ "construct_plural": "תִּדְרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תדרוך": {
+ "slug": "8453-tidruch",
+ "singular": "תִּדְרוּךְ",
+ "singular_audio": "https://audio.pealim.com/v0/wt/wtvp6wgk5nwg.mp3",
+ "plural": "תִּדְרוּכִים",
+ "plural_audio": "https://audio.pealim.com/v0/29/29f31fxwvinj.mp3",
+ "construct_singular": "תִּדְרוּךְ־",
+ "construct_plural": "תִּדְרוּכֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תה": {
+ "slug": "6873-te",
+ "singular": "תֵּה",
+ "singular_audio": "https://audio.pealim.com/v0/11/117v97y1yefv3.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תֵּה־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תהיה": {
+ "slug": "4380-tehiya",
+ "singular": "תְּהִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/5f/5fkxosh88ixn.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תְּהִיַּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תהו": {
+ "slug": "6750-tohu",
+ "singular": "תֹּהוּ",
+ "singular_audio": "https://audio.pealim.com/v0/e8/e8765hq7y4mv.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תֹּהוּ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "תהום": {
+ "slug": "7183-tehom",
+ "singular": "תְּהוֹם",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rjauq2cvussl.mp3",
+ "plural": "תְּהוֹמוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wp0h1tqjwked.mp3",
+ "construct_singular": "תְּהוֹם־",
+ "construct_plural": "תְּהוֹמוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktol"
+ },
+ "תו": {
+ "slug": "7913-tav",
+ "singular": "תָּו",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksplt31vj99.mp3",
+ "plural": "תָּוִים",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1pzpnd7kreb43.mp3",
+ "construct_singular": "תַּו־",
+ "construct_plural": "תָּוֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תוית": {
+ "slug": "7914-tavit",
+ "singular": "תָּוִית",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1pzpn8n9nhv8p.mp3",
+ "plural": "תָּוִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/mi/mis8j0e6p5km.mp3",
+ "construct_singular": "תָּוִית־",
+ "construct_plural": "תָּוִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תוחלת חיים": {
+ "slug": "6909-tochelet-chayim",
+ "singular": "תּוֹחֶלֶת חַיִּים",
+ "singular_audio": "https://audio.pealim.com/v0/qd/qd6c80xi04nz.mp3",
+ "plural": "תּוֹחֲלוֹת חַיִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1l3crwgxbyz3n.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תווי": {
+ "slug": "7916-tivuy",
+ "singular": "תִּוּוּי",
+ "singular_audio": "https://audio.pealim.com/v0/gg/ggebmc630uys.mp3",
+ "plural": "תִּוּוּיִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1exdzx42djbka.mp3",
+ "construct_singular": "תִּוּוּי־",
+ "construct_plural": "תִּוּוּיֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תויה": {
+ "slug": "6694-tviya",
+ "singular": "תְּוִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1auj8a4t7emtr.mp3",
+ "plural": "תְּוִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/x7/x7vkt0xbl5jb.mp3",
+ "construct_singular": "תְּוִיַּת־",
+ "construct_plural": "תְּוִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "מתוה": {
+ "slug": "5394-mitve",
+ "singular": "מִתְוֶה",
+ "singular_audio": "https://audio.pealim.com/v0/1j/1jy785jawjekr.mp3",
+ "plural": "מִתְוִים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1ditla78o8ai0.mp3",
+ "construct_singular": "מִתְוֵה־",
+ "construct_plural": "מִתְוֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "תואי": {
+ "slug": "5101-tvay",
+ "singular": "תְּוַאי",
+ "singular_audio": "https://audio.pealim.com/v0/kj/kjzlrj7xmzqh.mp3",
+ "plural": "תְּוָאִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v7358gj5ge4f.mp3",
+ "construct_singular": "תְּוַאי־",
+ "construct_plural": "תְּוָאֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תווך": {
+ "slug": "6047-tivuch",
+ "singular": "תִּוּוּךְ",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1eh7ql4x56xma.mp3",
+ "plural": "תִּוּוּכִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qw9a873rds5r.mp3",
+ "construct_singular": "תִּוּוּךְ־",
+ "construct_plural": "תִּוּוּכֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תוך": {
+ "slug": "4169-tavech",
+ "singular": "תָּוֶךְ",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1pzp4rc4karkv.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תּוֹךְ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תוכית": {
+ "slug": "8261-tochit",
+ "singular": "תּוֹכִית",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1wkh9dw12quzk.mp3",
+ "plural": "תּוֹכִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/io/ionsvgtbtn3v.mp3",
+ "construct_singular": "תּוֹכִית־",
+ "construct_plural": "תּוֹכִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תכי": {
+ "slug": "6864-tuki",
+ "singular": "תֻּכִּי",
+ "singular_audio": "https://audio.pealim.com/v0/km/kmhz3xyp75sj.mp3",
+ "plural": "תֻּכִּיִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1tetcut9y907t.mp3",
+ "construct_singular": "תֻּכִּי־",
+ "construct_plural": "תֻּכִּיֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תור": {
+ "slug": "6163-tor",
+ "singular": "תּוֹר",
+ "singular_audio": "https://audio.pealim.com/v0/su/suzua92431sc.mp3",
+ "plural": "תּוֹרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1wne6786ubqko.mp3",
+ "construct_singular": "תּוֹר־",
+ "construct_plural": "תּוֹרֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תושיה": {
+ "slug": "6175-tushiya",
+ "singular": "תּוּשִׁיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/bv/bv38p9ebc1nv.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תּוּשִׁיַּת־",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תות": {
+ "slug": "6263-tut",
+ "singular": "תּוּת",
+ "singular_audio": "https://audio.pealim.com/v0/su/suzua7t4stvn.mp3",
+ "plural": "תּוּתִים",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1x8ouxfpbi8x7.mp3",
+ "construct_singular": "תּוּת־",
+ "construct_plural": "תּוּתֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תותח": {
+ "slug": "8411-totach",
+ "singular": "תּוֹתָח",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1kk2k7qiswkzv.mp3",
+ "plural": "תּוֹתָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1w/1w9ui4whsaild.mp3",
+ "construct_singular": "תּוֹתַח־",
+ "construct_plural": "תּוֹתְחֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תזה": {
+ "slug": "8473-teza",
+ "singular": "תֶּזָה",
+ "singular_audio": "https://audio.pealim.com/v0/e8/e86ed60q1n11.mp3",
+ "plural": "תֶּזוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qd5m7j3d9ogb.mp3",
+ "construct_singular": "תֶּזַת־",
+ "construct_plural": "תֶּזוֹת־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תזמון": {
+ "slug": "4695-tizmun",
+ "singular": "תִּזְמוּן",
+ "singular_audio": "https://audio.pealim.com/v0/1b/1bqkelrhpny9k.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תִּזְמוּן־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תחזוק": {
+ "slug": "8906-tichzuk",
+ "singular": "תִּחְזוּק",
+ "singular_audio": "https://audio.pealim.com/v0/3x/3x2vvb1wru98.mp3",
+ "plural": "תִּחְזוּקִים",
+ "plural_audio": "https://audio.pealim.com/v0/xv/xv12495bfkp8.mp3",
+ "construct_singular": "תִּחְזוּק־",
+ "construct_plural": "תִּחְזוּקֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "התחלה": {
+ "slug": "2923-hatchala",
+ "singular": "הַתְחָלָה",
+ "singular_audio": "https://audio.pealim.com/v0/1w/1wy6v12v9iejz.mp3",
+ "plural": "הַתְחָלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1uygzy52fm0dd.mp3",
+ "construct_singular": "הַתְחָלַת־",
+ "construct_plural": "הַתְחָלוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "מתחם": {
+ "slug": "3888-mitcham",
+ "singular": "מִתְחָם",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1go0ey34ujzfa.mp3",
+ "plural": "מִתְחָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/ui/uip7jtdvp67h.mp3",
+ "construct_singular": "מִתְחַם־",
+ "construct_plural": "מִתְחֲמֵי־",
+ "gender": "masculine",
+ "mishkal": "miktal"
+ },
+ "תחום": {
+ "slug": "4708-tchum",
+ "singular": "תְּחוּם",
+ "singular_audio": "https://audio.pealim.com/v0/kk/kk0dduuo54eb.mp3",
+ "plural": "תְּחוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/sx/sxmfsjwl4ue2.mp3",
+ "construct_singular": "תְּחוּם־",
+ "construct_plural": "תְּחוּמֵי־",
+ "gender": "masculine",
+ "mishkal": "ktul"
+ },
+ "תחתית": {
+ "slug": "7980-tachtit",
+ "singular": "תַּחְתִּית",
+ "singular_audio": "https://audio.pealim.com/v0/g7/g7btadpsal4p.mp3",
+ "plural": "תַּחְתִּיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1o/1oaarot0tbd5u.mp3",
+ "construct_singular": "תַּחְתִּית־",
+ "construct_plural": "תַּחְתִּיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תאוריה": {
+ "slug": "6914-teorya",
+ "singular": "תֵּאוֹרְיָה",
+ "singular_audio": "https://audio.pealim.com/v0/mb/mbmt23yfbtm8.mp3",
+ "plural": "תֵּאוֹרְיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1ahfxrvccu9c6.mp3",
+ "construct_singular": "תֵּאוֹרְיַת־",
+ "construct_plural": "תֵּאוֹרְיוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תאטרון": {
+ "slug": "6884-teatron",
+ "singular": "תֵּאַטְרוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/bn/bn682ny9j5bh.mp3",
+ "plural": "תֵּאַטְרוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/16/16w8v5a67ppmm.mp3",
+ "construct_singular": "תֵּאַטְרוֹן־",
+ "construct_plural": "תֵּאַטְרוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תבה": {
+ "slug": "7249-teva",
+ "singular": "תֵּבָה",
+ "singular_audio": "https://audio.pealim.com/v0/e8/e863hcret3r3.mp3",
+ "plural": "תֵּבוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1ql85fkfjy9sx.mp3",
+ "construct_singular": "תֵּבַת־",
+ "construct_plural": "תֵּבוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "מותג": {
+ "slug": "7414-mutag",
+ "singular": "מוּתָג",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1acn94ynvwh10.mp3",
+ "plural": "מוּתָגִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1izuvs25sv3l0.mp3",
+ "construct_singular": "מוּתַג־",
+ "construct_plural": "מוּתְגֵי־",
+ "gender": "masculine",
+ "mishkal": "muktal"
+ },
+ "תיק": {
+ "slug": "4760-tik",
+ "singular": "תִּיק",
+ "singular_audio": "https://audio.pealim.com/v0/su/suzulh46c7mf.mp3",
+ "plural": "תִּיקִים",
+ "plural_audio": "https://audio.pealim.com/v0/hh/hhlqbn1fah47.mp3",
+ "construct_singular": "תִּיק־",
+ "construct_plural": "תִּיקֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תיקיה": {
+ "slug": "6125-tikiya",
+ "singular": "תִּיקִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q21xyjs3gzpy.mp3",
+ "plural": "תִּיקִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vhq2fqyi602i.mp3",
+ "construct_singular": "תִּיקִיַּת־",
+ "construct_plural": "תִּיקִיּוֹת־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תיקו": {
+ "slug": "5930-teku",
+ "singular": "תֵּיקוּ",
+ "singular_audio": "https://audio.pealim.com/v0/kl/kl5eh2kf794o.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תירות": {
+ "slug": "6366-tayarut",
+ "singular": "תַּיָּרוּת",
+ "singular_audio": "https://audio.pealim.com/v0/me/merh3vw4rp4x.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תַּיָּרוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תיר": {
+ "slug": "4933-tayar",
+ "singular": "תַּיָּר",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q5pqodt1cizt.mp3",
+ "plural": "תַּיָּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/sl/slotpx5niv49.mp3",
+ "construct_singular": "תַּיַּר־",
+ "construct_plural": "תַּיָּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "תירוש": {
+ "slug": "7693-tirosh",
+ "singular": "תִּירוֹשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/i1/i1pt1ezmeucf.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תִּירוֹשׁ־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תירס": {
+ "slug": "6847-tiras",
+ "singular": "תִּירָס",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qq8u195835e2.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תִּירַס־",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תיש": {
+ "slug": "4271-tayish",
+ "singular": "תַּיִשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q5rf7xghjn3i.mp3",
+ "plural": "תְּיָשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dydw8m4kyyn6.mp3",
+ "construct_singular": "תֵּישׁ־",
+ "construct_plural": "תֵּישֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תכלת": {
+ "slug": "7358-tchelet",
+ "singular": "תְּכֶלֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1kzpvkeskpc8r.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תְּכֶלֶת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תכנית": {
+ "slug": "4823-tochnit",
+ "singular": "תָּכְנִית",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1m6lfm8hheb02.mp3",
+ "plural": "תָּכְנִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/8g/8g51mecoya9h.mp3",
+ "construct_singular": "תָּכְנִית־",
+ "construct_plural": "תָּכְנִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תכן": {
+ "slug": "4711-techen",
+ "singular": "תֶּכֶן",
+ "singular_audio": "https://audio.pealim.com/v0/kl/kldkm2ho4xrk.mp3",
+ "plural": "תְּכָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vx771z8sy4bk.mp3",
+ "construct_singular": "תֶּכֶן־",
+ "construct_plural": "תִּכְנֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תכנה": {
+ "slug": "3235-tochna",
+ "singular": "תָּכְנָה",
+ "singular_audio": "https://audio.pealim.com/v0/15/15h7yzed1fe73.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תָּכְנַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "kotla"
+ },
+ "מתכון": {
+ "slug": "4944-matkon",
+ "singular": "מַתְכּוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1u/1uqlplare9vl0.mp3",
+ "plural": "מַתְכּוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/if/ifyfc3omj6s7.mp3",
+ "construct_singular": "מַתְכּוֹן־",
+ "construct_plural": "מַתְכּוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": "maktol"
+ },
+ "תכנון": {
+ "slug": "8999-tichnun",
+ "singular": "תִּכְנוּן",
+ "singular_audio": "https://audio.pealim.com/v0/13/13bch6qpb52a5.mp3",
+ "plural": "תִּכְנוּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1ssje2hkpmsye.mp3",
+ "construct_singular": "תִּכְנוּן־",
+ "construct_plural": "תִּכְנוּנֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "מתכנת": {
+ "slug": "4824-metachnet",
+ "singular": "מְתַכְנֵת",
+ "singular_audio": "https://audio.pealim.com/v0/1g/1g1o2rzmz6n4r.mp3",
+ "plural": "מְתַכְנְתִים",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1fadkzx5hoani.mp3",
+ "construct_singular": "מְתַכְנֵת־",
+ "construct_plural": "מְתַכְנְתֵי־",
+ "gender": "masculine",
+ "mishkal": "mekattel"
+ },
+ "תכנות": {
+ "slug": "4825-tichnut",
+ "singular": "תִּכְנוּת",
+ "singular_audio": "https://audio.pealim.com/v0/13/13bckign5gxjy.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תִּכְנוּת־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תכיפות": {
+ "slug": "7936-tchifut",
+ "singular": "תְּכִיפוּת",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1xjj3gwi3wp5n.mp3",
+ "plural": "תְּכִיפֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/19/19jl48di7ef35.mp3",
+ "construct_singular": "תְּכִיפוּת־",
+ "construct_plural": "תְּכִיפֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תליה": {
+ "slug": "6686-tliya",
+ "singular": "תְּלִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1fetao4rpvcs4.mp3",
+ "plural": "תְּלִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1ul4xy04qelso.mp3",
+ "construct_singular": "תְּלִיַּת־",
+ "construct_plural": "תְּלִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תלות": {
+ "slug": "3760-tlut",
+ "singular": "תְּלוּת",
+ "singular_audio": "https://audio.pealim.com/v0/kk/kk1o8z43zdm5.mp3",
+ "plural": "תְּלֻיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/10/10bgrxz67jidf.mp3",
+ "construct_singular": "תְּלוּת־",
+ "construct_plural": "תְּלֻיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktut"
+ },
+ "תליון": {
+ "slug": "3593-tilyon",
+ "singular": "תִּלְיוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/1k/1ktmp37owvkvb.mp3",
+ "plural": "תִּלְיוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1a6prf29hwtcx.mp3",
+ "construct_singular": "תִּלְיוֹן־",
+ "construct_plural": "תִּלְיוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kitlon"
+ },
+ "תלם": {
+ "slug": "9247-telem",
+ "singular": "תֶּלֶם",
+ "singular_audio": "https://audio.pealim.com/v0/kl/kldtyrenfg6t.mp3",
+ "plural": "תְּלָמִים",
+ "plural_audio": "https://audio.pealim.com/v0/r9/r90achrrtj1f.mp3",
+ "construct_singular": "תֶּלֶם־",
+ "construct_plural": "תַּלְמֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תלוש": {
+ "slug": "8233-tlush",
+ "singular": "תְּלוּשׁ",
+ "singular_audio": "https://audio.pealim.com/v0/1r/1rhi904u59leq.mp3",
+ "plural": "תְּלוּשִׁים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e6ipz1fmjsbm.mp3",
+ "construct_singular": "תְּלוּשׁ־",
+ "construct_plural": "תְּלוּשֵׁי־",
+ "gender": "masculine",
+ "mishkal": "ktul"
+ },
+ "תלתל": {
+ "slug": "6268-taltal",
+ "singular": "תַּלְתָּל",
+ "singular_audio": "https://audio.pealim.com/v0/13/13e9x3wvkr86a.mp3",
+ "plural": "תַּלְתָּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/30/305ve23zlpc.mp3",
+ "construct_singular": "תַּלְתַּל־",
+ "construct_plural": "תַּלְתָּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "תמהון": {
+ "slug": "7934-timahon",
+ "singular": "תִּמָּהוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/ru/ru6re1zgrgwe.mp3",
+ "plural": "תִּמְהוֹנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lw8nkgxuc8wx.mp3",
+ "construct_singular": "תִּמְהוֹן־",
+ "construct_plural": "תִּמְהוֹנוֹת־",
+ "gender": "masculine",
+ "mishkal": "kittalon"
+ },
+ "תמחור": {
+ "slug": "9280-timchur",
+ "singular": "תִּמְחוּר",
+ "singular_audio": "https://audio.pealim.com/v0/xi/xinm4kewoob1.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תִּמְחוּר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תמיכה": {
+ "slug": "3082-tmicha",
+ "singular": "תְּמִיכָה",
+ "singular_audio": "https://audio.pealim.com/v0/13/13fpxttpeczdf.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תְּמִיכַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תמלול": {
+ "slug": "7107-timlul",
+ "singular": "תִּמְלוּל",
+ "singular_audio": "https://audio.pealim.com/v0/yh/yhef9kdl90r5.mp3",
+ "plural": "תִּמְלוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1v8oqvglyiucp.mp3",
+ "construct_singular": "תִּמְלוּל־",
+ "construct_plural": "תִּמְלוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תם": {
+ "slug": "8113-tom",
+ "singular": "תֹּם",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksplskl3zi7.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תֹּם־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "תמנון": {
+ "slug": "8440-tmanun",
+ "singular": "תְּמָנוּן",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1s28ooj7st7lw.mp3",
+ "plural": "תְּמָנוּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/pd/pd0wfhwsdykf.mp3",
+ "construct_singular": "תְּמָנוּן־",
+ "construct_plural": "תְּמָנוּנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תמסח": {
+ "slug": "7306-timsach",
+ "singular": "תִּמְסָח",
+ "singular_audio": "https://audio.pealim.com/v0/14/14ya6egr6dne.mp3",
+ "plural": "תִּמְסָחִים",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1m6or5c38lplk.mp3",
+ "construct_singular": "תִּמְסַח־",
+ "construct_plural": "תִּמְסְחֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תמר": {
+ "slug": "6925-tamar",
+ "singular": "תָּמָר",
+ "singular_audio": "https://audio.pealim.com/v0/kl/kluihmikzz7e.mp3",
+ "plural": "תְּמָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1t/1tenco76mezt7.mp3",
+ "construct_singular": "תְּמַר־",
+ "construct_plural": "תִּמְרֵי־",
+ "gender": "masculine",
+ "mishkal": "katal"
+ },
+ "תמרון": {
+ "slug": "6497-timron",
+ "singular": "תִּמְרוֹן",
+ "singular_audio": "https://audio.pealim.com/v0/10/10srup2z8cmw1.mp3",
+ "plural": "תִּמְרוֹנִים",
+ "plural_audio": "https://audio.pealim.com/v0/6z/6z29khtgalte.mp3",
+ "construct_singular": "תִּמְרוֹן־",
+ "construct_plural": "תִּמְרוֹנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תמרור": {
+ "slug": "7660-tamrur",
+ "singular": "תַּמְרוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1f/1f3mfqhrv4kv0.mp3",
+ "plural": "תַּמְרוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1d/1dt7z876f5p4g.mp3",
+ "construct_singular": "תַּמְרוּר־",
+ "construct_plural": "תַּמְרוּרֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תן": {
+ "slug": "7871-tan",
+ "singular": "תַּןּ",
+ "singular_audio": "https://audio.pealim.com/v0/su/suzukdbg00fi.mp3",
+ "plural": "תַּנִּים",
+ "plural_audio": "https://audio.pealim.com/v0/10/10iwwp4087kkt.mp3",
+ "construct_singular": "תַּןּ־",
+ "construct_plural": "תַּנֵּי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תנאי": {
+ "slug": "3639-tnay",
+ "singular": "תְּנַאי",
+ "singular_audio": "https://audio.pealim.com/v0/kk/kk2guvd1pt52.mp3",
+ "plural": "תְּנָאִים",
+ "plural_audio": "https://audio.pealim.com/v0/bc/bcmruj0y3zha.mp3",
+ "construct_singular": "תְּנַאי־",
+ "construct_plural": "תְּנָאֵי־",
+ "gender": "masculine",
+ "mishkal": "ktal"
+ },
+ "התניה": {
+ "slug": "8882-hatnaya",
+ "singular": "הַתְנָיָה",
+ "singular_audio": "https://audio.pealim.com/v0/1m/1mfwpxpofp14g.mp3",
+ "plural": "הַתְנָיוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ih/ihar3syiizu.mp3",
+ "construct_singular": "הַתְנָיַת־",
+ "construct_plural": "הַתְנָיוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תנין": {
+ "slug": "6535-tanin",
+ "singular": "תַּנִּין",
+ "singular_audio": "https://audio.pealim.com/v0/10/10iwwpta8t6ek.mp3",
+ "plural": "תַּנִּינִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18eof86xjw3m3.mp3",
+ "construct_singular": "תַּנִּין־",
+ "construct_plural": "תַּנִּינֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תסכול": {
+ "slug": "3145-tiskul",
+ "singular": "תִּסְכּוּל",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1ckck9d909gug.mp3",
+ "plural": "תִּסְכּוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/d6/d6knw2nr37y6.mp3",
+ "construct_singular": "תִּסְכּוּל־",
+ "construct_plural": "תִּסְכּוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תסיסה": {
+ "slug": "6783-tsisa",
+ "singular": "תְּסִיסָה",
+ "singular_audio": "https://audio.pealim.com/v0/lh/lhdg4tztduzo.mp3",
+ "plural": "תְּסִיסוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/16/16l2sxuw1qlx4.mp3",
+ "construct_singular": "תְּסִיסַת־",
+ "construct_plural": "תְּסִיסוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תסס": {
+ "slug": "6784-tasas",
+ "singular": "תַּסָּס",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q3x6h1zg56n6.mp3",
+ "plural": "תַּסָּסִים",
+ "plural_audio": "https://audio.pealim.com/v0/9h/9hx1zk6mryjm.mp3",
+ "construct_singular": "תַּסַּס־",
+ "construct_plural": "תַּסָּסֵי־",
+ "gender": "masculine",
+ "mishkal": "kattal"
+ },
+ "תעוב": {
+ "slug": "9089-tiuv",
+ "singular": "תִּעוּב",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qod48tha8erp.mp3",
+ "plural": "תִּעוּבִים",
+ "plural_audio": "https://audio.pealim.com/v0/1i/1ijdi6oe4zv7b.mp3",
+ "construct_singular": "תִּעוּב־",
+ "construct_plural": "תִּעוּבֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תעוד": {
+ "slug": "4690-tiud",
+ "singular": "תִּעוּד",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1qod48479msyh.mp3",
+ "plural": "תִּעוּדִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1ui8shrf392bv.mp3",
+ "construct_singular": "תִּעוּד־",
+ "construct_plural": "תִּעוּדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תעיה": {
+ "slug": "8623-teiya",
+ "singular": "תְּעִיָּה",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1o88h23qecoxz.mp3",
+ "plural": "תְּעִיּוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/7p/7p9r771u84mz.mp3",
+ "construct_singular": "תְּעִיַּת־",
+ "construct_plural": "תְּעִיּוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תעתוע": {
+ "slug": "7511-taatua",
+ "singular": "תַּעְתּוּעַ",
+ "singular_audio": "https://audio.pealim.com/v0/fo/fopo6ydhs4io.mp3",
+ "plural": "תַּעְתּוּעִים",
+ "plural_audio": "https://audio.pealim.com/v0/ma/mafzykbt87h0.mp3",
+ "construct_singular": "תַּעְתּוּעַ־",
+ "construct_plural": "תַּעְתּוּעֵי־",
+ "gender": "masculine",
+ "mishkal": "kattul"
+ },
+ "תעתוק": {
+ "slug": "8697-tiatuk",
+ "singular": "תִּעְתּוּק",
+ "singular_audio": "https://audio.pealim.com/v0/ng/ngae2rwdu2ov.mp3",
+ "plural": "תִּעְתּוּקִים",
+ "plural_audio": "https://audio.pealim.com/v0/1q/1qmqqr3i394p9.mp3",
+ "construct_singular": "תִּעְתּוּק־",
+ "construct_plural": "תִּעְתּוּקֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תפוז": {
+ "slug": "4812-tapuz",
+ "singular": "תַּפּוּז",
+ "singular_audio": "https://audio.pealim.com/v0/11/11axzcpyzs45l.mp3",
+ "plural": "תַּפּוּזִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1g1yeh92v4a5d.mp3",
+ "construct_singular": "תַּפּוּז־",
+ "construct_plural": "תַּפּוּזֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תפוח אדמה": {
+ "slug": "6995-tapuach-adama",
+ "singular": "תַּפּוּחַ אֲדָמָה",
+ "singular_audio": "https://audio.pealim.com/v0/12/12m69cwn0grzw.mp3",
+ "plural": "תַּפּוּחֵי אֲדָמָה",
+ "plural_audio": "https://audio.pealim.com/v0/3c/3ci3y561p7o7.mp3",
+ "construct_singular": "",
+ "construct_plural": "",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תפיחה": {
+ "slug": "4263-tficha",
+ "singular": "תְּפִיחָה",
+ "singular_audio": "https://audio.pealim.com/v0/3j/3j54e5eo0pow.mp3",
+ "plural": "תְּפִיחוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/u7/u7qw9si4tlci.mp3",
+ "construct_singular": "תְּפִיחַת־",
+ "construct_plural": "תְּפִיחוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "התפלה": {
+ "slug": "4203-hatpala",
+ "singular": "הַתְפָּלָה",
+ "singular_audio": "https://audio.pealim.com/v0/5o/5o3go4j7l1f.mp3",
+ "plural": "הַתְפָּלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/pn/pnhe4lkaxpaz.mp3",
+ "construct_singular": "הַתְפָּלַת־",
+ "construct_plural": "הַתְפָּלוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תפיסה": {
+ "slug": "3073-tfisa",
+ "singular": "תְּפִיסָה",
+ "singular_audio": "https://audio.pealim.com/v0/3j/3j2io7gko5da.mp3",
+ "plural": "תְּפִיסוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/sa/sa92ql252eo8.mp3",
+ "construct_singular": "תְּפִיסַת־",
+ "construct_plural": "תְּפִיסוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תפעול": {
+ "slug": "4504-tiful",
+ "singular": "תִּפְעוּל",
+ "singular_audio": "https://audio.pealim.com/v0/ri/riswzfdgftjq.mp3",
+ "plural": "תִּפְעוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/185lvl0ixhk7g.mp3",
+ "construct_singular": "תִּפְעוּל־",
+ "construct_plural": "תִּפְעוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תף": {
+ "slug": "4851-tof",
+ "singular": "תֹּף",
+ "singular_audio": "https://audio.pealim.com/v0/wk/wksplshqu958.mp3",
+ "plural": "תֻּפִּים",
+ "plural_audio": "https://audio.pealim.com/v0/1p/1p8g7iynf4zzz.mp3",
+ "construct_singular": "תֹּף־",
+ "construct_plural": "תֻּפֵּי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "תפיפה": {
+ "slug": "8509-tfifa",
+ "singular": "תְּפִיפָה",
+ "singular_audio": "https://audio.pealim.com/v0/3j/3j1qk0vjizdq.mp3",
+ "plural": "תְּפִיפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/rp/rpej2tmf8jni.mp3",
+ "construct_singular": "תְּפִיפַת־",
+ "construct_plural": "תְּפִיפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תפקוד": {
+ "slug": "8018-tifkud",
+ "singular": "תִּפְקוּד",
+ "singular_audio": "https://audio.pealim.com/v0/sh/shjr12s2c8vd.mp3",
+ "plural": "תִּפְקוּדִים",
+ "plural_audio": "https://audio.pealim.com/v0/sl/sllg53pmfxwz.mp3",
+ "construct_singular": "תִּפְקוּד־",
+ "construct_plural": "תִּפְקוּדֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תפירה": {
+ "slug": "2839-tfira",
+ "singular": "תְּפִירָה",
+ "singular_audio": "https://audio.pealim.com/v0/3j/3j0p2g3hzhna.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תְּפִירַת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תפר": {
+ "slug": "3189-tefer",
+ "singular": "תֶּפֶר",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klfx1rztsngh.mp3",
+ "plural": "תְּפָרִים",
+ "plural_audio": "https://audio.pealim.com/v0/1l/1lacr2j7k87jg.mp3",
+ "construct_singular": "תֶּפֶר־",
+ "construct_plural": "תִּפְרֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "מתפרה": {
+ "slug": "3574-mitpara",
+ "singular": "מִתְפָּרָה",
+ "singular_audio": "https://audio.pealim.com/v0/ba/baue0b3zic3d.mp3",
+ "plural": "מִתְפָּרוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/w3/w3x9k76ilatp.mp3",
+ "construct_singular": "מִתְפֶּרֶת־",
+ "construct_plural": "מִתְפְּרוֹת־",
+ "gender": "masculine",
+ "mishkal": "miktala"
+ },
+ "תפישה": {
+ "slug": "3078-tfisa",
+ "singular": "תְּפִישָׂה",
+ "singular_audio": "https://audio.pealim.com/v0/us/us392058zxju.mp3",
+ "plural": "תְּפִישׂוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/8g/8g7e1ahkxxj4.mp3",
+ "construct_singular": "תְּפִישַׂת־",
+ "construct_plural": "תְּפִישׂוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תקלה": {
+ "slug": "8650-takala",
+ "singular": "תַּקָּלָה",
+ "singular_audio": "https://audio.pealim.com/v0/12/12n187ftn8mqf.mp3",
+ "plural": "תַּקָּלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ci/ci0tlydsmim9.mp3",
+ "construct_singular": "תַּקָּלַת־",
+ "construct_plural": "תַּקָּלוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattala"
+ },
+ "תקליטור": {
+ "slug": "8355-taklitor",
+ "singular": "תַּקְלִיטוֹר",
+ "singular_audio": "https://audio.pealim.com/v0/1o/1oz7es2v4nehk.mp3",
+ "plural": "תַּקְלִיטוֹרִים",
+ "plural_audio": "https://audio.pealim.com/v0/5v/5v9z695uza1i.mp3",
+ "construct_singular": "תַּקְלִיטוֹר־",
+ "construct_plural": "תַּקְלִיטוֹרֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תקון": {
+ "slug": "7003-tikun",
+ "singular": "תִּקּוּן",
+ "singular_audio": "https://audio.pealim.com/v0/jx/jxhln0mgzmor.mp3",
+ "plural": "תִּקּוּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/2k/2kbdbc7t13t6.mp3",
+ "construct_singular": "תִּקּוּן־",
+ "construct_plural": "תִּקּוּנֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תקן": {
+ "slug": "3190-teken",
+ "singular": "תֶּקֶן",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klgp2sts8yko.mp3",
+ "plural": "תְּקָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1f/1folzuc64ga7k.mp3",
+ "construct_singular": "תֶּקֶן־",
+ "construct_plural": "תִּקְנֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "התקנה": {
+ "slug": "4420-hatkana",
+ "singular": "הַתְקָנָה",
+ "singular_audio": "https://audio.pealim.com/v0/17/1741q2tm1ovbx.mp3",
+ "plural": "הַתְקָנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1e1qwk2vwbwrd.mp3",
+ "construct_singular": "הַתְקָנַת־",
+ "construct_plural": "הַתְקָנוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "התקן": {
+ "slug": "8210-hetken",
+ "singular": "הֶתְקֵן",
+ "singular_audio": "https://audio.pealim.com/v0/18/18bqiwncx73oh.mp3",
+ "plural": "הֶתְקֵנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1x/1xxz62w5fljug.mp3",
+ "construct_singular": "הֶתְקֵן־",
+ "construct_plural": "הֶתְקֵנֵי־",
+ "gender": "masculine",
+ "mishkal": "hektel"
+ },
+ "מתקן": {
+ "slug": "8247-metaken",
+ "singular": "מְתַקֵּן",
+ "singular_audio": "https://audio.pealim.com/v0/hx/hxccjasxb6xu.mp3",
+ "plural": "מְתַקְּנִים",
+ "plural_audio": "https://audio.pealim.com/v0/7w/7wr83rxb8jk7.mp3",
+ "construct_singular": "מְתַקֵּן־",
+ "construct_plural": "מְתַקְּנֵי־",
+ "gender": "masculine",
+ "mishkal": "mekattel"
+ },
+ "תקנה": {
+ "slug": "9028-takana",
+ "singular": "תַּקָּנָה",
+ "singular_audio": "https://audio.pealim.com/v0/12/12m4y2jobnzbl.mp3",
+ "plural": "תַּקָּנוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/10/10fre84fpt6df.mp3",
+ "construct_singular": "תַּקָּנַת־",
+ "construct_plural": "תַּקָּנוֹת־",
+ "gender": "feminine",
+ "mishkal": "kattala"
+ },
+ "תקע": {
+ "slug": "5814-teka",
+ "singular": "תֶּקַע",
+ "singular_audio": "https://audio.pealim.com/v0/kl/klgpeqk2g9xs.mp3",
+ "plural": "תְּקָעִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1g2icy6gvkww8.mp3",
+ "construct_singular": "תֶּקַע־",
+ "construct_plural": "תִּקְעֵי־",
+ "gender": "masculine",
+ "mishkal": "ketel"
+ },
+ "תקיעה": {
+ "slug": "7437-tkia",
+ "singular": "תְּקִיעָה",
+ "singular_audio": "https://audio.pealim.com/v0/ef/ef8o5t9ymw9m.mp3",
+ "plural": "תְּקִיעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/ds/dsh5zdu78aj0.mp3",
+ "construct_singular": "תְּקִיעַת־",
+ "construct_plural": "תְּקִיעוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תוקפנות": {
+ "slug": "7518-tokfanut",
+ "singular": "תּוֹקְפָנוּת",
+ "singular_audio": "https://audio.pealim.com/v0/6u/6u2q1jud14rn.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תּוֹקְפָנוּת־",
+ "construct_plural": "",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תקוף": {
+ "slug": "5687-tikuf",
+ "singular": "תִּקּוּף",
+ "singular_audio": "https://audio.pealim.com/v0/jx/jxhlof6i6ubz.mp3",
+ "plural": "תִּקּוּפִים",
+ "plural_audio": "https://audio.pealim.com/v0/qi/qi1xxi9q1dp2.mp3",
+ "construct_singular": "תִּקּוּף־",
+ "construct_plural": "תִּקּוּפֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "מתקפה": {
+ "slug": "4397-mitkafa",
+ "singular": "מִתְקָפָה",
+ "singular_audio": "https://audio.pealim.com/v0/1p/1p7h0e6ocuqul.mp3",
+ "plural": "מִתְקָפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/5k/5ka0aa9f8cyt.mp3",
+ "construct_singular": "מִתְקֶפֶת־",
+ "construct_plural": "מִתְקְפוֹת־",
+ "gender": "feminine",
+ "mishkal": "miktala"
+ },
+ "תקף": {
+ "slug": "3306-tokef",
+ "singular": "תֹּקֶף",
+ "singular_audio": "https://audio.pealim.com/v0/km/km4wpvhymkll.mp3",
+ "plural": "תְּקָפִים",
+ "plural_audio": "https://audio.pealim.com/v0/1g/1ggeq20r32244.mp3",
+ "construct_singular": "תֹּקֶף־",
+ "construct_plural": "תָּקְפֵי־",
+ "gender": "masculine",
+ "mishkal": "kotel"
+ },
+ "התקף": {
+ "slug": "5377-hetkef",
+ "singular": "הֶתְקֵף",
+ "singular_audio": "https://audio.pealim.com/v0/18/18bqhp43vzihx.mp3",
+ "plural": "הֶתְקֵפִים",
+ "plural_audio": "https://audio.pealim.com/v0/sn/sn1k4zck24hg.mp3",
+ "construct_singular": "הֶתְקֵף־",
+ "construct_plural": "הֶתְקֵפֵי־",
+ "gender": "masculine",
+ "mishkal": "hektel"
+ },
+ "תקיפה": {
+ "slug": "7408-tkifa",
+ "singular": "תְּקִיפָה",
+ "singular_audio": "https://audio.pealim.com/v0/ef/ef96wlnz30x6.mp3",
+ "plural": "תְּקִיפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/de/deksvjjzr5b4.mp3",
+ "construct_singular": "תְּקִיפַת־",
+ "construct_plural": "תְּקִיפוֹת־",
+ "gender": "feminine",
+ "mishkal": "ktila"
+ },
+ "תוקפן": {
+ "slug": "7517-tokfan",
+ "singular": "תּוֹקְפָן",
+ "singular_audio": "https://audio.pealim.com/v0/18/18pxl7nm8jeuc.mp3",
+ "plural": "תּוֹקְפָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1m/1mnejzkvdfeap.mp3",
+ "construct_singular": "תּוֹקְפַן־",
+ "construct_plural": "תּוֹקְפָנֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "התקפה": {
+ "slug": "8575-hatkafa",
+ "singular": "הַתְקָפָה",
+ "singular_audio": "https://audio.pealim.com/v0/16/16c8zv512y5gp.mp3",
+ "plural": "הַתְקָפוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/8q/8qtam630shed.mp3",
+ "construct_singular": "הַתְקָפַת־",
+ "construct_plural": "הַתְקָפוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תקשור": {
+ "slug": "3669-tikshur",
+ "singular": "תִּקְשׁוּר",
+ "singular_audio": "https://audio.pealim.com/v0/1s/1ss4wozfag7o9.mp3",
+ "plural": "תִּקְשׁוּרִים",
+ "plural_audio": "https://audio.pealim.com/v0/ya/yalfeeifb4oz.mp3",
+ "construct_singular": "תִּקְשׁוּר־",
+ "construct_plural": "תִּקְשׁוּרֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תקתוק": {
+ "slug": "5259-tiktuk",
+ "singular": "תִּקְתּוּק",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1xstms1e1njza.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תִּקְתּוּק־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "התראה": {
+ "slug": "8353-hatraa",
+ "singular": "הַתְרָאָה",
+ "singular_audio": "https://audio.pealim.com/v0/u5/u5q6t71e9j5.mp3",
+ "plural": "הַתְרָאוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1v/1vhm5kin6nj1z.mp3",
+ "construct_singular": "הַתְרָאַת־",
+ "construct_plural": "הַתְרָאוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תרגול": {
+ "slug": "6043-tirgul",
+ "singular": "תִּרְגּוּל",
+ "singular_audio": "https://audio.pealim.com/v0/1x/1x1zzi9j7796v.mp3",
+ "plural": "תִּרְגּוּלִים",
+ "plural_audio": "https://audio.pealim.com/v0/cx/cxmw4zysjnlp.mp3",
+ "construct_singular": "תִּרְגּוּל־",
+ "construct_plural": "תִּרְגּוּלֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תרגום": {
+ "slug": "4698-targum",
+ "singular": "תַּרְגּוּם",
+ "singular_audio": "https://audio.pealim.com/v0/1a/1a6ki0ya6msv4.mp3",
+ "plural": "תַּרְגּוּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/18/18t0k1cpjmm8l.mp3",
+ "construct_singular": "תַּרְגּוּם־",
+ "construct_plural": "תַּרְגּוּמֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "מתרגמן": {
+ "slug": "4699-meturgeman",
+ "singular": "מְתֻרְגְּמָן",
+ "singular_audio": "https://audio.pealim.com/v0/14/14kyqf6clqfms.mp3",
+ "plural": "מְתֻרְגְּמָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1e/1ex2ry0k6nfrr.mp3",
+ "construct_singular": "מְתֻרְגְּמַן־",
+ "construct_plural": "מְתֻרְגְּמָנֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "מתרגם": {
+ "slug": "4701-metargem",
+ "singular": "מְתַרְגֵּם",
+ "singular_audio": "https://audio.pealim.com/v0/6x/6xavqadk43se.mp3",
+ "plural": "מְתַרְגְּמִים",
+ "plural_audio": "https://audio.pealim.com/v0/1s/1sgwptwmzlmcc.mp3",
+ "construct_singular": "מְתַרְגֵּם־",
+ "construct_plural": "מְתַרְגְּמֵי־",
+ "gender": "masculine",
+ "mishkal": "mekattel"
+ },
+ "תרגמן": {
+ "slug": "4700-turgeman",
+ "singular": "תֻּרְגְּמָן",
+ "singular_audio": "https://audio.pealim.com/v0/1h/1h0th425fhnx4.mp3",
+ "plural": "תֻּרְגְּמָנִים",
+ "plural_audio": "https://audio.pealim.com/v0/1a/1axnr033dctoz.mp3",
+ "construct_singular": "תֻּרְגְּמַן־",
+ "construct_plural": "תֻּרְגְּמָנֵי־",
+ "gender": "",
+ "mishkal": ""
+ },
+ "תרנגול": {
+ "slug": "6916-tarnegol",
+ "singular": "תַּרְנְגוֹל",
+ "singular_audio": "https://audio.pealim.com/v0/1c/1c5ghkwgrw1hy.mp3",
+ "plural": "תַּרְנְגוֹלִים",
+ "plural_audio": "https://audio.pealim.com/v0/1u/1ucsv49jgg6kc.mp3",
+ "construct_singular": "תַּרְנְגוֹל־",
+ "construct_plural": "תַּרְנְגוֹלֵי־",
+ "gender": "masculine",
+ "mishkal": ""
+ },
+ "תרנגלת": {
+ "slug": "6917-tarnegolet",
+ "singular": "תַּרְנְגֹלֶת",
+ "singular_audio": "https://audio.pealim.com/v0/1e/1e5j4wflelvho.mp3",
+ "plural": "תַּרְנְגוֹלוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/lj/lj5cee3fj7hd.mp3",
+ "construct_singular": "תַּרְנְגֹלֶת־",
+ "construct_plural": "תַּרְנְגוֹלוֹת־",
+ "gender": "feminine",
+ "mishkal": ""
+ },
+ "תריס": {
+ "slug": "3808-tris",
+ "singular": "תְּרִיס",
+ "singular_audio": "https://audio.pealim.com/v0/kk/kk4j0mhuttt3.mp3",
+ "plural": "תְּרִיסִים",
+ "plural_audio": "https://audio.pealim.com/v0/9e/9ezjg44anenf.mp3",
+ "construct_singular": "תְּרִיס־",
+ "construct_plural": "תְּרִיסֵי־",
+ "gender": "masculine",
+ "mishkal": "ktil"
+ },
+ "התרעה": {
+ "slug": "8947-hatraa",
+ "singular": "הַתְרָעָה",
+ "singular_audio": "https://audio.pealim.com/v0/2m/2mxjrrfaypkd.mp3",
+ "plural": "הַתְרָעוֹת",
+ "plural_audio": "https://audio.pealim.com/v0/1c/1caw2njvpin7b.mp3",
+ "construct_singular": "הַתְרָעַת־",
+ "construct_plural": "הַתְרָעוֹת־",
+ "gender": "feminine",
+ "mishkal": "haktala"
+ },
+ "תרוץ": {
+ "slug": "3912-terutz",
+ "singular": "תֵּרוּץ",
+ "singular_audio": "https://audio.pealim.com/v0/q9/q9anc6uww9sb.mp3",
+ "plural": "תֵּרוּצִים",
+ "plural_audio": "https://audio.pealim.com/v0/10/10bgvq7e0uugy.mp3",
+ "construct_singular": "תֵּרוּץ־",
+ "construct_plural": "תֵּרוּצֵי־",
+ "gender": "masculine",
+ "mishkal": "kittul"
+ },
+ "תשר": {
+ "slug": "5079-tesher",
+ "singular": "תֶּשֶׁר",
+ "singular_audio": "https://audio.pealim.com/v0/1q/1q91ifj036l3o.mp3",
+ "plural": "",
+ "plural_audio": "",
+ "construct_singular": "תֶּשֶׁר־",
+ "construct_plural": "",
+ "gender": "masculine",
+ "mishkal": "ketel"
}
}
\ No newline at end of file
diff --git a/validate_apkg.py b/validate_apkg.py
index 8642b32..60dcb67 100644
--- a/validate_apkg.py
+++ b/validate_apkg.py
@@ -238,7 +238,11 @@ def validate_apkg(apkg_path: Path) -> int:
notes_with_audio = sum(1 for (flds,) in notes_flds if "[sound:" in flds)
pct = notes_with_audio / note_count * 100 if note_count else 0
- check("Notes with audio", notes_with_audio > 0, f"{notes_with_audio:,}/{note_count:,} ({pct:.0f}%)")
+ if notes_with_audio > 0:
+ check("Notes with audio", True, f"{notes_with_audio:,}/{note_count:,} ({pct:.0f}%)")
+ else:
+ # Non-audio variants intentionally have no audio — not a failure
+ warn("No audio in this deck variant", f"0/{note_count:,}")
# --- Empty fields check ---
print("\n[Field content]")