diff --git a/SCHEMA.yaml b/SCHEMA.yaml index 132eb38..f3b7450 100644 --- a/SCHEMA.yaml +++ b/SCHEMA.yaml @@ -27,6 +27,7 @@ entry: pos_hebrew: "שֵׁם עֶצֶם" # Part of speech in Hebrew (with nikkud) meaning: "father" # English meaning (cleaned — no inline emoji, no Hebrew prepositions) meaning_raw: "father 👨" # Original meaning as scraped (may contain emoji and/or Hebrew preps) + prep: "על" # Hebrew preposition(s) governing this word, extracted from meaning_raw (e.g. "(על)" → "על"); null if none audio_url: "https://..." # Pealim audio URL audio_file: "6009-av.mp3" # Local filename (slug-based for confusables, consonant-based otherwise) tags: "" # Pealim tags if any diff --git a/apkg_builder.py b/apkg_builder.py index 4a2240a..f9d7b9b 100644 --- a/apkg_builder.py +++ b/apkg_builder.py @@ -35,7 +35,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.18" +RELEASE_TAG = "v0.19" # Regex for extracting emoji and Hebrew prepositions from meaning strings EMOJI_RE = re.compile(r"[\U0001F000-\U0001FFFF\u2600-\u27FF\u2300-\u23FF\uFE00-\uFE0F]+") @@ -906,9 +906,14 @@ def build_vocab_deck( emoji_str = emoji_lookup[kw] break - # Extract Hebrew prepositions from meaning_raw - preps = HBPAREN_RE.findall(meaning_raw) - prep_str = " ".join(f"({p})" for p in preps) + # Extract Hebrew prepositions: prefer upstream-parsed prep field, fall back to meaning_raw scan + # (fallback covers entries scraped before prep was moved upstream) + entry_prep = entry.get("prep") + if entry_prep: + prep_str = " ".join(f"({p})" for p in entry_prep.split()) + else: + preps = HBPAREN_RE.findall(meaning_raw) + prep_str = " ".join(f"({p})" for p in preps) # Audio — use audio_file from entry; for confusables it's already slug-based audio_tag = "" @@ -1682,12 +1687,20 @@ def build_plural_deck( sg_audio = "" pl_audio = "" if include_audio: - sg_tag = _audio_tag(singular_ktiv) + slug = entry.get("slug", "") + sg_tag = _audio_tag(singular_ktiv, slug=slug) if sg_tag: sg_audio = sg_tag mp3_path = AUDIO_DIR / sg_tag.removeprefix("[sound:").removesuffix("]") if mp3_path not in media_files: media_files.append(mp3_path) + # Plural audio: {slug}_plural.mp3 + if slug: + pl_mp3 = AUDIO_DIR / f"{slug}_plural.mp3" + if pl_mp3.exists(): + pl_audio = f"[sound:{pl_mp3.name}]" + if pl_mp3 not in media_files: + media_files.append(pl_mp3) mishkal_eng = noun_inflection.get("mishkal") or "" tags = [RELEASE_TAG] diff --git a/data/words.json b/data/words.json index ebdf2ae..7e6e030 100644 --- a/data/words.json +++ b/data/words.json @@ -69,7 +69,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַבָּא": { "word": { @@ -141,7 +142,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲבִיבִי": { "word": { @@ -201,7 +203,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵב": { "word": { @@ -274,12 +277,15 @@ "gender_hebrew": { "nikkud": "זָכָר", "ktiv_male": "זכר" - } + }, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָבִיב": { "word": { @@ -362,12 +368,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l.?DOcoj4O" + "plurals_guid": "l.?DOcoj4O", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲבֵדָה|Noun|loss; (in plural) casualties, losses": { "word": { @@ -437,12 +446,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L-l91@zwDR" + "plurals_guid": "L-l91@zwDR", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱבֹד": { "word": { @@ -899,7 +911,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָבֵד": { "word": { @@ -1330,7 +1343,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַבֵּד": { "word": { @@ -1761,7 +1775,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִבּוּד": { "word": { @@ -1852,12 +1867,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b&MA[d$,Jr" + "plurals_guid": "b&MA[d$,Jr", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְאַבְּדוּת": { "word": { @@ -1927,12 +1945,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "l-|BckFA]b" + "plurals_guid": "l-|BckFA]b", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲבִיד": { "word": { @@ -2666,7 +2687,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲבֵדָה|Noun|loss": { "word": { @@ -2736,12 +2758,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i{Gff{ZA1{" + "plurals_guid": "i{Gff{ZA1{", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָבוּד": { "word": { @@ -2805,11 +2830,12 @@ "nikkud": "אֲבוּדוֹת", "ktiv_male": "אבודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַבֵּד": { "word": { @@ -3569,7 +3595,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲבַדּוֹן": { "word": { @@ -3630,7 +3657,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָבוֹקָדוֹ": { "word": { @@ -3690,7 +3718,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַבְזָם": { "word": { @@ -3750,7 +3779,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַבְזֵר": { "word": { @@ -4474,7 +4504,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִבְחוּן": { "word": { @@ -4530,12 +4561,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cWJ#EQ?)~b" + "plurals_guid": "cWJ#EQ?)~b", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַבְחֵן": { "word": { @@ -5261,7 +5295,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַבְטֵחַ": { "word": { @@ -6003,7 +6038,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִבְטוּחַ": { "word": { @@ -6065,12 +6101,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sDb82%GSZ" + "plurals_guid": "sDb82%GSZ", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲבַטִּיחַ": { "word": { @@ -6130,7 +6169,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַבְטִיפּוּס": { "word": { @@ -6185,7 +6225,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱבוֹת": { "word": { @@ -6553,7 +6594,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲבִיזָר": { "word": { @@ -6623,7 +6665,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹבֶךְ": { "word": { @@ -6684,12 +6727,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uQLJ6yoWQ&" + "plurals_guid": "uQLJ6yoWQ&", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָבִיךְ": { "word": { @@ -6744,11 +6790,12 @@ "nikkud": "אֲבִיכוֹת", "ktiv_male": "אביכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵבֶל": { "word": { @@ -6807,12 +6854,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d#aWnCqmeC" + "plurals_guid": "d#aWnCqmeC", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱבֹל": { "word": { @@ -6827,7 +6877,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to grieve, to mourn (על) (lit.)", + "meaning": "to grieve, to mourn (lit.)", "meaning_raw": "to grieve, to mourn (על) (lit.)", "audio_url": "https://audio.pealim.com/v0/vw/vwazyenbd71r.mp3", "audio_file": "לאבול.mp3", @@ -7199,7 +7249,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "אֲבָל": { "word": { @@ -7254,7 +7305,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְאַבֵּל": { "word": { @@ -7269,7 +7321,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to mourn, to grieve (על)", + "meaning": "to mourn, to grieve", "meaning_raw": "to mourn, to grieve (על)", "audio_url": "https://audio.pealim.com/v0/19/19b8hminzzwty.mp3", "audio_file": "להתאבל.mp3", @@ -7677,7 +7729,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְהִתְאַבֵּן": { "word": { @@ -8101,7 +8154,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶבֶן": { "word": { @@ -8190,12 +8244,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rtq]xY1erk" + "plurals_guid": "rtq]xY1erk", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאֻבָּן": { "word": { @@ -8258,12 +8315,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I$>O{I>y]8" + "plurals_guid": "I$>O{I>y]8", + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַבֵּן": { "word": { @@ -8990,7 +9050,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲבִיס": { "word": { @@ -9412,7 +9473,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַאֲבָסָה": { "word": { @@ -9473,12 +9535,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ec@|ndVHVK" + "plurals_guid": "ec@|ndVHVK", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָבֵק": { "word": { @@ -9928,7 +9993,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִבּוּק": { "word": { @@ -9996,12 +10062,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D4yRxY;U@i" + "plurals_guid": "D4yRxY;U@i", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲבָק": { "word": { @@ -10095,12 +10164,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fk4eMimdM6" + "plurals_guid": "fk4eMimdM6", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָבָק": { "word": { @@ -10194,12 +10266,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LbgAr2}S8T" + "plurals_guid": "LbgAr2}S8T", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַבֵּק|Verb|to wrestle, to struggle": { "word": { @@ -10631,7 +10706,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַבֵּק|Verb|to become dusty": { "word": { @@ -11063,7 +11139,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאֻבָּק": { "word": { @@ -11125,11 +11202,12 @@ "nikkud": "מְאֻבָּקוֹת", "ktiv_male": "מאובקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַבֵּק": { "word": { @@ -11882,7 +11960,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲבִיק": { "word": { @@ -12614,7 +12693,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַבִּיר": { "word": { @@ -12675,12 +12755,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Gr/sjg{3O|" + "plurals_guid": "Gr/sjg{3O|", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶבְרָה": { "word": { @@ -12741,12 +12824,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L^n_xQ5#nL" + "plurals_guid": "L^n_xQ5#nL", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַגַּב": { "word": { @@ -12805,7 +12891,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אִגּוּד": { "word": { @@ -12877,12 +12964,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N+Ro@^sBw^" + "plurals_guid": "N+Ro@^sBw^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְאַגְּדוּת": { "word": { @@ -12954,12 +13044,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gqp>vJn5Nr" + "plurals_guid": "Gqp>vJn5Nr", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱגֹד": { "word": { @@ -13392,7 +13485,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻגְדָּה": { "word": { @@ -13463,12 +13557,15 @@ "gender_hebrew": { "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" - } + }, + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲגֻדָּה": { "word": { @@ -13539,12 +13636,15 @@ "gender_hebrew": { "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" - } + }, + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַגֵּד": { "word": { @@ -13977,7 +14077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶגֶד": { "word": { @@ -14049,12 +14150,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t_x]eybHC|" + "plurals_guid": "t_x]eybHC|", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲגִידָה": { "word": { @@ -14126,12 +14230,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bq/^&x.Z!J" + "plurals_guid": "bq/^&x.Z!J", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹגֵד": { "word": { @@ -14203,12 +14310,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m*[-$#D/,(" + "plurals_guid": "m*[-$#D/,(", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָאֳגָד": { "word": { @@ -14274,11 +14384,12 @@ "nikkud": "מָאֳגָדוֹת", "ktiv_male": "מואגדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַגֵּד": { "word": { @@ -15014,7 +15125,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָגֵד": { "word": { @@ -15447,7 +15559,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּאֲגִיד": { "word": { @@ -15519,12 +15632,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F5PJ*=`)eS" + "plurals_guid": "F5PJ*=`)eS", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱגוֹז": { "word": { @@ -15584,7 +15700,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲגַם": { "word": { @@ -15659,12 +15776,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rEaRsz+7U8" + "plurals_guid": "rEaRsz+7U8", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַגָּן": { "word": { @@ -15719,7 +15839,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַגָּס": { "word": { @@ -15779,7 +15900,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִגּוּף": { "word": { @@ -15842,12 +15964,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A$&rd%*(IL" + "plurals_guid": "A$&rd%*(IL", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱגֹף": { "word": { @@ -16271,7 +16396,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲגַף": { "word": { @@ -16334,12 +16460,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O|/6w#`Ndu" + "plurals_guid": "O|/6w#`Ndu", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַגֵּף": { "word": { @@ -17066,7 +17195,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִגֶּרֶת": { "word": { @@ -17131,12 +17261,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Duwv}i{>D>" + "plurals_guid": "Duwv}i{>D>", + "mishkal": "kittelet", + "mishkal_hebrew": "קִטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶגְרוֹן": { "word": { @@ -17201,12 +17334,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zj4`J4.+S;" + "plurals_guid": "zj4`J4.+S;", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲגָר": { "word": { @@ -17271,12 +17407,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F[<:nZOmN-" + "plurals_guid": "F[<:nZOmN-", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱגֹר": { "word": { @@ -17718,7 +17857,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָגֵר": { "word": { @@ -18144,7 +18284,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַגְרָה": { "word": { @@ -18209,12 +18350,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vQ[;F#MJ=N" + "plurals_guid": "vQ[;F#MJ=N", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲגַרְטָל": { "word": { @@ -18274,7 +18418,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַגְרֵף": { "word": { @@ -18697,7 +18842,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִגְרוּף": { "word": { @@ -18756,12 +18902,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gnonX]Pt93" + "plurals_guid": "gnonX]Pt93", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָדִיב": { "word": { @@ -18814,11 +18963,12 @@ "nikkud": "אֲדִיבוֹת", "ktiv_male": "אדיבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַדְוָה": { "word": { @@ -18904,7 +19054,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָדוֹן": { "word": { @@ -18990,7 +19141,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַדּוֹת": { "word": { @@ -19415,7 +19567,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵד": { "word": { @@ -19505,7 +19658,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִדּוּי": { "word": { @@ -19569,12 +19723,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j]:bnC,UTH" + "plurals_guid": "j]:bnC,UTH", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְאַדּוּת": { "word": { @@ -19638,12 +19795,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G#N/BQL~PJ" + "plurals_guid": "G#N/BQL~PJ", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַדּוֹת": { "word": { @@ -20371,7 +20531,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲדִים": { "word": { @@ -20430,12 +20591,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b#FboPU)P/" + "plurals_guid": "b#FboPU)P/", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹדֶם|Noun|ruby (gem)": { "word": { @@ -20506,12 +20670,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kP=}.2jSCK" + "plurals_guid": "kP=}.2jSCK", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲדַמְדַּם": { "word": { @@ -20573,11 +20740,12 @@ "nikkud": "אֲדַמְדַּמּוֹת", "ktiv_male": "אדמדמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַדֶּמֶת": { "word": { @@ -20660,12 +20828,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N}k;mdtx|>" + "plurals_guid": "N}k;mdtx|>", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָדָם": { "word": { @@ -20749,12 +20920,15 @@ "gender_hebrew": { "nikkud": "זָכָר", "ktiv_male": "זכר" - } + }, + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָדֹם": { "word": { @@ -20832,11 +21006,12 @@ "nikkud": "אֲדֻמּוֹת", "ktiv_male": "אדומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲדָמָה": { "word": { @@ -20930,12 +21105,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mNqZE8eumc" + "plurals_guid": "mNqZE8eumc", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲדִים": { "word": { @@ -21390,7 +21568,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹדֶם|Noun|red, red colour; 💄 lipstick (coll.)": { "word": { @@ -21470,12 +21649,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OLV*B*C@EI" + "plurals_guid": "OLV*B*C@EI", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲדִיקוּת": { "word": { @@ -21541,7 +21723,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָדוּק": { "word": { @@ -21596,11 +21779,12 @@ "nikkud": "אֲדוּקוֹת", "ktiv_male": "אדוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶאְדָּר": { "word": { @@ -21655,11 +21839,12 @@ "nikkud": "נֶאְדָּרוֹת", "ktiv_male": "נאדרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַדִּיר": { "word": { @@ -21735,11 +21920,12 @@ "nikkud": "אַדִּירוֹת", "ktiv_male": "אדירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַדְרִיכָל": { "word": { @@ -21794,7 +21980,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָדִישׁ": { "word": { @@ -21868,11 +22055,12 @@ "nikkud": "אֲדִישׁוֹת", "ktiv_male": "אדישות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱהֹב": { "word": { @@ -22325,7 +22513,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַהֵב": { "word": { @@ -22340,7 +22529,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to fall in love (with) (ב-)", + "meaning": "to fall in love (with)", "meaning_raw": "to fall in love (with) (ב-)", "audio_url": "https://audio.pealim.com/v0/v5/v5373oadmosg.mp3", "audio_file": "להתאהב.mp3", @@ -22768,7 +22957,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "הִתְאַהֲבוּת": { "word": { @@ -22834,12 +23024,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i/wH%9ijkT" + "plurals_guid": "i/wH%9ijkT", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַהֲבָה": { "word": { @@ -22926,12 +23119,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "0&w$%<#4]" + "plurals_guid": "0&w$%<#4]", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָהוּב": { "word": { @@ -23007,11 +23203,12 @@ "nikkud": "אֲהוּבוֹת", "ktiv_male": "אהובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאֹהָב": { "word": { @@ -23026,7 +23223,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "in love with (ב־)", + "meaning": "in love with", "meaning_raw": "in love with (ב־)", "audio_url": "https://audio.pealim.com/v0/1u/1uzmma10hq0dl.mp3", "audio_file": "מאוהב.mp3", @@ -23071,11 +23268,12 @@ "nikkud": "מְאֹהָבוֹת", "ktiv_male": "מאוהבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "לְהֵאָהֵב": { "word": { @@ -23502,7 +23700,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַהְבַּל": { "word": { @@ -23551,7 +23750,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹהֵד": { "word": { @@ -23612,12 +23812,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p-!:D8Ct)L" + "plurals_guid": "p-!:D8Ct)L", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱהֹד": { "word": { @@ -23632,7 +23835,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to sympathise (את), to support a sports team", + "meaning": "to sympathise , to support a sports team", "meaning_raw": "to sympathise (את), to support a sports team", "audio_url": "https://audio.pealim.com/v0/wh/wh379mbxq46z.mp3", "audio_file": "לאהוד.mp3", @@ -24039,7 +24242,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "לֶאֱהֹהַּ": { "word": { @@ -24407,7 +24611,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹהֶל": { "word": { @@ -24492,12 +24697,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D?twMtH4I." + "plurals_guid": "D?twMtH4I.", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹ": { "word": { @@ -24556,7 +24764,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אָבְדָן": { "word": { @@ -24611,7 +24820,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָבְדָנִי": { "word": { @@ -24664,7 +24874,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹבְּסֶסִיבִי": { "word": { @@ -24717,7 +24928,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹדוֹת": { "word": { @@ -24792,7 +25004,8 @@ "ktiv_male": "אודותיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲוָז": { "word": { @@ -24868,7 +25081,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲוִיר": { "word": { @@ -24954,7 +25168,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲוִירוֹן": { "word": { @@ -25035,7 +25250,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָאִיט": { "word": { @@ -25758,7 +25974,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹטוֹ": { "word": { @@ -25825,7 +26042,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹטוֹבּוּס": { "word": { @@ -25885,7 +26103,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּאֲוָה": { "word": { @@ -25947,12 +26166,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k664-Rn#-m" + "plurals_guid": "k664-Rn#-m", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַוּוֹת": { "word": { @@ -26375,7 +26597,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹי": { "word": { @@ -26434,7 +26657,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְאַוּוֹת": { "word": { @@ -26449,7 +26673,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to crave, to yearn for, to lust (lit.) (ל-)", + "meaning": "to crave, to yearn for, to lust (lit.)", "meaning_raw": "to crave, to yearn for, to lust (lit.) (ל-)", "audio_url": "https://audio.pealim.com/v0/k0/k0qwbj2s99sn.mp3", "audio_file": "להתאוות.mp3", @@ -26857,7 +27081,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "אֻכְלוּסִיָּה": { "word": { @@ -26917,7 +27142,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻכְמָנִית": { "word": { @@ -26977,7 +27203,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱוִיל": { "word": { @@ -27038,7 +27265,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִוֶּלֶת": { "word": { @@ -27099,12 +27327,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J}SUlvq.{m" + "plurals_guid": "J}SUlvq.{m", + "mishkal": "kittelet", + "mishkal_hebrew": "קִטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוּלַי": { "word": { @@ -27163,7 +27394,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אוּלָם|Adverb": { "word": { @@ -27218,7 +27450,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אוּלָם|Noun": { "word": { @@ -27295,7 +27528,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻלְפָּן": { "word": { @@ -27355,7 +27589,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹלָר": { "word": { @@ -27426,7 +27661,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמָּנוּת לְחִימָה": { "word": { @@ -27475,7 +27711,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹן": { "word": { @@ -27561,7 +27798,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוּנִיבֶרְסִיטָה": { "word": { @@ -27621,7 +27859,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֳנִיָּה": { "word": { @@ -27702,7 +27941,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹפַנּוֹעַ": { "word": { @@ -27778,7 +28018,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָאוּץ": { "word": { @@ -28203,7 +28444,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָאִיץ": { "word": { @@ -28957,7 +29199,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּאוּצָה": { "word": { @@ -29021,12 +29264,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "F~i+A1{@:k" + "plurals_guid": "F~i+A1{@:k", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶאָצָה": { "word": { @@ -29090,7 +29336,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָצָן": { "word": { @@ -29159,7 +29406,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹצַר מִלִּים": { "word": { @@ -29208,7 +29456,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹקְיָנוֹס": { "word": { @@ -29284,7 +29533,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָאִיר": { "word": { @@ -30040,7 +30290,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹר": { "word": { @@ -30133,7 +30384,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּאָר": { "word": { @@ -30209,11 +30461,12 @@ "nikkud": "מוּאָרוֹת", "ktiv_male": "מוארות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּאוּרָה": { "word": { @@ -30279,12 +30532,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u]B-2R]bbT" + "plurals_guid": "u]B-2R]bbT", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאוּרָה": { "word": { @@ -30350,12 +30606,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qsY?Hpor=B" + "plurals_guid": "qsY?Hpor=B", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָאוֹר": { "word": { @@ -30421,12 +30680,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D[+v1Poz,c" + "plurals_guid": "D[+v1Poz,c", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוּר": { "word": { @@ -30519,7 +30781,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹרְיָנ": { "word": { @@ -30552,7 +30815,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אוֹרְיָנוּת": { "word": { @@ -30607,7 +30871,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹרְיָנִי": { "word": { @@ -30660,7 +30925,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַוְרֵר": { "word": { @@ -31388,7 +31654,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַוְרֵר": { "word": { @@ -31813,7 +32080,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִוְרוּר": { "word": { @@ -31877,12 +32145,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Kfr/xQ,=x^" + "plurals_guid": "Kfr/xQ,=x^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאַוְרֵר": { "word": { @@ -31946,12 +32217,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iGq%x/DD>," + "plurals_guid": "iGq%x/DD>,", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַוְשֵׁשׁ": { "word": { @@ -32374,7 +32648,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִוְשׁוּשׁ": { "word": { @@ -32436,12 +32711,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ARR8FnjPU9ay7h_8" + "plurals_guid": "g>U9ay7h_8", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲזִיקוֹן": { "word": { @@ -38003,7 +38310,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַזֵּר": { "word": { @@ -38427,7 +38735,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵזוֹר": { "word": { @@ -38516,7 +38825,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱזֹר": { "word": { @@ -38940,7 +39250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱזוֹרִי": { "word": { @@ -39001,7 +39312,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַזְרֵחַ": { "word": { @@ -39422,7 +39734,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶזְרָח|Noun|citizen; civilian": { "word": { @@ -39455,13 +39768,7 @@ ], "confusables_guid": "E.Ny1Mm0B-", "examples": { - "vetted": [ - { - "text": "אֶזְרָחִים יִשְׂרְאֵלִים לֹא יָכְלוּ לִנְסוֹעַ לְבַקֵּר בָּהּ, כְּמוֹ הַיּוֹם", - "source": "מנהרת הזמן 82", - "match_method": "inflected" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -39489,7 +39796,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶזְרָחִי": { "word": { @@ -39542,7 +39850,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָח|Noun|brother": { "word": { @@ -39619,7 +39928,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָח|Noun|fireplace, hearth": { "word": { @@ -39652,18 +39962,7 @@ ], "confusables_guid": "kt>!Sm6U04", "examples": { - "vetted": [ - { - "text": "כַּמָּה אַחִים יֵשׁ לוֹ", - "source": "הנסיך הקטן", - "match_method": "inflected" - }, - { - "text": "\"אַתָּה הָאָח שֶׁל שָׁרוֹן", - "source": "מנהרת הזמן 82", - "match_method": "direct_prefix" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -39696,7 +39995,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַחֵד": { "word": { @@ -40142,7 +40442,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְאַחֲדוּת": { "word": { @@ -40211,12 +40512,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hC:~oFy|82" + "plurals_guid": "hC:~oFy|82", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַחְדוּת": { "word": { @@ -40279,12 +40583,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rMy.;Ke;CB" + "plurals_guid": "rMy.;Ke;CB", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִחוּד": { "word": { @@ -40379,12 +40686,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hJTh=[{yWG" + "plurals_guid": "hJTh=[{yWG", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָחִיד": { "word": { @@ -40447,11 +40757,12 @@ "nikkud": "אֲחִידוֹת", "ktiv_male": "אחידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲחִיד": { "word": { @@ -41184,7 +41495,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאֻחָד": { "word": { @@ -41247,11 +41559,12 @@ "nikkud": "מְאֻחָדוֹת", "ktiv_male": "מאוחדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַאֲחָדָה": { "word": { @@ -41320,12 +41633,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kVZiqF`oi?" + "plurals_guid": "kVZiqF`oi?", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַחֵד": { "word": { @@ -42058,7 +42374,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶחָד": { "word": { @@ -42131,7 +42448,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אַחֲוָה": { "word": { @@ -42186,12 +42504,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JrMb&dWb**" + "plurals_guid": "JrMb&dWb**", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָחוּ": { "word": { @@ -42278,12 +42599,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hcH~<7o.uV" + "plurals_guid": "hcH~<7o.uV", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָחוֹת": { "word": { @@ -42359,7 +42683,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱחֹז": { "word": { @@ -42374,7 +42699,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to grip, to grasp, to hold (ב-)", + "meaning": "to grip, to grasp, to hold", "meaning_raw": "to grip, to grasp, to hold (ב-)", "audio_url": "https://audio.pealim.com/v0/x1/x1yj1kd48rd8.mp3", "audio_file": "לאחוז.mp3", @@ -42810,7 +43135,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהֵאָחֵז": { "word": { @@ -42825,7 +43151,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to hold on (ב-)", + "meaning": "to hold on", "meaning_raw": "to hold on (ב-)", "audio_url": "https://audio.pealim.com/v0/gf/gffi0r0qrgvb.mp3", "audio_file": "להיאחז.mp3", @@ -43261,7 +43587,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "אֲחֻזָּה": { "word": { @@ -43325,12 +43652,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f=<$0r+{_I" + "plurals_guid": "f=<$0r+{_I", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲחִיזָה": { "word": { @@ -43394,12 +43724,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pyIK" + "plurals_guid": "d[aJfR8=>K", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַחְזֵר": { "word": { @@ -44218,7 +44554,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַחוֹת": { "word": { @@ -44640,7 +44977,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַחוֹת": { "word": { @@ -45365,7 +45703,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַחְיָן": { "word": { @@ -45425,7 +45764,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַחְיָנִית": { "word": { @@ -45501,7 +45841,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִחוּל": { "word": { @@ -45562,12 +45903,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N~1JwKfCkS" + "plurals_guid": "N~1JwKfCkS", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַחֵל": { "word": { @@ -46313,7 +46657,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִחְסוּן": { "word": { @@ -46375,12 +46720,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t/o)P_#/kW" + "plurals_guid": "t/o)P_#/kW", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַחְסֵן": { "word": { @@ -47122,7 +47470,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַחְרָיוּת": { "word": { @@ -47228,7 +47577,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִחוּר": { "word": { @@ -47319,12 +47669,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jUv_/l9?v0" + "plurals_guid": "jUv_/l9?v0", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָחוֹר": { "word": { @@ -47415,12 +47768,15 @@ "gender_hebrew": { "nikkud": "זָכָר", "ktiv_male": "זכר" - } + }, + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַחַר": { "word": { @@ -47537,7 +47893,8 @@ "ktiv_male": "אחריהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָחוֹרָה": { "word": { @@ -47616,7 +47973,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֲחוֹרַיִם": { "word": { @@ -47711,12 +48069,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k*Q/Mdi1" + "plurals_guid": "gET3g$?})>", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַכְזֵר": { "word": { @@ -59865,7 +60318,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to be cruel, to ill treat (אל)", + "meaning": "to be cruel, to ill treat", "meaning_raw": "to be cruel, to ill treat (אל)", "audio_url": "https://audio.pealim.com/v0/13/13thm4gffn40z.mp3", "audio_file": "להתאכזר.mp3", @@ -60273,7 +60726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אל" }, "אַכְזָרִיּוּת": { "word": { @@ -60341,7 +60795,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַכְזָרִי": { "word": { @@ -60402,7 +60857,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱכֹל": { "word": { @@ -60891,7 +61347,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָכֵל": { "word": { @@ -61339,7 +61796,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲכִיל": { "word": { @@ -62074,7 +62532,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹכֶל": { "word": { @@ -62166,12 +62625,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d#w=DX-Z<[" + "plurals_guid": "d#w=DX-Z<[", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַכְלָן": { "word": { @@ -62242,12 +62704,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Re=JY`d%6%" + "plurals_guid": "Re=JY`d%6%", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַאֲכָלָה": { "word": { @@ -62318,12 +62783,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qo28w4~hCz" + "plurals_guid": "qo28w4~hCz", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲכָל": { "word": { @@ -62410,12 +62878,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qBsp" + "plurals_guid": "zm}aUT>Bsp", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָכֵף": { "word": { @@ -66303,7 +66793,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִכְפַּת": { "word": { @@ -66314,7 +66805,7 @@ "root": [], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "to concern, to worry, to have to do about (ל-)", + "meaning": "to concern, to worry, to have to do about", "meaning_raw": "to concern, to worry, to have to do about (ל-)", "audio_url": "https://audio.pealim.com/v0/74/74f9lxj9x3do.mp3", "audio_file": "אכפת.mp3", @@ -66362,7 +66853,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "ל-" }, "אִכָּר": { "word": { @@ -66447,7 +66939,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶל": { "word": { @@ -66545,7 +67038,8 @@ "ktiv_male": "אליהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַל": { "word": { @@ -66601,7 +67095,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֵל": { "word": { @@ -66665,7 +67160,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶלָּא": { "word": { @@ -66724,7 +67220,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֶלֶגַנְטִי": { "word": { @@ -66777,7 +67274,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵלֶה": { "word": { @@ -66823,7 +67321,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אַלָּה": { "word": { @@ -66857,30 +67356,7 @@ ], "confusables_guid": "q+I~xCz*jK", "examples": { - "vetted": [ - { - "text": "בְּעֵינֵי אֵלֶּה שֶׁיּוֹצְאִים לְמַסָּעוֹת, הַכּוֹכָבִים הֵם סִימָנֵי דֶּרֶךְ", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "\"אֵלֶּה בָּטוּחַ גּוֹיִים,\" הַנַּעַר אוֹמֵר לְשָׁלוֹם, \"אֵיפֹה הַפֵּאוֹת שֶׁלָּהֶם", - "source": "מנהרת הזמן 82", - "vetted": true - }, - { - "text": "אֵלֶּה לֹא כּוֹבָעִים שֶׁל שׁוֹטְרֵי מִשְׁטֶרֶת יִשְׂרָאֵל", - "source": "מנהרת הזמן 82", - "vetted": true - } - ], - "cloze": { - "text": "בְּעֵינֵי אֵלֶּה שֶׁיּוֹצְאִים לְמַסָּעוֹת, הַכּוֹכָבִים הֵם סִימָנֵי דֶּרֶךְ", - "cloze_word_start": 10, - "cloze_word_end": 16, - "cloze_hint": null, - "cloze_guid": "lzP>$G^1ju" - }, + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -66908,7 +67384,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵלָה": { "word": { @@ -66998,7 +67475,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵלוּ": { "word": { @@ -67057,7 +67535,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֱלֹהַּ": { "word": { @@ -67117,7 +67596,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱלֹהִים": { "word": { @@ -67197,7 +67677,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִלּוּלֵי": { "word": { @@ -67230,7 +67711,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אַלּוֹן": { "word": { @@ -67285,7 +67767,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲלוּנְקָה": { "word": { @@ -67345,7 +67828,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְחוּט": { "word": { @@ -67405,7 +67889,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְחוּטִי": { "word": { @@ -67458,7 +67943,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַלְחֵשׁ": { "word": { @@ -68182,7 +68668,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱלִיל": { "word": { @@ -68242,7 +68729,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְכּוֹהוֹל": { "word": { @@ -68296,7 +68784,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲלַכְסוֹן": { "word": { @@ -68351,7 +68840,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָלֵם": { "word": { @@ -68776,7 +69266,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלִּימוּת": { "word": { @@ -68845,7 +69336,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלִּים": { "word": { @@ -68903,11 +69395,12 @@ "nikkud": "אַלִּימוֹת", "ktiv_male": "אלימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִלֵּם": { "word": { @@ -68965,11 +69458,12 @@ "nikkud": "אִלְּמוֹת", "ktiv_male": "אילמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵלֶם": { "word": { @@ -69033,12 +69527,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LxmNe:!M2[" + "plurals_guid": "LxmNe:!M2[", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְמֹג": { "word": { @@ -69098,7 +69595,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְמוֹנִי": { "word": { @@ -69151,7 +69649,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַלְמֵן": { "word": { @@ -69572,7 +70071,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְמָן": { "word": { @@ -69632,7 +70132,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְמָנָה": { "word": { @@ -69687,7 +70188,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלִּיפוּת": { "word": { @@ -69757,7 +70259,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶלֶף": { "word": { @@ -69848,12 +70351,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CH1pMT?W:F" + "plurals_guid": "CH1pMT?W:F", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלּוּף": { "word": { @@ -69934,12 +70440,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s^0dJ@@saz" + "plurals_guid": "s^0dJ@@saz", + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַלְפַּיִם": { "word": { @@ -69998,7 +70507,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מְאַלֵּף": { "word": { @@ -70063,12 +70573,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z4uJJxJuEY" + "plurals_guid": "z4uJJxJuEY", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַלֵּף": { "word": { @@ -70823,7 +71336,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָלֵץ": { "word": { @@ -71272,7 +71786,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִלּוּץ": { "word": { @@ -71334,12 +71849,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zV/$F0b=FO" + "plurals_guid": "zV/$F0b=FO", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַלֵּץ": { "word": { @@ -72091,7 +72609,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִלְתּוּר": { "word": { @@ -72153,12 +72672,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Z7bI:e[3U" + "plurals_guid": "Z7bI:e[3U", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַלְתֵּר": { "word": { @@ -72884,7 +73406,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִם": { "word": { @@ -72943,7 +73466,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אִמָּא": { "word": { @@ -73015,7 +73539,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַמְבַּטְיָה": { "word": { @@ -73091,7 +73616,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱמֹד": { "word": { @@ -73514,7 +74040,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָמֵד": { "word": { @@ -73937,7 +74464,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמִיד": { "word": { @@ -73993,11 +74521,12 @@ "nikkud": "אֲמִידוֹת", "ktiv_male": "אמידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמָה": { "word": { @@ -74060,7 +74589,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַמָּה": { "word": { @@ -74123,7 +74653,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶמוֹצְיוֹנָלִי": { "word": { @@ -74176,7 +74707,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַמְלֵל": { "word": { @@ -74916,7 +75448,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻמָּה": { "word": { @@ -74977,12 +75510,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹם": { "word": { @@ -75043,12 +75579,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲמִין": { "word": { @@ -75816,7 +76355,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַמֵּן": { "word": { @@ -76281,7 +76821,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאַמֵּן": { "word": { @@ -76359,12 +76900,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "te%/3yD$lt" + "plurals_guid": "te%/3yD$lt", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶאֱמָנוּת": { "word": { @@ -76463,7 +77007,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמְנָם": { "word": { @@ -76545,7 +77090,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אָמָּנוּת": { "word": { @@ -76640,7 +77186,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻמָּן": { "word": { @@ -76726,7 +77273,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִמּוּן": { "word": { @@ -76825,12 +77373,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CV6Y>0/Q[0" + "plurals_guid": "CV6Y>0/Q[0", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמִין": { "word": { @@ -76902,11 +77453,12 @@ "nikkud": "אֲמִינוֹת", "ktiv_male": "אמינות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמָּן": { "word": { @@ -76992,7 +77544,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱמוּנָה": { "word": { @@ -77070,7 +77623,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמֵן": { "word": { @@ -77126,7 +77680,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֵמוּן": { "word": { @@ -77225,7 +77780,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָמֵן": { "word": { @@ -77664,7 +78220,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַמֵּן": { "word": { @@ -78422,7 +78979,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻמָּנוּת": { "word": { @@ -78508,7 +79066,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲמָנָה": { "word": { @@ -78602,12 +79161,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QA-UcO~<%}" + "plurals_guid": "QA-UcO~<%}", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶאֱמָן": { "word": { @@ -78679,11 +79241,12 @@ "nikkud": "נֶאֱמָנוֹת", "ktiv_male": "נאמנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִמּוּנִית": { "word": { @@ -78766,7 +79329,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַמֵּץ": { "word": { @@ -79219,7 +79783,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱמֹץ": { "word": { @@ -79594,7 +80159,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַמִּיץ": { "word": { @@ -79680,11 +80246,12 @@ "nikkud": "אַמִּיצוֹת", "ktiv_male": "אמיצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲמָץ": { "word": { @@ -79771,12 +80338,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iVngHAi`d?" + "plurals_guid": "iVngHAi`d?", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹמֶץ": { "word": { @@ -79857,12 +80427,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w9}{h`Tnq{" + "plurals_guid": "w9}{h`Tnq{", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִמּוּץ": { "word": { @@ -79928,12 +80501,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i:z?ek[l*>" + "plurals_guid": "i:z?ek[l*>", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַמֵּץ": { "word": { @@ -80684,7 +81260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמוּר": { "word": { @@ -80772,11 +81349,12 @@ "nikkud": "אֲמוּרוֹת", "ktiv_male": "אמורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָמֵר": { "word": { @@ -81205,7 +81783,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲמִיר": { "word": { @@ -81634,7 +82213,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶמִירוּת": { "word": { @@ -81707,7 +82287,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִמְרָה": { "word": { @@ -81791,12 +82372,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yFeID8HkLm" + "plurals_guid": "yFeID8HkLm", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוֹמַר": { "word": { @@ -82251,7 +82835,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲמָר": { "word": { @@ -82319,12 +82904,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F.E$h*.Ar" + "plurals_guid": "F.E$h*.Ar", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָמִיר": { "word": { @@ -82392,12 +82980,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l7FW*E4wl:" + "plurals_guid": "l7FW*E4wl:", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַאֲמָרָה": { "word": { @@ -82465,12 +83056,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HtwI|I:5ZJ" + "plurals_guid": "HtwI|I:5ZJ", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶמֶשׁ": { "word": { @@ -82503,7 +83097,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְאַמֵּת": { "word": { @@ -82930,7 +83525,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִמּוּת": { "word": { @@ -82996,12 +83592,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DHf144.yeb" + "plurals_guid": "DHf144.yeb", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲמִתִּי": { "word": { @@ -83091,7 +83690,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַמֵּת": { "word": { @@ -83821,7 +84421,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱמֶת": { "word": { @@ -83918,7 +84519,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲמִתָּה": { "word": { @@ -83989,7 +84591,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲמִתּוּת": { "word": { @@ -84054,7 +84657,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָנָּא": { "word": { @@ -84103,7 +84707,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אַנְדַּרְטָה": { "word": { @@ -84179,7 +84784,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָנוּ": { "word": { @@ -84233,7 +84839,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֲנֹכִי": { "word": { @@ -84266,7 +84873,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אֲנֹכִיּוּת": { "word": { @@ -84320,7 +84928,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶנְזִים": { "word": { @@ -84380,7 +84989,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָנֵחַ": { "word": { @@ -84829,7 +85439,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַנֵּחַ": { "word": { @@ -85252,7 +85863,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲנָחָה": { "word": { @@ -85340,12 +85952,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kt%:y[a:U3" + "plurals_guid": "kt%:y[a:U3", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲנַחְנוּ": { "word": { @@ -85404,7 +86019,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אַנְטִישֶׁמִי": { "word": { @@ -85457,7 +86073,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַנְטִישֶׁמִיּוּת": { "word": { @@ -85511,7 +86128,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲנִי": { "word": { @@ -85570,7 +86188,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְאַנּוֹת": { "word": { @@ -85585,7 +86204,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to harass, to trouble (ל־)", + "meaning": "to harass, to trouble", "meaning_raw": "to harass, to trouble (ל־)", "audio_url": "https://audio.pealim.com/v0/1l/1l6rtsgkg6gjg.mp3", "audio_file": "להתאנות.mp3", @@ -85994,7 +86613,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְאַנּוֹת": { "word": { @@ -86721,7 +87341,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּאוּנָה": { "word": { @@ -86805,7 +87426,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּאֲנִיָּה": { "word": { @@ -86868,12 +87490,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b$Pb(go`pu" + "plurals_guid": "b$Pb(go`pu", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲנָךְ": { "word": { @@ -86935,12 +87560,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b>!-oGJ7CA" + "plurals_guid": "b>!-oGJ7CA", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲנָכִי": { "word": { @@ -87000,7 +87628,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאֻנָּךְ": { "word": { @@ -87056,11 +87685,12 @@ "nikkud": "מְאֻנָּכוֹת", "ktiv_male": "מאונכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאוֹנֵן": { "word": { @@ -87482,7 +88112,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאוֹנֵן": { "word": { @@ -87904,7 +88535,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָנָנָס": { "word": { @@ -87964,7 +88596,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱנֹס": { "word": { @@ -88402,7 +89035,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָנֵס": { "word": { @@ -88824,7 +89458,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָנֵק": { "word": { @@ -89244,7 +89879,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶנֶרְגְּיָה": { "word": { @@ -89304,7 +89940,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִישִׁיּוּת": { "word": { @@ -89380,7 +90017,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִישִׁי": { "word": { @@ -89465,7 +90103,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָשִׁיּוּת": { "word": { @@ -89541,7 +90180,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱנוֹשׁוּת": { "word": { @@ -89633,7 +90273,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִישִׁית": { "word": { @@ -89682,7 +90323,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "אִישׁ": { "word": { @@ -89784,7 +90426,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִשָּׁה": { "word": { @@ -89886,7 +90529,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱנוֹשׁ": { "word": { @@ -89953,7 +90597,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֱנוֹשִׁי": { "word": { @@ -90022,7 +90667,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲנִישׁ": { "word": { @@ -90757,7 +91403,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִישִׁים": { "word": { @@ -90827,7 +91474,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָשִׁי": { "word": { @@ -90896,7 +91544,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָסוֹן": { "word": { @@ -90982,7 +91631,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַסְטְרוֹנוֹמְיָה": { "word": { @@ -91052,7 +91702,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַסְלָה": { "word": { @@ -91111,12 +91762,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x&Y24R1{ZD" + "plurals_guid": "x&Y24R1{ZD", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַסְלֵם": { "word": { @@ -91553,7 +92207,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָסָם": { "word": { @@ -91612,12 +92267,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hdk{fUdj,." + "plurals_guid": "Hdk{fUdj,.", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָסֵף": { "word": { @@ -92060,7 +92718,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַסֵּף": { "word": { @@ -92487,7 +93146,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹסֶף": { "word": { @@ -92569,12 +93229,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b8BJf+,ebW" + "plurals_guid": "b8BJf+,ebW", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲסֵפָה": { "word": { @@ -92656,12 +93319,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g3J-j@^X*(" + "plurals_guid": "g3J-j@^X*(", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַסְפָן": { "word": { @@ -92727,12 +93393,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CI>F|^`nZ." + "plurals_guid": "CI>F|^`nZ.", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִסּוּף": { "word": { @@ -92798,12 +93467,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "je-]k;po}^" + "plurals_guid": "je-]k;po}^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱסֹף": { "word": { @@ -93287,7 +93959,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִסּוּר": { "word": { @@ -93352,12 +94025,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N(n2`|C?fa" + "plurals_guid": "N(n2`|C?fa", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָסוּר": { "word": { @@ -93442,11 +94118,12 @@ "nikkud": "אֲסוּרוֹת", "ktiv_male": "אסורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָסִיר": { "word": { @@ -93532,12 +94209,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x#_ZF!hsBz" + "plurals_guid": "x#_ZF!hsBz", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָסֵר": { "word": { @@ -93984,7 +94664,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱסֹר": { "word": { @@ -94436,7 +95117,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲסָר": { "word": { @@ -94517,12 +95199,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M`,oE2!bK1" + "plurals_guid": "M`,oE2!bK1", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵפוֹא": { "word": { @@ -94555,7 +95240,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לֶאֱפֹז": { "word": { @@ -94975,7 +95661,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָפוֹת": { "word": { @@ -95405,7 +96092,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱפוֹת": { "word": { @@ -95835,7 +96523,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָפְיָן": { "word": { @@ -95909,7 +96598,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹפִי": { "word": { @@ -95978,12 +96668,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "suh_)pYF@]" + "plurals_guid": "suh_)pYF@]", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲפִיָּה": { "word": { @@ -96052,12 +96745,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jJ~;m:xG;X" + "plurals_guid": "jJ~;m:xG;X", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָפְיָנִי": { "word": { @@ -96124,7 +96820,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִפְיוֹן": { "word": { @@ -96193,12 +96890,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GQEKq2^mut" + "plurals_guid": "GQEKq2^mut", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲפִיָּה": { "word": { @@ -96261,12 +96961,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C$xoo:xt1Z" + "plurals_guid": "C$xoo:xt1Z", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹפֶה": { "word": { @@ -96335,12 +97038,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qMsKy:Y[^." + "plurals_guid": "qMsKy:Y[^.", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶפִּי": { "word": { @@ -96396,7 +97102,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲפֶה": { "word": { @@ -96459,12 +97166,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d)vnND&Jc" + "plurals_guid": "ncMCj;aT>c", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲפַרְסֵק": { "word": { @@ -104580,7 +105342,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַפְשֵׁר": { "word": { @@ -105019,7 +105782,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶפְשָׁר": { "word": { @@ -105078,7 +105842,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְאַפְשֵׁר": { "word": { @@ -105830,7 +106595,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶפְשָׁרוּת": { "word": { @@ -105916,7 +106682,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶפְשָׁרִי": { "word": { @@ -105990,7 +106757,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִצְטַדְיוֹן": { "word": { @@ -106044,7 +106812,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲצֻלָּה": { "word": { @@ -106109,12 +106878,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IoTSI[@-A`" + "plurals_guid": "IoTSI[@-A`", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲצִילוּת": { "word": { @@ -106200,7 +106972,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵצֶל": { "word": { @@ -106301,7 +107074,8 @@ "ktiv_male": "אצלן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲצִיל": { "word": { @@ -106727,7 +107501,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָצִיל": { "word": { @@ -106808,12 +107583,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hr}hu}$F1E" + "plurals_guid": "Hr}hu}$F1E", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲצִילִי": { "word": { @@ -106876,7 +107654,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶאֱצָל": { "word": { @@ -106935,11 +107714,12 @@ "nikkud": "נֶאֱצָלוֹת", "ktiv_male": "נאצלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹצָר": { "word": { @@ -107026,12 +107806,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g*I!1Q5AB(" + "plurals_guid": "g*I!1Q5AB(", + "mishkal": "kotal", + "mishkal_hebrew": "קוֹטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱצֹר": { "word": { @@ -107453,7 +108236,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַקְלִים": { "word": { @@ -107508,7 +108292,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַקְלֵם": { "word": { @@ -107929,7 +108714,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרֻבָּה": { "word": { @@ -108016,12 +108802,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b>{cm8L{cm8Ln" + "plurals_guid": "Fm:O,EO0>n", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָרָד": { "word": { @@ -110762,12 +111561,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E~YDg:~S~X" + "plurals_guid": "E~YDg:~S~X", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֻרְוָה": { "word": { @@ -110842,12 +111644,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t6)[.{A+aO" + "plurals_guid": "t6)[.{A+aO", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרוּחַת בֹּקֶר": { "word": { @@ -110901,7 +111706,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרוּחַת עֶרֶב": { "word": { @@ -110955,7 +111761,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרוּחַת צָהֳרַיִם": { "word": { @@ -111009,7 +111816,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָרוֹן": { "word": { @@ -111095,7 +111903,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרוֹנִית": { "word": { @@ -111155,7 +111964,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱרֹז": { "word": { @@ -111602,7 +112412,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶרֶז": { "word": { @@ -111667,12 +112478,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dk>U#|#r*?" + "plurals_guid": "dk>U#|#r*?", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרִיזָה": { "word": { @@ -111753,12 +112567,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "dW@N|BdT_n" + "plurals_guid": "dW@N|BdT_n", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָרֵז": { "word": { @@ -112184,7 +113001,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹרֶז": { "word": { @@ -112243,12 +113061,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַאֲרָז": { "word": { @@ -112313,12 +113134,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KH@4&K`Z[G" + "plurals_guid": "KH@4&K`Z[G", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאָרֵחַ": { "word": { @@ -113062,7 +113886,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאָרֵחַ": { "word": { @@ -113513,7 +114338,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אוֹרֵחַ": { "word": { @@ -113599,12 +114425,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kPZ$.=A*!/" + "plurals_guid": "kPZ$.=A*!/", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרוּחָה": { "word": { @@ -113694,12 +114523,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zNis*pdeV=" + "plurals_guid": "zNis*pdeV=", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹרַח": { "word": { @@ -113775,12 +114607,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FAr[r%t=Xq" + "plurals_guid": "FAr[r%t=Xq", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱרוֹת": { "word": { @@ -114202,7 +115037,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַרְיֵה": { "word": { @@ -114284,7 +115120,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱרֹךְ": { "word": { @@ -114728,7 +115565,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲרִיךְ": { "word": { @@ -115475,7 +116313,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאָרֵךְ": { "word": { @@ -115919,7 +116758,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲרִיכוּת": { "word": { @@ -115991,7 +116831,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹרֶךְ": { "word": { @@ -116058,12 +116899,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d4qe!Y1Ynm" + "plurals_guid": "d4qe!Y1Ynm", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַרְכָּה": { "word": { @@ -116145,12 +116989,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "uQ^1f.`4@h" + "plurals_guid": "uQ^1f.`4@h", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָרֹךְ": { "word": { @@ -116237,11 +117084,12 @@ "nikkud": "אֲרֻכּוֹת", "ktiv_male": "ארוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּאֲרִיךְ": { "word": { @@ -116324,12 +117172,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h;H[GoF]?G" + "plurals_guid": "h;H[GoF]?G", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַרְמוֹן": { "word": { @@ -116405,7 +117256,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹרֶן": { "word": { @@ -116464,12 +117316,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "In2p5)5ZGJ" + "plurals_guid": "In2p5)5ZGJ", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַרְנָב": { "word": { @@ -116545,7 +117400,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַרְנָק": { "word": { @@ -116621,7 +117477,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאָרֵס": { "word": { @@ -117045,7 +117902,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאָרֵס": { "word": { @@ -117772,7 +118630,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָרוּס": { "word": { @@ -117835,12 +118694,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dLE}5z;g[k" + "plurals_guid": "dLE}5z;g[k", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵרוּסִין": { "word": { @@ -117897,12 +118759,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t5XPH6qDwL%<" + "plurals_guid": "vg`L>DwL%<", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַאֲשִׁים": { "word": { @@ -122094,7 +122988,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַשְׁמָה": { "word": { @@ -122179,12 +123074,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "F{-%3LDD{c" + "plurals_guid": "F{-%3LDD{c", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָשֵׁם": { "word": { @@ -122268,11 +123166,12 @@ "nikkud": "אֲשֵׁמוֹת", "ktiv_male": "אשמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶאֱשֹׁם": { "word": { @@ -122661,7 +123560,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵאָשֵׁם": { "word": { @@ -122676,7 +123576,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be accused, held liable (ב-)", + "meaning": "to be accused, held liable", "meaning_raw": "to be accused, held liable (ב-)", "audio_url": "https://audio.pealim.com/v0/1d/1d5y3fs7z2410.mp3", "audio_file": "להיאשם.mp3", @@ -123086,7 +123986,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "אֶשְׁנָב": { "word": { @@ -123162,7 +124063,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַשָּׁף": { "word": { @@ -123223,12 +124125,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xJN>)NuILP" + "plurals_guid": "xJN>)NuILP", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַשְׁפָּה": { "word": { @@ -123289,12 +124194,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zY|AIgmzP=" + "plurals_guid": "zY|AIgmzP=", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִשְׁפּוּז": { "word": { @@ -123357,12 +124265,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t))!RFF}f=" + "plurals_guid": "t))!RFF}f=", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַשְׁפֵּז": { "word": { @@ -124089,7 +125000,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאַשְׁפֵּז": { "word": { @@ -124513,7 +125425,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִשּׁוּר": { "word": { @@ -124578,12 +125491,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lqqp&?7K!Z" + "plurals_guid": "lqqp&?7K!Z", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אָשׁוּר": { "word": { @@ -124648,12 +125564,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֲשֶׁר": { "word": { @@ -124712,7 +125631,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מְאֻשָּׁר": { "word": { @@ -124771,11 +125691,12 @@ "nikkud": "מְאֻשָּׁרוֹת", "ktiv_male": "מאושרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֹשֶׁר": { "word": { @@ -124834,12 +125755,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hQt[qP~_1D" + "plurals_guid": "hQt[qP~_1D", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אִשְׁרָה": { "word": { @@ -124904,12 +125828,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "$tSiErdp#" + "plurals_guid": "$tSiErdp#", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַשֵּׁר": { "word": { @@ -125664,7 +126591,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַשְׁרַאי": { "word": { @@ -125713,7 +126641,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְאוֹשֵׁשׁ|Verb|to recover, to regain strength": { "word": { @@ -125755,13 +126684,7 @@ ], "confusables_guid": "i/j[t(!)mNI6" + "plurals_guid": "D2T&>)mNI6", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֵת": { "word": { @@ -130944,12 +131898,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d2BNPB9uCh" + "plurals_guid": "d2BNPB9uCh", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּ": { "word": { @@ -131024,7 +131981,8 @@ "ktiv_male": "בהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּאֶמְצָעוּת": { "word": { @@ -131115,7 +132073,8 @@ "ktiv_male": "באמצעותן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֻאָס": { "word": { @@ -131171,11 +132130,12 @@ "nikkud": "מְבֻאָסוֹת", "ktiv_male": "מבואסות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַאֵס": { "word": { @@ -131598,7 +132558,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבָּאֵס": { "word": { @@ -132037,7 +132998,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבָאֵר": { "word": { @@ -132764,7 +133726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבָּאֵר": { "word": { @@ -133188,7 +134151,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּאוּר": { "word": { @@ -133251,12 +134215,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oWd8MCSJT8" + "plurals_guid": "oWd8MCSJT8", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּאֵר": { "word": { @@ -133345,12 +134312,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rk[ed,<.CD" + "plurals_guid": "rk[ed,<.CD", + "mishkal": "ktel", + "mishkal_hebrew": "קְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּאֲרִיכוּת": { "word": { @@ -133399,7 +134369,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בָּאוּשׁ": { "word": { @@ -133454,11 +134425,12 @@ "nikkud": "בְּאוּשׁוֹת", "ktiv_male": "באושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְאֹשׁ": { "word": { @@ -133880,7 +134852,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּבְהִירוּת": { "word": { @@ -133913,7 +134886,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בַּבּוֹנָג": { "word": { @@ -133968,7 +134942,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּבַקָּשָׁה": { "word": { @@ -134027,7 +135002,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בּוֹגְדָנוּת": { "word": { @@ -134096,7 +135072,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּגֶד": { "word": { @@ -134186,12 +135163,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KXHAfyf%[f" + "plurals_guid": "KXHAfyf%[f", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּגֵד": { "word": { @@ -134616,7 +135596,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוֹגְדָנִי": { "word": { @@ -134678,7 +135659,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְגֹּד": { "word": { @@ -134693,7 +135675,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to betray, to cheat on (ב-)", + "meaning": "to betray, to cheat on", "meaning_raw": "to betray, to cheat on (ב-)", "audio_url": "https://audio.pealim.com/v0/1p/1pyf7n1g02lhd.mp3", "audio_file": "לבגוד.mp3", @@ -135129,7 +136111,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "בְּגִין": { "word": { @@ -135162,7 +136145,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בִּגְלַל": { "word": { @@ -135263,7 +136247,8 @@ "ktiv_male": "בגללן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבַּגְּרוּת": { "word": { @@ -135321,12 +136306,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K,6*aG[h9n" + "plurals_guid": "K,6*aG[h9n", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּגְרוּת": { "word": { @@ -135384,12 +136372,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wjT~BoKgbm" + "plurals_guid": "wjT~BoKgbm", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֻגָּר": { "word": { @@ -135473,11 +136464,12 @@ "nikkud": "מְבֻגָּרוֹת", "ktiv_male": "מבוגרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּגֵּר": { "word": { @@ -135902,7 +136894,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְגֹּר": { "word": { @@ -136343,7 +137336,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּגְרוּשׁ": { "word": { @@ -136376,7 +137370,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בַּד|Noun|cloth, fabric; screen": { "word": { @@ -136409,13 +137404,7 @@ ], "confusables_guid": "vZ{MZo$n_r", "examples": { - "vetted": [ - { - "text": "הִיא שׁוֹלֶפֶת מֵחֻלְצָתָהּ נַרְתִּיק בַּד הַמְּחֻבָּר לִשְׂרוֹךְ שֶׁתָּלוּי עַל צַוָארָהּ", - "source": "time_tunnel_77", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -136448,7 +137437,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְדֹּא": { "word": { @@ -136868,7 +137858,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבוֹדֵד": { "word": { @@ -137600,7 +138591,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבּוֹדֵד": { "word": { @@ -138029,7 +139021,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבּוֹדְדוּת": { "word": { @@ -138097,12 +139090,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K7iQ>0(8.Q" + "plurals_guid": "K7iQ>0(8.Q", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּדּוּד": { "word": { @@ -138170,12 +139166,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NufVW_bBH?" + "plurals_guid": "NufVW_bBH?", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּד|Noun|branch (of a tree) (lit.); part of an olive press": { "word": { @@ -138255,12 +139254,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L6Ij-ROJM{" + "plurals_guid": "L6Ij-ROJM{", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַד": { "word": { @@ -138332,7 +139334,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בּוֹדֵד": { "word": { @@ -138420,11 +139423,12 @@ "nikkud": "בּוֹדְדוֹת", "ktiv_male": "בודדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּדִידוּת": { "word": { @@ -138491,7 +139495,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַדֵּד": { "word": { @@ -139223,7 +140228,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּדוּאִי": { "word": { @@ -139297,7 +140303,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּדֹלַח": { "word": { @@ -139357,7 +140364,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַדֵּחַ": { "word": { @@ -140109,7 +141117,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּדֵּחַ": { "word": { @@ -140553,7 +141562,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּדִיחָה": { "word": { @@ -140641,12 +141651,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nY]!Y%b5|0" + "plurals_guid": "nY]!Y%b5|0", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּדְחִיפוּת": { "word": { @@ -140679,7 +141692,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִבְדּוֹת": { "word": { @@ -141118,7 +142132,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּדִיָּה": { "word": { @@ -141184,12 +142199,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qkE;KdZ;gI" + "plurals_guid": "qkE;KdZ;gI", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּדוֹת": { "word": { @@ -141616,7 +142634,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּדְיוֹן": { "word": { @@ -141676,12 +142695,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ktg^!/u!AP" + "plurals_guid": "Ktg^!/u!AP", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּדוּי": { "word": { @@ -141741,11 +142763,12 @@ "nikkud": "בְּדוּיוֹת", "ktiv_male": "בדויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּדְיוֹנִי": { "word": { @@ -141809,7 +142832,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַדּוֹת": { "word": { @@ -142239,7 +143263,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּדִימוֹס": { "word": { @@ -142272,7 +143297,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִבָּדֵל": { "word": { @@ -142700,7 +143726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּדְלָנוּת": { "word": { @@ -142772,7 +143799,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶבְדֵּל": { "word": { @@ -142855,12 +143883,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fsnwS3e9CP" + "plurals_guid": "fsnwS3e9CP", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַבְדָּלָה": { "word": { @@ -142927,12 +143958,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ow3%+#<#)z" + "plurals_guid": "Ow3%+#<#)z", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְדִּיל": { "word": { @@ -143679,7 +144713,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַדֵּל": { "word": { @@ -144410,7 +145445,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּדֵּל": { "word": { @@ -144838,7 +145874,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּדְלָן": { "word": { @@ -144905,12 +145942,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u1/X9-rSpr" + "plurals_guid": "u1/X9-rSpr", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְדֹּק": { "word": { @@ -145361,7 +146401,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּדֵק": { "word": { @@ -145833,7 +146874,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְדָּק": { "word": { @@ -145897,12 +146939,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sP;NPQY+J=" + "plurals_guid": "sP;NPQY+J=", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּדִיקָה": { "word": { @@ -145982,12 +147027,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g~@/xoC!|}" + "plurals_guid": "g~@/xoC!|}", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְדּוֹק": { "word": { @@ -146051,12 +147099,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z:C5^EF=7z" + "plurals_guid": "z:C5^EF=7z", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּדֵּר": { "word": { @@ -146479,7 +147530,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּדּוּר": { "word": { @@ -146541,12 +147593,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Bu%o!gwu#u" + "plurals_guid": "Bu%o!gwu#u", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַדֵּר": { "word": { @@ -147272,7 +148327,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּהֶחְלֵט": { "word": { @@ -147331,7 +148387,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִבְהוֹת": { "word": { @@ -147346,7 +148403,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to stare (at something) (ב־)", + "meaning": "to stare (at something)", "meaning_raw": "to stare (at something) (ב־)", "audio_url": "https://audio.pealim.com/v0/1q/1qhxj1scor49q.mp3", "audio_file": "לבהות.mp3", @@ -147751,7 +148808,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "בְּהֶכְרֵחַ": { "word": { @@ -147784,7 +148842,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִבָּהֵל": { "word": { @@ -148237,7 +149296,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֹהָל": { "word": { @@ -148323,11 +149383,12 @@ "nikkud": "מְבֹהָלוֹת", "ktiv_male": "מבוהלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּבְהֵלָה": { "word": { @@ -148393,12 +149454,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rs2T2`iXQ;" + "plurals_guid": "rs2T2`iXQ;", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְהִיל|Verb|to scare, to frighten": { "word": { @@ -148442,23 +149506,7 @@ ], "confusables_guid": "ge+{cEM+I)", "examples": { - "vetted": [ - { - "text": "אֲנִי חַיָּב לְהַגִּיד לָכֶם שֶׁזֶּה הָיָה קֶטַע מָה־זֶה מַבְהִיל", - "source": "time_tunnel_63", - "match_method": "conjugated" - }, - { - "text": "הָאֶפְשָׁרוּת שֶׁמִּישֶׁהוּ זִהָה אֶת מִנְהֶרֶת־הַזְּמַן שֶׁלָּנוּ וּמִתְכַּוֵן לְהִכָּנֵס לְתוֹכָהּ, מַבְהִילָה אוֹתִי", - "source": "time_tunnel_82", - "match_method": "conjugated" - }, - { - "text": "״ הַצְּעָקָה שֶׁל שָׁרוֹן מַבְהִילָה אוֹתִי", - "source": "time_tunnel_81", - "match_method": "conjugated" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -149150,7 +150198,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְהִיל|Verb|to rush, to bring urgently (a patient to a hospital, etc.)": { "word": { @@ -149902,7 +150951,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּהָלָה": { "word": { @@ -149994,12 +151044,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "uc>!+61{c9" + "plurals_guid": "uc>!+61{c9", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְהֹל": { "word": { @@ -150426,7 +151479,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּהֵמָה|Noun|beast, domestic animal": { "word": { @@ -150465,13 +151519,7 @@ ], "confusables_guid": "H{:f0+IYpR", "examples": { - "vetted": [ - { - "text": "הֵם רוֹכְבִים עַל בְּהֵמוֹת נְמוּכוֹת יוֹתֵר, כַּנִּרְאֶה חֲמוֹרִים", - "source": "time_tunnel_82", - "match_method": "inflected" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -150499,12 +151547,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q0@Y}r2tUK" + "plurals_guid": "q0@Y}r2tUK", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּהֵמָה|Noun|beast, animal (e. g. cattle); brute, vulgar person (slang)": { "word": { @@ -150577,12 +151628,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u&nJe^(aEG" + "plurals_guid": "u&nJe^(aEG", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֹּהֶן": { "word": { @@ -150662,7 +151716,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְהֹק": { "word": { @@ -151085,7 +152140,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוֹהֵק": { "word": { @@ -151141,11 +152197,12 @@ "nikkud": "בּוֹהֲקוֹת", "ktiv_male": "בוהקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְהִיק": { "word": { @@ -151871,7 +152928,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּהֶקְדֵּם": { "word": { @@ -151904,7 +152962,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְבַּהֵר": { "word": { @@ -152354,7 +153413,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּהִירוּת": { "word": { @@ -152422,7 +153482,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּהִיר": { "word": { @@ -152500,11 +153561,12 @@ "nikkud": "בְּהִירוֹת", "ktiv_male": "בהירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְהִיר": { "word": { @@ -153247,7 +154309,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּהֶתְאֵם": { "word": { @@ -153258,7 +154321,7 @@ "root": [], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "accordingly, correspondingly; in accordance with (ל־)", + "meaning": "accordingly, correspondingly; in accordance with", "meaning_raw": "accordingly, correspondingly; in accordance with (ל־)", "audio_url": "https://audio.pealim.com/v0/8q/8qoe9f9441ni.mp3", "audio_file": "בהתאם.mp3", @@ -153280,7 +154343,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "ל־" }, "לָבוֹא": { "word": { @@ -153732,7 +154796,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָבִיא": { "word": { @@ -154487,7 +155552,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּא": { "word": { @@ -154572,11 +155638,12 @@ "nikkud": "בָּאוֹת", "ktiv_male": "באות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָבוֹא": { "word": { @@ -154641,12 +155708,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m-DNLuB{hT" + "plurals_guid": "m-DNLuB{hT", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּבוּאָה": { "word": { @@ -154711,12 +155781,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jNTRX4Hr(]" + "plurals_guid": "jNTRX4Hr(]", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּיאָה": { "word": { @@ -154781,12 +155854,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G@Wse!hS/a" + "plurals_guid": "G@Wse!hS/a", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֻּבָּה": { "word": { @@ -154867,7 +155943,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּוַדַּאי": { "word": { @@ -154926,7 +156003,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בּוּז": { "word": { @@ -155002,7 +156080,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָבוּז": { "word": { @@ -155017,7 +156096,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to scorn, to despise someone (ל־)", + "meaning": "to scorn, to despise someone", "meaning_raw": "to scorn, to despise someone (ל־)", "audio_url": "https://audio.pealim.com/v0/1r/1rshruefu9xbx.mp3", "audio_file": "לבוז.mp3", @@ -155424,7 +156503,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְהָבִיךְ": { "word": { @@ -156177,7 +157257,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָבוֹךְ": { "word": { @@ -156240,12 +157321,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lhp?K/1e7R" + "plurals_guid": "lhp?K/1e7R", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבוּכָה": { "word": { @@ -156329,12 +157413,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IRs>&KOdOY" + "plurals_guid": "IRs>&KOdOY", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבּוֹךְ": { "word": { @@ -156784,7 +157871,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוּל": { "word": { @@ -156869,7 +157957,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבּוֹסֵס": { "word": { @@ -157293,7 +158382,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָבִיס": { "word": { @@ -158036,7 +159126,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲבָסָה": { "word": { @@ -158099,12 +159190,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N~2R+w{ep^" + "plurals_guid": "N~2R+w{ep^", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּבוּסָה": { "word": { @@ -158167,12 +159261,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k!9me$rr5r" + "plurals_guid": "k!9me$rr5r", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוּעָה": { "word": { @@ -158227,7 +159324,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוּרוּת": { "word": { @@ -158303,7 +159401,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוּר": { "word": { @@ -158373,7 +159472,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוֹר|Noun|pit; dungeon (lit.)": { "word": { @@ -158446,7 +159546,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוֹר|Noun|boron (chemistry)": { "word": { @@ -158523,7 +159624,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוּרְסָה": { "word": { @@ -158578,7 +159680,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבוֹשֵׁשׁ": { "word": { @@ -159304,7 +160407,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֵבוֹשׁ": { "word": { @@ -159731,7 +160835,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוּשָׁה": { "word": { @@ -159818,7 +160923,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַזְבֵּז": { "word": { @@ -160571,7 +161677,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּזְבֵּז": { "word": { @@ -160995,7 +162102,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּזְבּוּז": { "word": { @@ -161058,12 +162166,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sXIWBRGQa[" + "plurals_guid": "sXIWBRGQa[", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּזָּה": { "word": { @@ -161125,12 +162236,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IEbj&n0l_y" + "plurals_guid": "IEbj&n0l_y", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְזֹז": { "word": { @@ -161553,7 +162667,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּז": { "word": { @@ -161615,12 +162730,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BhO<]irZJ2" + "plurals_guid": "BhO<]irZJ2", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּזּוֹת": { "word": { @@ -162044,7 +163162,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִבְזֶה": { "word": { @@ -162101,11 +163220,12 @@ "nikkud": "נִבְזוֹת", "ktiv_male": "נבזות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּזוּי": { "word": { @@ -162162,11 +163282,12 @@ "nikkud": "בְּזוּיוֹת", "ktiv_male": "בזויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַזּוֹת": { "word": { @@ -162893,7 +164014,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּזְכוּת": { "word": { @@ -162994,7 +164116,8 @@ "ktiv_male": "בזכותן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְזֹק": { "word": { @@ -163417,7 +164540,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְזִיק": { "word": { @@ -163840,7 +164964,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְזָק": { "word": { @@ -163902,12 +165027,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y,?2%z_%ua" + "plurals_guid": "y,?2%z_%ua", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַזֵּר": { "word": { @@ -164630,7 +165758,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּזְרִיזוּת": { "word": { @@ -164684,7 +165813,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בָּחוּץ": { "word": { @@ -164738,7 +165868,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּחִנָּם": { "word": { @@ -164771,7 +165902,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִבְחֹל": { "word": { @@ -164786,7 +165918,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to despise, to loathe (ב-)", + "meaning": "to despise, to loathe", "meaning_raw": "to despise, to loathe (ב-)", "audio_url": "https://audio.pealim.com/v0/xo/xobsq8s1g4fb.mp3", "audio_file": "לבחול.mp3", @@ -165210,7 +166342,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "בְּחִילָה": { "word": { @@ -165298,12 +166431,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Pzn$rccR@u" + "plurals_guid": "Pzn$rccR@u", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְחִיל": { "word": { @@ -166029,7 +167165,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְחֹן": { "word": { @@ -166484,7 +167621,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּחֵן": { "word": { @@ -166913,7 +168051,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֹּחַן": { "word": { @@ -166981,12 +168120,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x8y$]#z@Ai" + "plurals_guid": "x8y$]#z@Ai", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַבְחֵנָה": { "word": { @@ -167054,12 +168196,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w*/=ROK;y," + "plurals_guid": "w*/=ROK;y,", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּחִינָה": { "word": { @@ -167127,12 +168272,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tHC41se.8;" + "plurals_guid": "tHC41se.8;", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְחָן": { "word": { @@ -167200,12 +168348,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q?GGRwNr&1" + "plurals_guid": "q?GGRwNr&1", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַבְחָנָה": { "word": { @@ -167273,12 +168424,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iz|,DZop@," + "plurals_guid": "iz|,DZop@,", + "mishkal": "aktala", + "mishkal_hebrew": "אַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַבְחָנָה": { "word": { @@ -167346,12 +168500,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r{5e5^v0<`" + "plurals_guid": "r{5e5^v0<`", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְחִין": { "word": { @@ -167366,7 +168523,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to distinguish, to spot (ב־)", + "meaning": "to distinguish, to spot", "meaning_raw": "to distinguish, to spot (ב־)", "audio_url": "https://audio.pealim.com/v0/8i/8i8co2sp3m5q.mp3", "audio_file": "להבחין.mp3", @@ -168109,7 +169266,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "לִבְחֹר": { "word": { @@ -168560,7 +169718,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּחֵר": { "word": { @@ -169006,7 +170165,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּחִירָה": { "word": { @@ -169086,12 +170246,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QAp;hEqspj" + "plurals_guid": "QAp;hEqspj", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּחוּר": { "word": { @@ -169181,12 +170344,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r}S#M6~QT#" + "plurals_guid": "r}S#M6~QT#", + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּחוּרָה": { "word": { @@ -169281,7 +170447,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְחֹשׁ": { "word": { @@ -169722,7 +170889,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּטֵּא": { "word": { @@ -170147,7 +171315,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבַּטְּאוּת": { "word": { @@ -170211,12 +171380,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H||$(n~D7u" + "plurals_guid": "H||$(n~D7u", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְטָא": { "word": { @@ -170301,12 +171473,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J", "examples": { - "vetted": [ - { - "text": "שָׁרוֹן וַאֲנִי שְׁרוּיִים בַּחֲשֵׁכָה מֻחְלֶטֶת, וְהָאֶפְשָׁרוּת לְהַדְלִיק נֵר מִתְבַּטֶּלֶת מִיָּד", - "source": "time_tunnel_81", - "match_method": "conjugated" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -174575,7 +175776,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻבְטָל": { "word": { @@ -174636,11 +175838,12 @@ "nikkud": "מֻבְטָלוֹת", "ktiv_male": "מובטלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַבְטָלָה": { "word": { @@ -174701,12 +175904,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CzH&SKbBJU" + "plurals_guid": "CzH&SKbBJU", + "mishkal": "aktala", + "mishkal_hebrew": "אַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּטּוּל": { "word": { @@ -174773,12 +175979,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eJf2`cQtLq" + "plurals_guid": "eJf2`cQtLq", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּטְלָן": { "word": { @@ -174861,12 +176070,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LMYGi}!Vn2" + "plurals_guid": "LMYGi}!Vn2", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַטֵּל": { "word": { @@ -175628,7 +176840,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְטֹל": { "word": { @@ -176056,7 +177269,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּטֵּל|Verb|to be cancelled, undone; to be self-deprecating; to be idle": { "word": { @@ -176496,7 +177710,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֹּטֶן": { "word": { @@ -176575,12 +177790,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fi#%-8Qf.#" + "plurals_guid": "fi#%-8Qf.#", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּטּוּן": { "word": { @@ -176643,12 +177861,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fcN(TeP;>w" + "plurals_guid": "fcN(TeP;>w", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּטֶן": { "word": { @@ -176711,12 +177932,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּטְנָה": { "word": { @@ -176779,12 +178003,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Dh[]h{!0Bs" + "plurals_guid": "Dh[]h{!0Bs", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּטֶרֶם": { "word": { @@ -176833,7 +178060,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִבְטֹשׁ": { "word": { @@ -177253,7 +178481,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּיּוּב": { "word": { @@ -177312,12 +178541,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B&n~^P:C#*" + "plurals_guid": "B&n~^P:C#*", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּיֹשֶׁר": { "word": { @@ -177350,7 +178582,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּיוֹתֵר": { "word": { @@ -177409,7 +178642,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּיַחַד": { "word": { @@ -177442,7 +178676,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְבַיֵּל": { "word": { @@ -177862,7 +179097,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַיֵּם": { "word": { @@ -178585,7 +179821,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָבִין": { "word": { @@ -179346,7 +180583,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבּוֹנְנוּת": { "word": { @@ -179417,12 +180655,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bcJ#PT{B*l" + "plurals_guid": "bcJ#PT{B*l", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹבָנָה": { "word": { @@ -179498,7 +180739,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבוֹנֵן": { "word": { @@ -179930,7 +181172,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּין": { "word": { @@ -180031,7 +181274,8 @@ "ktiv_male": "ביניהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּיּוּן": { "word": { @@ -180102,12 +181346,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lv`:?{=eRG" + "plurals_guid": "lv`:?{=eRG", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַיֵּן": { "word": { @@ -180539,7 +181786,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּבָן": { "word": { @@ -180636,12 +181884,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IT]8)H)S{v" + "plurals_guid": "IT]8)H)S{v", + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּבוּנָה": { "word": { @@ -180712,12 +181963,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "er[!Zy-J]D" + "plurals_guid": "er[!Zy-J]D", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבּוֹנֵן": { "word": { @@ -180732,7 +181986,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to look, to contemplate, to gaze (ב-)", + "meaning": "to look, to contemplate, to gaze", "meaning_raw": "to look, to contemplate, to gaze (ב-)", "audio_url": "https://audio.pealim.com/v0/1g/1guo1u5qdfqxw.mp3", "audio_file": "להתבונן.mp3", @@ -181175,7 +182429,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "הֲבָנָה": { "word": { @@ -181262,12 +182517,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "z,z`Coe~w2" + "plurals_guid": "z,z`Coe~w2", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָבוֹן": { "word": { @@ -181348,11 +182606,12 @@ "nikkud": "נְבוֹנוֹת", "ktiv_male": "נבונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּינָה": { "word": { @@ -181417,12 +182676,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xX@Q_K7xYz" + "plurals_guid": "xX@Q_K7xYz", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּינוֹנִי|Adjective": { "word": { @@ -181478,7 +182740,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּינוֹנִי|Noun": { "word": { @@ -181541,7 +182804,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּינַיִם": { "word": { @@ -181596,7 +182860,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּינְלְאֻמִּי": { "word": { @@ -181649,7 +182914,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּינְתַיִם": { "word": { @@ -181708,7 +182974,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְבַיֵּץ": { "word": { @@ -182130,7 +183397,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּיצָה": { "word": { @@ -182213,7 +183481,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּיצִירָתִיּוּת": { "word": { @@ -182246,7 +183515,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בִּירָה|Noun|capital (city)": { "word": { @@ -182279,13 +183549,7 @@ ], "confusables_guid": "L#PdOm~X9L", "examples": { - "vetted": [ - { - "text": "לוֹנְדוֹן הִיא בִּירַת פָּרִיז, וּפָּרִיז הִיא בִּירַת רוֹמָא, וְרוֹמָא", - "source": "alice_wonderland", - "match_method": "inflected" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -182318,7 +183582,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּירָה|Noun|beer": { "word": { @@ -182390,7 +183655,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּיֵּשׁ": { "word": { @@ -182839,7 +184105,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּיְשָׁן": { "word": { @@ -182895,11 +184162,12 @@ "nikkud": "בַּיְשָׁנִיּוֹת", "ktiv_male": "ביישניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַיֵּשׁ": { "word": { @@ -183646,7 +184914,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּיִת": { "word": { @@ -183734,12 +185003,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bUzi5xM[~Y" + "plurals_guid": "bUzi5xM[~Y", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּיֵּת": { "word": { @@ -184162,7 +185434,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַיֵּת": { "word": { @@ -184888,7 +186161,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּית גִּדּוּל": { "word": { @@ -184937,7 +186211,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּית זִקּוּק": { "word": { @@ -184986,7 +186261,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּית כְּנֶסֶת": { "word": { @@ -185040,7 +186316,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּית סֵפֶר": { "word": { @@ -185094,7 +186371,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְכּוֹת": { "word": { @@ -185541,7 +186819,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּכְיָן": { "word": { @@ -185599,11 +186878,12 @@ "nikkud": "בַּכְיָנִיּוֹת", "ktiv_male": "בכייניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּכִי": { "word": { @@ -185687,12 +186967,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GRs#6my^$I" + "plurals_guid": "GRs#6my^$I", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַכּוֹת": { "word": { @@ -186449,7 +187732,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּכִיָּה": { "word": { @@ -186513,12 +187797,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tNX{OTlG|z" + "plurals_guid": "tNX{OTlG|z", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּכְיֵן": { "word": { @@ -186955,7 +188242,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּכְלָל": { "word": { @@ -187014,7 +188302,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּכֵנוּת": { "word": { @@ -187047,7 +188336,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בִּכּוּר": { "word": { @@ -187111,12 +188401,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D$p4dPFP-(" + "plurals_guid": "D$p4dPFP-(", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּכוֹר": { "word": { @@ -187180,12 +188473,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְכִּיר": { "word": { @@ -187610,7 +188906,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּכִיר": { "word": { @@ -187668,11 +188965,12 @@ "nikkud": "בְּכִירוֹת", "ktiv_male": "בכירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַכֵּר": { "word": { @@ -188400,7 +189698,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּלְבַד": { "word": { @@ -188459,7 +189758,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְבַלְבֵּל": { "word": { @@ -189212,7 +190512,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּלְבֵּל": { "word": { @@ -189662,7 +190963,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּלְבּוּל": { "word": { @@ -189741,12 +191043,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BZS}`)gEt%" + "plurals_guid": "BZS}`)gEt%", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְלִיג": { "word": { @@ -189761,7 +191066,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to restrain, to forbear (על)", + "meaning": "to restrain, to forbear", "meaning_raw": "to restrain, to forbear (על)", "audio_url": "https://audio.pealim.com/v0/19/19222m8biqjdc.mp3", "audio_file": "להבליג.mp3", @@ -190469,7 +191774,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "בָּלָגָן": { "word": { @@ -190541,7 +191847,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּלְגֵּן": { "word": { @@ -190965,7 +192272,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַלְגֵּן": { "word": { @@ -191692,7 +193000,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֻלְגָּן": { "word": { @@ -191749,11 +193058,12 @@ "nikkud": "מְבֻלְגָּנוֹת", "ktiv_male": "מבולגנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּלוֹן": { "word": { @@ -191813,7 +193123,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְלִיחַ": { "word": { @@ -192536,7 +193847,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלֹט": { "word": { @@ -192988,7 +194300,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּלֵּט": { "word": { @@ -193414,7 +194727,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּלּוּט": { "word": { @@ -193479,12 +194793,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wk(?-D%1Wj" + "plurals_guid": "wk(?-D%1Wj", + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּלּוּטָה": { "word": { @@ -193549,7 +194866,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְלִיט": { "word": { @@ -194278,7 +195596,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּלִיטָה": { "word": { @@ -194359,12 +195678,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x,WpREX3gZ" + "plurals_guid": "x,WpREX3gZ", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּלָטָה": { "word": { @@ -194418,7 +195740,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּלּוֹת": { "word": { @@ -194842,7 +196165,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלוֹת": { "word": { @@ -195269,7 +196593,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּלִי": { "word": { @@ -195370,7 +196695,8 @@ "ktiv_male": "בלעדיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַלּוֹת": { "word": { @@ -196109,7 +197435,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּלּוּי": { "word": { @@ -196188,12 +197515,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j/z6/_>NU@" + "plurals_guid": "j/z6/_>NU@", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּלֵיְזֶר": { "word": { @@ -196253,7 +197583,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבּוֹלְלוּת": { "word": { @@ -196315,12 +197646,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "BQQq55P%7<" + "plurals_guid": "BQQq55P%7<", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבּוֹלֵל": { "word": { @@ -196743,7 +198077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלֹל": { "word": { @@ -197166,7 +198501,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּלֵם": { "word": { @@ -197607,7 +198943,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּלִימָה": { "word": { @@ -197687,12 +199024,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eT[j]rvXH[" + "plurals_guid": "eT[j]rvXH[", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּלָּם": { "word": { @@ -197759,12 +199099,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HC#iO=C%Nb" + "plurals_guid": "HC#iO=C%Nb", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּלֶם": { "word": { @@ -197831,12 +199174,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלֹם": { "word": { @@ -198277,7 +199623,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלֹעַ": { "word": { @@ -198727,7 +200074,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּלֵעַ": { "word": { @@ -199177,7 +200525,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְלִיעַ": { "word": { @@ -199904,7 +201253,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בּוֹלְעָן": { "word": { @@ -199988,7 +201338,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּלְעָדִי": { "word": { @@ -200041,7 +201392,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּלְעָדִיּוּת": { "word": { @@ -200107,7 +201459,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַּלֵף": { "word": { @@ -200527,7 +201880,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּלֶּשֶׁת": { "word": { @@ -200590,12 +201944,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "h%nU59#t}Y" + "plurals_guid": "h%nU59#t}Y", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּלָּשׁ": { "word": { @@ -200658,12 +202015,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K5U_hm6W#^" + "plurals_guid": "K5U_hm6W#^", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּלּוּשׁ": { "word": { @@ -200726,12 +202086,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Dh{?8S!*uK" + "plurals_guid": "Dh{?8S!*uK", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלֹשׁ": { "word": { @@ -200746,7 +202109,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to investigate, to tail (אחרי)", + "meaning": "to investigate, to tail", "meaning_raw": "to investigate, to tail (אחרי)", "audio_url": "https://audio.pealim.com/v0/1r/1rvl5zliabcks.mp3", "audio_file": "לבלוש.mp3", @@ -201155,7 +202518,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אחרי" }, "בִּלְתִּי": { "word": { @@ -201214,7 +202578,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בַּמְבּוּק": { "word": { @@ -201263,7 +202628,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּמְהִירוּת": { "word": { @@ -201322,7 +202688,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּמַהֲלַךְ": { "word": { @@ -201423,7 +202790,8 @@ "ktiv_male": "במהלכן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּמָטוּתָא": { "word": { @@ -201456,7 +202824,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בַּמַּאי": { "word": { @@ -201533,12 +202902,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GFknPvBZ?c" + "plurals_guid": "GFknPvBZ?c", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּמָה": { "word": { @@ -201630,7 +203002,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּמְיֻחָד": { "word": { @@ -201689,7 +203062,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּמַעֲמַד": { "word": { @@ -201764,7 +203138,8 @@ "ktiv_male": "במעמדן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּמַקְבִּיל": { "word": { @@ -201775,7 +203150,7 @@ "root": [], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "in parallel, simultaneously (ל־)", + "meaning": "in parallel, simultaneously", "meaning_raw": "in parallel, simultaneously (ל־)", "audio_url": "https://audio.pealim.com/v0/1k/1kjdqag5sfvnx.mp3", "audio_file": "במקביל.mp3", @@ -201813,7 +203188,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "ל־" }, "בִּמְקוֹם": { "word": { @@ -201914,7 +203290,8 @@ "ktiv_male": "במקומן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֵּן": { "word": { @@ -202000,7 +203377,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּנְזִין": { "word": { @@ -202065,7 +203443,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְנוֹת": { "word": { @@ -202522,7 +203901,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּנוֹת": { "word": { @@ -202984,7 +204364,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּנִיָּה": { "word": { @@ -203054,12 +204435,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Hof|pyp8#;" + "plurals_guid": "Hof|pyp8#;", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּנַּאי": { "word": { @@ -203150,12 +204534,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v&leG]N`Im" + "plurals_guid": "v&leG]N`Im", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּנּוּי": { "word": { @@ -203219,12 +204606,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QfKfKg]JkB" + "plurals_guid": "QfKfKg]JkB", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻבְנֶה": { "word": { @@ -203288,11 +204678,12 @@ "nikkud": "מֻבְנוֹת", "ktiv_male": "מובנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּבְנִית": { "word": { @@ -203362,12 +204753,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IS/L7H)rsk" + "plurals_guid": "IS/L7H)rsk", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְנוֹת": { "word": { @@ -204101,7 +205495,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּנְיָן": { "word": { @@ -204192,7 +205587,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּנוּי": { "word": { @@ -204207,7 +205603,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "built, constructed, created; built of, made up of, consists of (מ־)", + "meaning": "built, constructed, created; built of, made up of, consists of", "meaning_raw": "built, constructed, created; built of, made up of, consists of (מ־)", "audio_url": "https://audio.pealim.com/v0/1t/1tcgzo6ujbsju.mp3", "audio_file": "בנוי.mp3", @@ -204256,11 +205652,12 @@ "nikkud": "בְּנוּיוֹת", "ktiv_male": "בנויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מ־" }, "מִבְנֶה": { "word": { @@ -204351,12 +205748,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xtF|FR(&:." + "plurals_guid": "xtF|FR(&:.", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּנָנָה": { "word": { @@ -204410,7 +205810,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּנְק": { "word": { @@ -204486,7 +205887,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּסֵדֶר": { "word": { @@ -204545,7 +205947,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְבַּסֵּס": { "word": { @@ -204972,7 +206375,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֻסָּס": { "word": { @@ -205032,11 +206436,12 @@ "nikkud": "מְבֻסָּסוֹת", "ktiv_male": "מבוססות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּסִיס": { "word": { @@ -205118,12 +206523,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H^]]ffTw(_" + "plurals_guid": "H^]]ffTw(_", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּסִיסִי": { "word": { @@ -205187,7 +206595,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבַּסְּסוּת": { "word": { @@ -205253,12 +206662,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Lrw&l6@-+F" + "plurals_guid": "Lrw&l6@-+F", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּסּוּס": { "word": { @@ -205324,12 +206736,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nn~JyHE+qw" + "plurals_guid": "nn~JyHE+qw", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַסֵּס": { "word": { @@ -206075,7 +207490,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּסֵתֶר": { "word": { @@ -206108,7 +207524,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְבַעְבֵּעַ": { "word": { @@ -206832,7 +208249,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּעַד": { "word": { @@ -206933,7 +208351,8 @@ "ktiv_male": "בעדן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּעוֹד": { "word": { @@ -206992,7 +208411,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִבְעֹט": { "word": { @@ -207441,7 +208861,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּעֵט": { "word": { @@ -207864,7 +209285,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּעִיטָה": { "word": { @@ -207947,12 +209369,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IKQ?%k4Ai>" + "plurals_guid": "IKQ?%k4Ai>", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּעוֹת": { "word": { @@ -208374,7 +209799,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּעָיָה": { "word": { @@ -208461,12 +209887,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jF4Drru$60" + "plurals_guid": "jF4Drru$60", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּעַל": { "word": { @@ -208554,12 +209983,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EuvpBBvL4/" + "plurals_guid": "EuvpBBvL4/", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּעִילָה": { "word": { @@ -208621,12 +210053,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DUD]b>.3=E" + "plurals_guid": "DUD]b>.3=E", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְעֹל": { "word": { @@ -208641,7 +210076,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to have sex (with a woman) (את)", + "meaning": "to have sex (with a woman)", "meaning_raw": "to have sex (with a woman) (את)", "audio_url": "https://audio.pealim.com/v0/xq/xqsklp6itrr9.mp3", "audio_file": "לבעול.mp3", @@ -209049,7 +210484,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "בַּעֲלִיל": { "word": { @@ -209082,7 +210518,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּעִנְיַן": { "word": { @@ -209115,7 +210552,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּעִקְבוֹת|Preposition|following, in the trail of; as a result of, because of": { "word": { @@ -209216,7 +210654,8 @@ "ktiv_male": "בעקבותיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְעֹר": { "word": { @@ -209667,7 +211106,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַבְעֵר": { "word": { @@ -209731,12 +211171,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i2;RS#KTXZ" + "plurals_guid": "i2;RS#KTXZ", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְעִיר": { "word": { @@ -210480,7 +211923,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַעֵר": { "word": { @@ -211208,7 +212652,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּבְעֵרָה": { "word": { @@ -211272,12 +212717,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cPJ_.PmEU:" + "plurals_guid": "cPJ_.PmEU:", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּעֵרֶךְ": { "word": { @@ -211336,7 +212784,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בַּעַת": { "word": { @@ -211399,12 +212848,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "secXE)URV!" + "plurals_guid": "secXE)URV!", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּעֵת": { "word": { @@ -211828,7 +213280,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֹעָת": { "word": { @@ -211843,7 +213296,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "terrified, horrified (מ־)", + "meaning": "terrified, horrified", "meaning_raw": "terrified, horrified (מ־)", "audio_url": "https://audio.pealim.com/v0/p3/p37fyqmlayvj.mp3", "audio_file": "מבועת.mp3", @@ -211885,11 +213338,12 @@ "nikkud": "מְבֹעָתוֹת", "ktiv_male": "מבועתות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מ־" }, "לְהַבְעִית": { "word": { @@ -212616,7 +214070,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּפֹעַל": { "word": { @@ -212649,7 +214104,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בִּפְנֵי": { "word": { @@ -212750,7 +214206,8 @@ "ktiv_male": "בפניהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּפְנִים": { "word": { @@ -212809,7 +214266,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְבַצְבֵּץ": { "word": { @@ -213246,7 +214704,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּצָל": { "word": { @@ -213321,12 +214780,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lk2Rp{SF(+" + "plurals_guid": "lk2Rp{SF(+", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַצֵּעַ": { "word": { @@ -214081,7 +215543,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּצֵּעַ": { "word": { @@ -214507,7 +215970,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּצּוּעַ": { "word": { @@ -214588,12 +216052,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H{&LFz6i@T" + "plurals_guid": "H{&LFz6i@T", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְצָע": { "word": { @@ -214684,12 +216151,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LSANxwO;F#" + "plurals_guid": "LSANxwO;F#", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְצֹעַ": { "word": { @@ -215131,7 +216601,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּצֵעַ": { "word": { @@ -215557,7 +217028,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּצָּה": { "word": { @@ -215635,12 +217107,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "brLc@[?*6x" + "plurals_guid": "brLc@[?*6x", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֹּץ": { "word": { @@ -215716,12 +217191,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j&:N,-,2}g" + "plurals_guid": "j&:N,-,2}g", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּצֵק|Noun": { "word": { @@ -215785,12 +217263,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "$n0+ILswx" + "plurals_guid": "$n0+ILswx", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּצֵק|Adjective": { "word": { @@ -215848,11 +217329,12 @@ "nikkud": "בְּצֵקוֹת", "ktiv_male": "בצקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּצֵּר": { "word": { @@ -216296,7 +217778,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּצֵר": { "word": { @@ -216311,7 +217794,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be impossible (for) (מין)", + "meaning": "to be impossible (for)", "meaning_raw": "to be impossible (for) (מין)", "audio_url": "https://audio.pealim.com/v0/14/14gn8kbki111c.mp3", "audio_file": "להיבצר.mp3", @@ -216724,7 +218207,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מין" }, "בַּצֹּרֶת": { "word": { @@ -216791,12 +218275,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e8p9?pcIY6" + "plurals_guid": "e8p9?pcIY6", + "mishkal": "kattolet", + "mishkal_hebrew": "קַטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּצוּר": { "word": { @@ -216857,11 +218344,12 @@ "nikkud": "בְּצוּרוֹת", "ktiv_male": "בצורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִבְצָר": { "word": { @@ -216944,12 +218432,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IFT9aO1SpE" + "plurals_guid": "IFT9aO1SpE", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַצֵּר": { "word": { @@ -217680,7 +219171,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְצֹר": { "word": { @@ -218108,7 +219600,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְבֻצָּר": { "word": { @@ -218169,11 +219662,12 @@ "nikkud": "מְבֻצָּרוֹת", "ktiv_male": "מבוצרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּקִיא": { "word": { @@ -218226,11 +219720,12 @@ "nikkud": "בְּקִיאוֹת", "ktiv_male": "בקיאות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּקְבּוּק": { "word": { @@ -218316,7 +219811,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּקְבִיעוּת": { "word": { @@ -218349,7 +219845,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּקַלּוּת": { "word": { @@ -218408,7 +219905,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִבְקֹעַ": { "word": { @@ -218863,7 +220361,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַקֵּעַ": { "word": { @@ -219611,7 +221110,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּקּוּעַ": { "word": { @@ -219679,12 +221179,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HBI`.dGNtg" + "plurals_guid": "HBI`.dGNtg", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּקֵּעַ": { "word": { @@ -220113,7 +221616,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֶּקַע": { "word": { @@ -220207,12 +221711,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ct03iXqCBv" + "plurals_guid": "ct03iXqCBv", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְבַּקְּעוּת": { "word": { @@ -220280,12 +221787,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G`j/r!,b|F" + "plurals_guid": "G`j/r!,b|F", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִבָּקֵעַ": { "word": { @@ -220714,7 +222224,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְקִיעַ": { "word": { @@ -221446,7 +222957,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּקְעָה": { "word": { @@ -221530,12 +223042,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gmgj|%Vy#l" + "plurals_guid": "Gmgj|%Vy#l", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֹּקֶר": { "word": { @@ -221628,12 +223143,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u&!_4F[ZN%" + "plurals_guid": "u&!_4F[ZN%", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּקָּרָה": { "word": { @@ -221700,12 +223218,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gnz}yl61XQ" + "plurals_guid": "gnz}yl61XQ", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּקּוּר": { "word": { @@ -221793,12 +223314,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o~lbpa6*1S" + "plurals_guid": "o~lbpa6*1S", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּקָּר": { "word": { @@ -221894,12 +223418,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּקָּרְתִּי": { "word": { @@ -221964,7 +223491,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַקֵּר": { "word": { @@ -221979,7 +223507,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to visit (ב־); to criticise (את)", + "meaning": "to visit ; to criticise", "meaning_raw": "to visit (ב־); to criticise (את)", "audio_url": "https://audio.pealim.com/v0/1d/1d7hhgfjtbnwj.mp3", "audio_file": "לבקר.mp3", @@ -222721,7 +224249,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־ את" }, "בִּקֹּרֶת": { "word": { @@ -222788,12 +224317,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m!_~{0n)ac" + "plurals_guid": "m!_~{0n)ac", + "mishkal": "kittolet", + "mishkal_hebrew": "קִטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּקָר": { "word": { @@ -222838,30 +224370,7 @@ ], "confusables_guid": "k^BWpK7+XM", "examples": { - "vetted": [ - { - "text": "\"נִרְאֶה לִי שֶׁזֶּה הַזְּמַן לַאֲרוּחַת בֹּקֶר,\" הוֹסִיפָה מִיָּד", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "אֲבָל כָּל הַפְּעֻלּוֹת הַשִּׁגְרָתִיּוֹת הָאֵלֶּה נָעֲמוּ לוֹ מְאוֹד בְּאוֹתוֹ בֹּקֶר", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "לְמַרְבֵּה הַצַּעַר, אִישׁ מֵעוֹלָם לֹא בִּקֵּר כָּאן", - "source": "הנסיך הקטן", - "vetted": true - } - ], - "cloze": { - "text": "\"נִרְאֶה לִי שֶׁזֶּה הַזְּמַן לַאֲרוּחַת בֹּקֶר,\" הוֹסִיפָה מִיָּד", - "cloze_word_start": 41, - "cloze_word_end": 47, - "cloze_hint": null, - "cloze_guid": "A6`agmu:$:" - }, + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -222883,12 +224392,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּקֶרֶב": { "word": { @@ -222984,7 +224496,8 @@ "ktiv_male": "בקרבן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּקָרוֹב": { "word": { @@ -223038,7 +224551,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְבַּקֵּשׁ": { "word": { @@ -223488,7 +225002,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּקּוּשׁ": { "word": { @@ -223551,12 +225066,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eviP(3&uhEE" + "plurals_guid": "z$>(3&uhEE", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְרִישׁ": { "word": { @@ -238935,7 +240548,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּשְׁבִיל": { "word": { @@ -239036,7 +240650,8 @@ "ktiv_male": "בשבילן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְשֹׁל": { "word": { @@ -239462,7 +241077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּשֵּׁל": { "word": { @@ -239888,7 +241504,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בִּשּׁוּל": { "word": { @@ -239947,12 +241564,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "liGfmrS!/d" + "plurals_guid": "liGfmrS!/d", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּשֵׁל": { "word": { @@ -240011,11 +241631,12 @@ "nikkud": "בְּשֵׁלוֹת", "ktiv_male": "בשלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַשֵּׁל": { "word": { @@ -240744,7 +242365,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַבְשִׁיל": { "word": { @@ -241499,7 +243121,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּשֵּׂם": { "word": { @@ -241922,7 +243545,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בֹּשֶׂם": { "word": { @@ -241984,12 +243608,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JpXdTHg++k" + "plurals_guid": "JpXdTHg++k", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּשֵׁם": { "word": { @@ -242090,7 +243717,8 @@ "ktiv_male": "בשמן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַשֵּׂם": { "word": { @@ -242816,7 +244444,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּשָׂר": { "word": { @@ -242895,12 +244524,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G*yLTHL*8q" + "plurals_guid": "G*yLTHL*8q", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּשָׂרִי": { "word": { @@ -242961,7 +244593,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַשֵּׂר": { "word": { @@ -243688,7 +245321,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְבַּשֵּׂר": { "word": { @@ -244112,7 +245746,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּשְׂרָנִי": { "word": { @@ -244169,7 +245804,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּשַׂר בָּקָר": { "word": { @@ -244215,7 +245851,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּת": { "word": { @@ -244301,7 +245938,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּתוֹךְ": { "word": { @@ -244402,7 +246040,8 @@ "ktiv_male": "בתוכן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּתוֹר": { "word": { @@ -244461,7 +246100,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "בְּתוּלִיּוּת": { "word": { @@ -244522,7 +246162,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בָּתוּל": { "word": { @@ -244578,11 +246219,12 @@ "nikkud": "בְּתוּלוֹת", "ktiv_male": "בתולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּתוּלִי": { "word": { @@ -244642,7 +246284,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַתֵּק": { "word": { @@ -245062,7 +246705,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבַתֵּר": { "word": { @@ -245785,7 +247429,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּאֲוָה": { "word": { @@ -245864,12 +247509,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H_3m_]y[{|" + "plurals_guid": "H_3m_]y[{|", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְאוֹת": { "word": { @@ -246293,7 +247941,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגָּאוֹת": { "word": { @@ -246308,7 +247957,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to be proud of (ב-)", + "meaning": "to be proud of", "meaning_raw": "to be proud of (ב-)", "audio_url": "https://audio.pealim.com/v0/tz/tzm0b7px8hto.mp3", "audio_file": "להתגאות.mp3", @@ -246717,7 +248366,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "גֵּאֶה": { "word": { @@ -246800,11 +248450,12 @@ "nikkud": "גֵּאוֹת", "ktiv_male": "גאות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kete", + "mishkal_hebrew": "" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּאוֹן": { "word": { @@ -246883,12 +248534,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rN.5%wChW`" + "plurals_guid": "rN.5%wChW`", + "mishkal": "katon", + "mishkal_hebrew": "קָטוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְאֹל": { "word": { @@ -247332,7 +248986,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּאֵל": { "word": { @@ -247755,7 +249410,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּאֻלָּה": { "word": { @@ -247817,12 +249473,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K{jyhbM.j}" + "plurals_guid": "K{jyhbM.j}", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַבֵּב": { "word": { @@ -248548,7 +250207,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּב": { "word": { @@ -248636,12 +250296,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zLjTW@5qA%" + "plurals_guid": "zLjTW@5qA%", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּבָּה": { "word": { @@ -248719,12 +250382,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B]5}z#q?`j" + "plurals_guid": "B]5}z#q?`j", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְבֹּהַּ": { "word": { @@ -249179,7 +250845,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֹּבַהּ": { "word": { @@ -249263,12 +250930,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּבֹהַּ": { "word": { @@ -249341,11 +251011,12 @@ "nikkud": "גְּבֹהוֹת", "ktiv_male": "גבוהות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְבִּיהַּ": { "word": { @@ -250072,7 +251743,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְבּוֹת": { "word": { @@ -250113,25 +251785,7 @@ ], "confusables_guid": "qT,cEK$sj-", "examples": { - "vetted": [ - { - "text": "\"אֲנִי מְקַוָה שֶׁאֶמְצָא אוֹתָהּ,\" הִיא אוֹמֶרֶת לִי, מַפְנָה אֵלַי אֶת גַּבָּהּ וּמִתְרַחֶקֶת", - "source": "מנהרת הזמן 82", - "vetted": true - }, - { - "text": "אֵין לָהֶם שׁוּם מֻשָּׂג אֵיךְ לְהַנִּיחַ אוֹתִי עַל גַּבּוֹ שֶׁל סוּס בַּזְּמַן שֶׁאֲנִי קָשׁוּר", - "source": "מנהרת הזמן 82", - "vetted": true - } - ], - "cloze": { - "text": "\"אֲנִי מְקַוָה שֶׁאֶמְצָא אוֹתָהּ,\" הִיא אוֹמֶרֶת לִי, מַפְנָה אֵלַי אֶת גַּבָּהּ וּמִתְרַחֶקֶת", - "cloze_word_start": null, - "cloze_word_end": null, - "cloze_hint": null, - "cloze_guid": "g3Ou27{UmX" - }, + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -250520,7 +252174,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּבּוּי": { "word": { @@ -250577,12 +252232,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "chXf`l.=/{" + "plurals_guid": "chXf`l.=/{", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַבּוֹת": { "word": { @@ -251333,7 +252991,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּבוֹת": { "word": { @@ -251757,7 +253416,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַגְבָּלָה": { "word": { @@ -251821,12 +253481,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CImEF;uAx." + "plurals_guid": "CImEF;uAx.", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּבוּל": { "word": { @@ -251911,12 +253574,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OU_!Mo_YkJ" + "plurals_guid": "OU_!Mo_YkJ", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְבִּיל": { "word": { @@ -252691,7 +254357,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַבֵּל": { "word": { @@ -253419,7 +255086,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְבֹּל": { "word": { @@ -253434,7 +255102,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to border (ב-)", + "meaning": "to border", "meaning_raw": "to border (ב-)", "audio_url": "https://audio.pealim.com/v0/x0/x0u0h8tiwdeg.mp3", "audio_file": "לגבול.mp3", @@ -253844,7 +255512,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "גְּבִינָה": { "word": { @@ -253906,12 +255575,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "miET>(_V/$" + "plurals_guid": "miET>(_V/$", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּבָּן": { "word": { @@ -253973,12 +255645,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O;0Zge}+Js" + "plurals_guid": "O;0Zge}+Js", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּבֵּן": { "word": { @@ -254034,11 +255709,12 @@ "nikkud": "גִּבְּנוֹת", "ktiv_male": "גיבנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּבֶס": { "word": { @@ -254093,12 +255769,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Iy8ws[f1as" + "plurals_guid": "Iy8ws[f1as", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַבֵּס": { "word": { @@ -254823,7 +256502,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּבְעָה": { "word": { @@ -254912,12 +256592,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qD*AaF>n^7" + "plurals_guid": "qD*AaF>n^7", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּבַע": { "word": { @@ -254980,12 +256663,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "orKE-RBDm)" + "plurals_guid": "orKE-RBDm)", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּבִיעַ": { "word": { @@ -255074,12 +256760,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pmA<8]-`zJ" + "plurals_guid": "pmA<8]-`zJ", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִגְבַּעַת": { "word": { @@ -255142,12 +256831,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mm-<6?s/L" + "plurals_guid": "zZE??.>s/L", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּזֵר": { "word": { @@ -282669,7 +284526,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַחֵךְ": { "word": { @@ -283119,7 +284977,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְחֹךְ": { "word": { @@ -283543,7 +285402,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְגֻחָךְ": { "word": { @@ -283626,11 +285486,12 @@ "nikkud": "מְגֻחָכוֹת", "ktiv_male": "מגוחכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְחִיךְ": { "word": { @@ -284357,7 +286218,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּחֶלֶת": { "word": { @@ -284420,12 +286282,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PXxw{rPxVV" + "plurals_guid": "PXxw{rPxVV", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְחֹל": { "word": { @@ -284849,7 +286714,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּחְלִיל": { "word": { @@ -284917,7 +286783,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּחְלִילִית": { "word": { @@ -285006,7 +286873,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּחְמָה": { "word": { @@ -285065,12 +286933,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rk]Ergdga2" + "plurals_guid": "rk]Ergdga2", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְחֹן": { "word": { @@ -285516,7 +287387,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּט": { "word": { @@ -285571,7 +287443,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּיְא": { "word": { @@ -285652,7 +287525,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּאוֹמֶטְרְיָה": { "word": { @@ -285706,7 +287580,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיד": { "word": { @@ -285761,7 +287636,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּיהִנֹּם": { "word": { @@ -285812,7 +287688,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָגִיחַ": { "word": { @@ -286564,7 +288441,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיחָה": { "word": { @@ -286626,12 +288504,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QnR)XH@@vM" + "plurals_guid": "QnR)XH@@vM", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָגִיחַ": { "word": { @@ -287054,7 +288935,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָגִיל": { "word": { @@ -287497,7 +289379,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיל|Noun|joy, happiness": { "word": { @@ -287579,7 +289462,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיל|Noun|age (of a person)": { "word": { @@ -287651,7 +289535,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּילְדָּה": { "word": { @@ -287711,7 +289596,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַיֵּס": { "word": { @@ -288458,7 +290344,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּיֵּס": { "word": { @@ -288907,7 +290794,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיּוּס": { "word": { @@ -288969,12 +290857,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rTZ!pz|QYY" + "plurals_guid": "rTZ!pz|QYY", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיֹּרֶת": { "word": { @@ -289037,12 +290928,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P9Ye7B2(If" + "plurals_guid": "P9Ye7B2(If", + "mishkal": "kittolet", + "mishkal_hebrew": "קִטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַיֵּר": { "word": { @@ -289769,7 +291663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּיֵּר": { "word": { @@ -290193,7 +292088,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיּוּר": { "word": { @@ -290256,12 +292152,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g`=f/)J8b2" + "plurals_guid": "g`=f/)J8b2", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּיר": { "word": { @@ -290316,7 +292215,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּלְגֵּל": { "word": { @@ -290770,7 +292670,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּלְגַּל": { "word": { @@ -290863,7 +292764,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֻּלְגֹּלֶת": { "word": { @@ -290930,12 +292832,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Oid-~:i#4" + "plurals_guid": "p1JjE/l>#4", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֹּלֶם": { "word": { @@ -299840,12 +301805,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j8X-9HVYDD" + "plurals_guid": "j8X-9HVYDD", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּלְמִי": { "word": { @@ -299907,7 +301875,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּלִימָה": { "word": { @@ -299997,12 +301966,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ghf:6t~=2c" + "plurals_guid": "ghf:6t~=2c", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַלֵּם": { "word": { @@ -300730,7 +302702,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּלֵּם": { "word": { @@ -301155,7 +303128,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּלֵּעַ": { "word": { @@ -301575,7 +303549,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּגְלִיף": { "word": { @@ -301637,12 +303612,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CyDtljJ9d!" + "plurals_guid": "CyDtljJ9d!", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּלוּפָה": { "word": { @@ -301704,12 +303682,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H@b*JhQ+./" + "plurals_guid": "H@b*JhQ+./", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַלֵּף": { "word": { @@ -302435,7 +304416,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְלֹשׁ": { "word": { @@ -302884,7 +304866,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּלִישָׁה": { "word": { @@ -302967,12 +304950,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zcZ.6$b=Fz" + "plurals_guid": "zcZ.6$b=Fz", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּלֵּשׁ": { "word": { @@ -303395,7 +305381,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַגְלֵשָׁה": { "word": { @@ -303480,12 +305467,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QDA5R<6gEw" + "plurals_guid": "QDA5R<6gEw", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּם": { "word": { @@ -303544,7 +305534,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִגְמֹא": { "word": { @@ -303966,7 +305957,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֹּמֶא": { "word": { @@ -304027,12 +306019,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p7k{ZFflF>" + "plurals_guid": "p7k{ZFflF>", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּמְבָּה": { "word": { @@ -304086,7 +306081,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַמְגֵּם": { "word": { @@ -304831,7 +306827,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּמֵּד": { "word": { @@ -305253,7 +307250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַמֵּד": { "word": { @@ -305978,7 +307976,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְמֹז": { "word": { @@ -306398,7 +308397,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּמֵל": { "word": { @@ -306826,7 +308826,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּמָל": { "word": { @@ -306905,12 +308906,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yvYt+%lHkx" + "plurals_guid": "yvYt+%lHkx", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּמָּל": { "word": { @@ -306980,12 +308984,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּגְמוּל": { "word": { @@ -307052,12 +309059,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z_qJy1$rZz" + "plurals_guid": "z_qJy1$rZz", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְמֹל": { "word": { @@ -307485,7 +309495,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּמְלָה": { "word": { @@ -307552,12 +309563,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qd_sG9f=Yl" + "plurals_guid": "qd_sG9f=Yl", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּמְלַאי": { "word": { @@ -307629,7 +309643,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּמִילָה": { "word": { @@ -307696,12 +309711,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P+a=|;W~49" + "plurals_guid": "P+a=|;W~49", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְמֹעַ": { "word": { @@ -308121,7 +310139,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְמֹר": { "word": { @@ -308568,7 +310587,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַמְרֵי": { "word": { @@ -308637,7 +310657,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "גָּמוּר": { "word": { @@ -308722,11 +310743,12 @@ "nikkud": "גְּמוּרוֹת", "ktiv_male": "גמורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּמִירָה": { "word": { @@ -308791,12 +310813,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n9V:()7?C<" + "plurals_guid": "n9V:()7?C<", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּמֵר": { "word": { @@ -309248,7 +311273,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַמֵּר": { "word": { @@ -309700,7 +311726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְמִישׁ": { "word": { @@ -310425,7 +312452,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּמִישׁ": { "word": { @@ -310480,11 +312508,12 @@ "nikkud": "גְּמִישׁוֹת", "ktiv_male": "גמישות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְנֹב": { "word": { @@ -310936,7 +312965,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּנֵב": { "word": { @@ -311388,7 +313418,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּנֵבָה": { "word": { @@ -311474,12 +313505,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c+}~8~]&L" + "plurals_guid": "N7@>~8~]&L", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְעִיל": { "word": { @@ -322124,7 +324204,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְעֹל": { "word": { @@ -322547,7 +324628,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְעֹר": { "word": { @@ -322562,7 +324644,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to scold, to rebuke (ל-)", + "meaning": "to scold, to rebuke", "meaning_raw": "to scold, to rebuke (ל-)", "audio_url": "https://audio.pealim.com/v0/13/13q8bdufvhyvd.mp3", "audio_file": "לגעור.mp3", @@ -322995,7 +325077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "גְּעָרָה": { "word": { @@ -323056,12 +325139,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E,aQA=6W&+" + "plurals_guid": "E,aQA=6W&+", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּעְשִׁיּוּת": { "word": { @@ -323130,7 +325216,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְעֹשׁ": { "word": { @@ -323555,7 +325642,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּעֵשׁ": { "word": { @@ -323980,7 +326068,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּעַשׁ": { "word": { @@ -324070,12 +326159,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tlSd#4X]." + "plurals_guid": "tlSd#4X].", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּעְשִׁי": { "word": { @@ -324137,7 +326229,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּף": { "word": { @@ -324197,7 +326290,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּפֶן": { "word": { @@ -324282,12 +326376,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e~]VR}4bSn" + "plurals_guid": "e~]VR}4bSn", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַפֵּף": { "word": { @@ -324707,7 +326804,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּפְרִית": { "word": { @@ -324768,7 +326866,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֹּפֶר": { "word": { @@ -324824,12 +326923,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F.eWUt3R~P" + "plurals_guid": "F.eWUt3R~P", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּפְרוּר": { "word": { @@ -324896,7 +326998,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְרֹב": { "word": { @@ -325318,7 +327421,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּרֶב": { "word": { @@ -325395,12 +327499,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Lm&Jy=];NG" + "plurals_guid": "Lm&Jy=];NG", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַרְגֵּר": { "word": { @@ -326150,7 +328257,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּרְגֵּר": { "word": { @@ -326226,7 +328334,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּרְגֵּרִי": { "word": { @@ -326279,7 +328388,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּרוּד": { "word": { @@ -326357,12 +328467,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ccE>O@Z`/J" + "plurals_guid": "ccE>O@Z`/J", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגָרֵד": { "word": { @@ -327104,7 +329217,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגָּרֵד": { "word": { @@ -327543,7 +329657,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּרוּי|Noun|stimulus; stimulation, irritation": { "word": { @@ -327614,7 +329729,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּרוֹן": { "word": { @@ -327685,7 +329801,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּרוֹנִי": { "word": { @@ -327738,7 +329855,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּרוּשׁ": { "word": { @@ -327796,7 +329914,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּרוּז": { "word": { @@ -327857,12 +329976,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fdF1(Uu78w" + "plurals_guid": "fdF1(Uu78w", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגָרֵז": { "word": { @@ -328587,7 +330709,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּרְזֶן": { "word": { @@ -328647,7 +330770,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגָרוֹת": { "word": { @@ -329374,7 +331498,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגָּרוֹת": { "word": { @@ -329389,7 +331514,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to tease, to taunt (ב-)", + "meaning": "to tease, to taunt", "meaning_raw": "to tease, to taunt (ב-)", "audio_url": "https://audio.pealim.com/v0/cu/cufs36g1ao0e.mp3", "audio_file": "להתגרות.mp3", @@ -329824,7 +331949,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "גֵּרוּי|Noun|stimulus; irritation": { "word": { @@ -329903,12 +332029,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w=]6{v&V.h" + "plurals_guid": "w=]6{v&V.h", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶתְגָר": { "word": { @@ -329976,7 +332105,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּרִיז": { "word": { @@ -330030,7 +332160,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַגְרָלָה": { "word": { @@ -330092,12 +332223,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t|>jQpV9;k" + "plurals_guid": "t|>jQpV9;k", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גּוֹרָל": { "word": { @@ -330159,12 +332293,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rO5[Ty#+NW" + "plurals_guid": "rO5[Ty#+NW", + "mishkal": "kotal", + "mishkal_hebrew": "קוֹטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְרִיל": { "word": { @@ -330179,7 +332316,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to cast lots, to conduct a lottery upon (את)", + "meaning": "to cast lots, to conduct a lottery upon", "meaning_raw": "to cast lots, to conduct a lottery upon (את)", "audio_url": "https://audio.pealim.com/v0/1h/1hlxer6jf5g5f.mp3", "audio_file": "להגריל.mp3", @@ -330890,7 +333027,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "לְהִגָּרֵם": { "word": { @@ -331328,7 +333466,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְרֹם": { "word": { @@ -331776,7 +333915,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּרֵס": { "word": { @@ -332199,7 +334339,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְרֹס": { "word": { @@ -332214,7 +334355,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to hold the view (שׁ-); shred, grind (את)", + "meaning": "to hold the view ; shred, grind", "meaning_raw": "to hold the view (שׁ-); shred, grind (את)", "audio_url": "https://audio.pealim.com/v0/13/13rkogzys1yuj.mp3", "audio_file": "לגרוס.mp3", @@ -332622,7 +334763,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "שׁ- את" }, "גִּרְסָה": { "word": { @@ -332689,7 +334831,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְרֹעַ": { "word": { @@ -333129,7 +335272,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּרוּעַ": { "word": { @@ -333212,11 +335356,12 @@ "nikkud": "גְּרוּעוֹת", "ktiv_male": "גרועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּרֵעַ": { "word": { @@ -333640,7 +335785,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֵּרָעוֹן": { "word": { @@ -333703,12 +335849,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ysj?!HzJl@" + "plurals_guid": "ysj?!HzJl@", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּרְעִין": { "word": { @@ -333768,7 +335917,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּרְעִינִי": { "word": { @@ -333821,7 +335971,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְרֹף": { "word": { @@ -334273,7 +336424,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּרֵף": { "word": { @@ -334699,7 +336851,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶגְרוֹף": { "word": { @@ -334786,7 +336939,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גּוֹרֵף": { "word": { @@ -334861,11 +337015,12 @@ "nikkud": "גּוֹרְפוֹת", "ktiv_male": "גורפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגָרֵף": { "word": { @@ -335291,7 +337446,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַגְרֵפָה": { "word": { @@ -335356,12 +337512,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L:wU2nj>78" + "plurals_guid": "L:wU2nj>78", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִגָּרֵר": { "word": { @@ -335813,7 +337972,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְגֵרָה": { "word": { @@ -335878,12 +338038,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nP~]]~W#7e" + "plurals_guid": "nP~]]~W#7e", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגָרֵר": { "word": { @@ -336633,7 +338796,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּרָר": { "word": { @@ -336689,12 +338853,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M5y@,dOmOd" + "plurals_guid": "M5y@,dOmOd", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְרֹר": { "word": { @@ -337146,7 +339313,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גְּרִירָה": { "word": { @@ -337211,12 +339379,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hP7Sj2q>!4" + "plurals_guid": "hP7Sj2q>!4", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגָרֵשׁ": { "word": { @@ -337971,7 +340142,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגָּרֵשׁ": { "word": { @@ -337986,7 +340158,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to divorce (מן)", + "meaning": "to divorce", "meaning_raw": "to divorce (מן)", "audio_url": "https://audio.pealim.com/v0/tk/tk1efstw6tly.mp3", "audio_file": "להתגרש.mp3", @@ -338397,7 +340569,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מן" }, "גֵּרוּשִׁים": { "word": { @@ -338456,12 +340629,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uXhQ35j3QK" + "plurals_guid": "uXhQ35j3QK", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּרוּשׁ": { "word": { @@ -338523,11 +340699,12 @@ "nikkud": "גְּרוּשׁוֹת", "ktiv_male": "גרושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּרֶשׁ": { "word": { @@ -338583,12 +340760,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "svUCYLT5j#" + "plurals_guid": "svUCYLT5j#", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִגְרָשׁ": { "word": { @@ -338674,12 +340854,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J1{-U0Y/<@" + "plurals_guid": "J1{-U0Y/<@", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגַּשֵּׁם": { "word": { @@ -339105,7 +341288,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּשֶׁם": { "word": { @@ -339170,12 +341354,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oP7{z7t8uJ" + "plurals_guid": "oP7{z7t8uJ", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְגַּשְּׁמוּת": { "word": { @@ -339234,12 +341421,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vwO3Wa]FFT" + "plurals_guid": "vwO3Wa]FFT", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַגְשָׁמָה": { "word": { @@ -339304,12 +341494,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N5_A7M^]?o" + "plurals_guid": "N5_A7M^]?o", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגְשִׁים": { "word": { @@ -340038,7 +342231,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּשׁוּם": { "word": { @@ -340097,11 +342291,12 @@ "nikkud": "גְּשׁוּמוֹת", "ktiv_male": "גשומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גֶּשֶׁר": { "word": { @@ -340184,12 +342379,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oG>hJ4_}pC" + "plurals_guid": "oG>hJ4_}pC", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַשֵּׁר": { "word": { @@ -340204,7 +342402,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to bridge, to connect (בין)", + "meaning": "to bridge, to connect", "meaning_raw": "to bridge, to connect (בין)", "audio_url": "https://audio.pealim.com/v0/5m/5mwm3axr33tu.mp3", "audio_file": "לגשר.mp3", @@ -340915,7 +343113,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "בין" }, "לִגְשֹׁר": { "word": { @@ -341338,7 +343537,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְגּוֹשֵׁשׁ": { "word": { @@ -341763,7 +343963,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גִּשּׁוּשׁ": { "word": { @@ -341827,12 +344028,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d}<)~R5z)w" + "plurals_guid": "d}<)~R5z)w", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַשֵּׁשׁ": { "word": { @@ -342560,7 +344764,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גַּשָּׁשׁ": { "word": { @@ -342624,12 +344829,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P2;ak{seI(" + "plurals_guid": "P2;ak{seI(", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "גָּשׁוֹשׁ": { "word": { @@ -342693,12 +344901,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְאֹב": { "word": { @@ -343120,7 +345331,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְאִיב": { "word": { @@ -343845,7 +346057,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְאֹג": { "word": { @@ -343860,7 +346073,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to worry, to fret (ל-)", + "meaning": "to worry, to fret", "meaning_raw": "to worry, to fret (ל-)", "audio_url": "https://audio.pealim.com/v0/19/19lmi9xeoegb8.mp3", "audio_file": "לדאוג.mp3", @@ -344295,7 +346508,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "דְּאָגָה": { "word": { @@ -344374,12 +346588,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rbrZfeCY+x" + "plurals_guid": "rbrZfeCY+x", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻדְאָג": { "word": { @@ -344462,11 +346679,12 @@ "nikkud": "מֻדְאָגוֹת", "ktiv_male": "מודאגות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְאִיג": { "word": { @@ -345219,7 +347437,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּאָז": { "word": { @@ -345252,7 +347471,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִדְאוֹת": { "word": { @@ -345674,7 +347894,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּאוֹן": { "word": { @@ -345735,12 +347956,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g9TdSspD6;" + "plurals_guid": "g9TdSspD6;", + "mishkal": "katon", + "mishkal_hebrew": "קָטוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֹּאַר": { "word": { @@ -345793,12 +348017,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FLWVA_iBc]" + "plurals_guid": "FLWVA_iBc]", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדוֹבֵב": { "word": { @@ -346544,7 +348771,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּבָּה": { "word": { @@ -346610,12 +348838,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "j[jQ.X]LYq" + "plurals_guid": "j[jQ.X]LYq", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֹּב": { "word": { @@ -346707,12 +348938,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HuCb{c*Mr4" + "plurals_guid": "HuCb{c*Mr4", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּבּוּב": { "word": { @@ -346778,12 +349012,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Qy%9YH|@+^" + "plurals_guid": "Qy%9YH|@+^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּבּוֹן": { "word": { @@ -346854,7 +349091,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַבֵּב": { "word": { @@ -347584,7 +349822,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְבֹּב": { "word": { @@ -348011,7 +350250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּבוֹרַאי": { "word": { @@ -348071,7 +350311,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּבוֹרָה": { "word": { @@ -348157,7 +350398,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַבְלֵל": { "word": { @@ -348881,7 +351123,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְבֹּק": { "word": { @@ -349327,7 +351570,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּבֵק": { "word": { @@ -349783,7 +352027,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדְבֵּקָה": { "word": { @@ -349852,12 +352097,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y4BNIGX3xq" + "plurals_guid": "y4BNIGX3xq", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּבִיקוּת": { "word": { @@ -349931,7 +352179,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדַּבֵּק": { "word": { @@ -349994,11 +352243,12 @@ "nikkud": "מִדַּבְּקוֹת", "ktiv_male": "מידבקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mitkattel", + "mishkal_hebrew": "מִתְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּבֶק": { "word": { @@ -350067,12 +352317,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lbMiJ%8EV8" + "plurals_guid": "lbMiJ%8EV8", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּבּוּק": { "word": { @@ -350141,12 +352394,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xfLuD;w3SE" + "plurals_guid": "xfLuD;w3SE", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְבִּיק": { "word": { @@ -350905,7 +353161,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּבִיק": { "word": { @@ -350968,11 +353225,12 @@ "nikkud": "דְּבִיקוֹת", "ktiv_male": "דביקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִדָּבְקוּת": { "word": { @@ -351041,12 +353299,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I_f)2P=!>0" + "plurals_guid": "I_f)2P=!>0", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּבֵּר": { "word": { @@ -351142,12 +353403,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iu[7W^Vty3" + "plurals_guid": "iu[7W^Vty3", + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְבָּר": { "word": { @@ -351234,12 +353498,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HPvW;5w8.i" + "plurals_guid": "HPvW;5w8.i", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּבֵר": { "word": { @@ -351678,7 +353945,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּבָר": { "word": { @@ -351775,12 +354043,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדַּבֵּר": { "word": { @@ -352219,7 +354490,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּבִיר": { "word": { @@ -352294,12 +354566,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e]Vu.JWu:>" + "plurals_guid": "e]Vu.JWu:>", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּבֶר": { "word": { @@ -352397,12 +354672,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּבּוּר": { "word": { @@ -352503,12 +354781,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t4$S9M!]D*" + "plurals_guid": "t4$S9M!]D*", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַבֵּר": { "word": { @@ -353304,7 +355585,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְבִּיר": { "word": { @@ -354043,7 +356325,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִדָּבְרוּת": { "word": { @@ -354118,12 +356401,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I_*hL:Ks5r" + "plurals_guid": "I_*hL:Ks5r", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹבֵר": { "word": { @@ -354214,12 +356500,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bHLFgN^{6g" + "plurals_guid": "bHLFgN^{6g", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹבֶרֶת": { "word": { @@ -354299,7 +356588,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדַבֵּר": { "word": { @@ -354396,12 +356686,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְבָּרָה": { "word": { @@ -354476,12 +356769,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gWG@fXIu?i" + "plurals_guid": "gWG@fXIu?i", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדְבִּיר": { "word": { @@ -354556,12 +356852,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jO,egOux(%" + "plurals_guid": "jO,egOux(%", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּבַשׁ": { "word": { @@ -354635,12 +356934,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H;63LBxW5B" + "plurals_guid": "H;63LBxW5B", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַגְדֵּג": { "word": { @@ -355364,7 +357666,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְגֹּל": { "word": { @@ -355379,7 +357682,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to profess, to support (ב-)", + "meaning": "to profess, to support", "meaning_raw": "to profess, to support (ב-)", "audio_url": "https://audio.pealim.com/v0/cj/cj72tf2fcepq.mp3", "audio_file": "לדגול.mp3", @@ -355787,7 +358090,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "דֶּגֶל": { "word": { @@ -355875,12 +358179,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p5p{N0oC-`" + "plurals_guid": "p5p{N0oC-`", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּגוּל": { "word": { @@ -355936,11 +358243,12 @@ "nikkud": "דְּגוּלוֹת", "ktiv_male": "דגולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּגֶם": { "word": { @@ -356009,12 +358317,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r9*7*[D-k`" + "plurals_guid": "r9*7*[D-k`", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְגֹּם": { "word": { @@ -356444,7 +358755,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדֻגָּם": { "word": { @@ -356507,11 +358819,12 @@ "nikkud": "מְדֻגָּמוֹת", "ktiv_male": "מדוגמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְגִּים": { "word": { @@ -357265,7 +359578,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּגְמָה": { "word": { @@ -357350,12 +359664,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "p&+yE}ln+p" + "plurals_guid": "p&+yE}ln+p", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּגְמָן": { "word": { @@ -357445,7 +359762,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּגְמָנִית": { "word": { @@ -357519,7 +359837,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּגְמָנוּת": { "word": { @@ -357587,7 +359906,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְגָּמָה": { "word": { @@ -357656,12 +359976,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B3_/gJhtp-" + "plurals_guid": "B3_/gJhtp-", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּגִימָה": { "word": { @@ -357730,12 +360053,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zzf_g$>aA$" + "plurals_guid": "zzf_g$>aA$", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּגָן": { "word": { @@ -357794,12 +360120,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "[p+`OWGD)" + "plurals_guid": "[p+`OWGD)", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְגֹּר": { "word": { @@ -357814,7 +360143,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to incubate, to hatch (על)", + "meaning": "to incubate, to hatch", "meaning_raw": "to incubate, to hatch (על)", "audio_url": "https://audio.pealim.com/v0/cj/cj76g0tiz6a8.mp3", "audio_file": "לדגור.mp3", @@ -358219,7 +360548,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "דָּגֵשׁ": { "word": { @@ -358280,12 +360610,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EGRAvgido/" + "plurals_guid": "EGRAvgido/", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְגִּישׁ": { "word": { @@ -359036,7 +361369,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַדּוֹת": { "word": { @@ -359456,7 +361790,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְהוֹת": { "word": { @@ -359895,7 +362230,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּהוּי": { "word": { @@ -359951,11 +362287,12 @@ "nikkud": "דְּהוּיוֹת", "ktiv_male": "דהויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְהוֹת": { "word": { @@ -360378,7 +362715,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּהַיְנוּ": { "word": { @@ -360411,7 +362749,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִדָּהֵם": { "word": { @@ -360861,7 +363200,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּדְהֵמָה": { "word": { @@ -360940,12 +363280,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kso)P{N<42" + "plurals_guid": "kso)P{N<42", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְהִים": { "word": { @@ -361698,7 +364041,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדְהִים": { "word": { @@ -361781,11 +364125,12 @@ "nikkud": "מַדְהִימוֹת", "ktiv_male": "מדהימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְהֹר": { "word": { @@ -362226,7 +364571,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּבְדְּבָן": { "word": { @@ -362286,7 +364632,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָדוּג": { "word": { @@ -362708,7 +365055,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּג": { "word": { @@ -362795,12 +365143,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eT~q;q/JG(" + "plurals_guid": "eT~q;q/JG(", + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוּגְרִי": { "word": { @@ -362833,7 +365184,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "דּוֹד": { "word": { @@ -362915,7 +365267,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוּדּ": { "word": { @@ -362977,12 +365330,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוּדָא": { "word": { @@ -363037,7 +365393,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹדָה": { "word": { @@ -363123,7 +365480,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּוְקָא": { "word": { @@ -363182,7 +365540,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְדַוֵּחַ": { "word": { @@ -363910,7 +366269,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵדִיחַ": { "word": { @@ -363974,12 +366334,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eX%qO2kMFJ" + "plurals_guid": "eX%qO2kMFJ", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָדִיחַ": { "word": { @@ -364407,7 +366770,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲדָחָה": { "word": { @@ -364474,12 +366838,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּוּוּחַ": { "word": { @@ -364543,12 +366910,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G9cz|t1G{," + "plurals_guid": "G9cz|t1G{,", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּוֶה": { "word": { @@ -364603,11 +366973,12 @@ "nikkud": "דָּווֹת", "ktiv_male": "דוות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְווֹת": { "word": { @@ -365029,7 +367400,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוּכָן": { "word": { @@ -365089,7 +367461,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹלְפִין": { "word": { @@ -365149,7 +367522,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹלָר": { "word": { @@ -365203,7 +367577,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֻּמְדְּמָנִית": { "word": { @@ -365263,7 +367638,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָדוּן": { "word": { @@ -365711,7 +368087,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדּוֹן": { "word": { @@ -366154,7 +368531,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּוָּר": { "word": { @@ -366218,12 +368596,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I5:BXL@a`D" + "plurals_guid": "I5:BXL@a`D", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹר": { "word": { @@ -366308,7 +368689,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּירָה": { "word": { @@ -366398,12 +368780,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ks$kEP$!hD" + "plurals_guid": "ks$kEP$!hD", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדוּרָה": { "word": { @@ -366483,12 +368868,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iaQBTpN(V," + "plurals_guid": "iaQBTpN(V,", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָדוּר": { "word": { @@ -366913,7 +369301,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָדוּשׁ": { "word": { @@ -367337,7 +369726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּוּוּשׁ": { "word": { @@ -367400,12 +369790,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H-()m&*:T!" + "plurals_guid": "H-()m&*:T!", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּוְשָׁה": { "word": { @@ -367468,12 +369861,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K,N{*zH87P" + "plurals_guid": "K,N{*zH87P", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַוֵּשׁ": { "word": { @@ -367897,7 +370293,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּחוֹת": { "word": { @@ -368325,7 +370722,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּחְיָנוּת": { "word": { @@ -368397,7 +370795,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּחְיָן": { "word": { @@ -368464,12 +370863,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pFkg{(Q!/@" + "plurals_guid": "pFkg{(Q!/@", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְחוֹת": { "word": { @@ -368897,7 +371299,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּחוּי": { "word": { @@ -368964,12 +371367,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b?,c_OlJXq" + "plurals_guid": "b?,c_OlJXq", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּחוּי": { "word": { @@ -369030,11 +371436,12 @@ "nikkud": "דְּחוּיוֹת", "ktiv_male": "דחויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹחֶה": { "word": { @@ -369095,11 +371502,12 @@ "nikkud": "דּוֹחוֹת", "ktiv_male": "דוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּחִיָּה": { "word": { @@ -369166,12 +371574,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hyc%f#tsS#" + "plurals_guid": "hyc%f#tsS#", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּחְלִיל": { "word": { @@ -369252,7 +371663,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְחֹס": { "word": { @@ -369675,7 +372087,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדְחֵס": { "word": { @@ -369737,12 +372150,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vF`UV_twC" + "plurals_guid": "e;pn`,Qz>C", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּחוּק": { "word": { @@ -371589,11 +374022,12 @@ "nikkud": "דְּחוּקוֹת", "ktiv_male": "דחוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְחָקָה": { "word": { @@ -371661,12 +374095,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w1a^}7.#~K" + "plurals_guid": "w1a^}7.#~K", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶדְחֵק": { "word": { @@ -371734,12 +374171,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d[5J" + "plurals_guid": "sE*|2H>5J", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּכָּאוֹן": { "word": { @@ -375254,12 +377734,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nco./Lw%~{" + "plurals_guid": "nco./Lw%~{", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַכֵּא": { "word": { @@ -376036,7 +378519,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַכְדֵּךְ": { "word": { @@ -376776,7 +379260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְלֹג": { "word": { @@ -376791,7 +379276,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to skip, to hop over, to omit (על) (lit./bibl.)", + "meaning": "to skip, to hop over, to omit (lit./bibl.)", "meaning_raw": "to skip, to hop over, to omit (על) (lit./bibl.)", "audio_url": "https://audio.pealim.com/v0/19/19obcoludbtc8.mp3", "audio_file": "לדלוג.mp3", @@ -377199,7 +379684,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְדַלֵּג": { "word": { @@ -377214,7 +379700,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to skip, to hop over, to omit (על)", + "meaning": "to skip, to hop over, to omit", "meaning_raw": "to skip, to hop over, to omit (על)", "audio_url": "https://audio.pealim.com/v0/yn/yn6k5u4bks6o.mp3", "audio_file": "לדלג.mp3", @@ -377951,7 +380437,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "דִּלּוּג": { "word": { @@ -378013,12 +380500,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Edp%4v/Gk1" + "plurals_guid": "Edp%4v/Gk1", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדֻלְדָּל": { "word": { @@ -378075,11 +380565,12 @@ "nikkud": "מְדֻלְדָּלוֹת", "ktiv_male": "מדולדלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַלְדֵּל": { "word": { @@ -378806,7 +381297,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדַּלְדֵּל": { "word": { @@ -379230,7 +381722,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּלוּחַ": { "word": { @@ -379283,11 +381776,12 @@ "nikkud": "דְּלוּחוֹת", "ktiv_male": "דלוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַלּוֹת": { "word": { @@ -379712,7 +382206,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְלוֹת": { "word": { @@ -380137,7 +382632,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּל|Verb": { "word": { @@ -380497,7 +382993,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּלּוּת": { "word": { @@ -380566,7 +383063,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּל|Adjective": { "word": { @@ -380627,11 +383125,12 @@ "nikkud": "דַּלּוֹת", "ktiv_male": "דלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּלִיל": { "word": { @@ -380689,11 +383188,12 @@ "nikkud": "דְּלִילוֹת", "ktiv_male": "דלילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַלֵּל": { "word": { @@ -381421,7 +383921,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּלַעַת": { "word": { @@ -381481,7 +383982,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְלֹף": { "word": { @@ -381904,7 +384406,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּלִיפָה": { "word": { @@ -381966,12 +384469,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hQ2<6(X4)P" + "plurals_guid": "hQ2<6(X4)P", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְלִיף": { "word": { @@ -382697,7 +385203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּלְפֵּק": { "word": { @@ -382757,7 +385264,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּלֵק": { "word": { @@ -383187,7 +385695,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּלִיקוּת": { "word": { @@ -383261,7 +385770,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּלֶק": { "word": { @@ -383330,12 +385840,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B5JqBu|R+A" + "plurals_guid": "B5JqBu|R+A", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּלֶּקֶת": { "word": { @@ -383404,12 +385917,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MjG`U&3i=~" + "plurals_guid": "MjG`U&3i=~", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּלוּק": { "word": { @@ -383424,7 +385940,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "burning; switched on, turned on; excited by, passionate about (על)", + "meaning": "burning; switched on, turned on; excited by, passionate about", "meaning_raw": "burning; switched on, turned on; excited by, passionate about (על)", "audio_url": "https://audio.pealim.com/v0/fw/fwci4mzngfg7.mp3", "audio_file": "דלוק.mp3", @@ -383472,11 +385988,12 @@ "nikkud": "דְּלוּקוֹת", "ktiv_male": "דלוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "הַדְלָקָה": { "word": { @@ -383545,12 +386062,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HY46.9~lxW" + "plurals_guid": "HY46.9~lxW", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְלֹק": { "word": { @@ -383565,7 +386085,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to glow, to burn; to chase (אחרי)", + "meaning": "to glow, to burn; to chase", "meaning_raw": "to glow, to burn; to chase (אחרי)", "audio_url": "https://audio.pealim.com/v0/19/19obj15wsonkx.mp3", "audio_file": "לדלוק.mp3", @@ -383980,7 +386500,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אחרי" }, "לְהַדְלִיק": { "word": { @@ -384739,7 +387260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּלֵקָה": { "word": { @@ -384808,12 +387330,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E]^[9Wcp!M" + "plurals_guid": "E]^[9Wcp!M", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּלִיק": { "word": { @@ -384876,11 +387401,12 @@ "nikkud": "דְּלִיקוֹת", "ktiv_male": "דליקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּלֶת": { "word": { @@ -384965,12 +387491,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qn]KB7^<>A" + "plurals_guid": "qn]KB7^<>A", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַמְדֵּם": { "word": { @@ -385391,7 +387920,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּמוֹקְרַטְיָה": { "word": { @@ -385445,7 +387975,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְמוֹת": { "word": { @@ -385460,7 +387991,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to resemble, to be like smth (ל-)", + "meaning": "to resemble, to be like smth", "meaning_raw": "to resemble, to be like smth (ל-)", "audio_url": "https://audio.pealim.com/v0/f0/f0751f479997.mp3", "audio_file": "424-lidmot.mp3", @@ -385896,7 +388427,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לְהִדָּמוֹת": { "word": { @@ -386328,7 +388860,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּמוּת": { "word": { @@ -386412,12 +388945,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "lBog0V(CA+" + "plurals_guid": "lBog0V(CA+", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּמְיוֹן": { "word": { @@ -386511,12 +389047,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H[]l:0i<:b" + "plurals_guid": "H[]l:0i<:b", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּדְמִית": { "word": { @@ -386584,12 +389123,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "v].8>IU`bO" + "plurals_guid": "v].8>IU`bO", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַמּוֹת": { "word": { @@ -387324,7 +389866,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְמוֹת": { "word": { @@ -388056,7 +390599,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְמָיָה": { "word": { @@ -388124,12 +390668,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tbC%_]>(h]" + "plurals_guid": "tbC%_]>(h]", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדַּמּוֹת": { "word": { @@ -388144,7 +390691,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to imitate, to copy, to model oneself upon (ל־); to be assimilated (phonetics)", + "meaning": "to imitate, to copy, to model oneself upon ; to be assimilated (phonetics)", "meaning_raw": "to imitate, to copy, to model oneself upon (ל־); to be assimilated (phonetics)", "audio_url": "https://audio.pealim.com/v0/1s/1stw4orkf63bi.mp3", "audio_file": "6221-lehidamot.mp3", @@ -388561,7 +391108,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "דָּמִים": { "word": { @@ -388615,7 +391163,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַמְיֵן": { "word": { @@ -389365,7 +391914,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדֹּם": { "word": { @@ -389791,7 +392341,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָדֹם": { "word": { @@ -390165,7 +392716,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּם": { "word": { @@ -390256,12 +392808,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H;$>Rxnz7D" + "plurals_guid": "H;$>Rxnz7D", + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּמָמָה": { "word": { @@ -390346,12 +392901,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Lu)=sdwED}" + "plurals_guid": "Lu)=sdwED}", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוּמִיָּה": { "word": { @@ -390431,7 +392989,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַמֵּם": { "word": { @@ -391160,7 +393719,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְמֹעַ": { "word": { @@ -391598,7 +394158,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּמְעָה": { "word": { @@ -391685,12 +394246,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C}T7Mbuo`b" + "plurals_guid": "C}T7Mbuo`b", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַסְקֵס": { "word": { @@ -392111,7 +394675,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְעֹךְ": { "word": { @@ -392549,7 +395114,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּעִיכָה": { "word": { @@ -392610,12 +395176,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NbkG?L5<8G" + "plurals_guid": "NbkG?L5<8G", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּפְדֶּפֶת": { "word": { @@ -392679,12 +395248,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "F.$-$*JA$P" + "plurals_guid": "F.$-$*JA$P", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּפְדְּפָן": { "word": { @@ -392753,7 +395325,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּפְדּוּף": { "word": { @@ -392817,12 +395390,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sJ/U?Z$PO2" + "plurals_guid": "sJ/U?Z$PO2", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַפְדֵּף": { "word": { @@ -393576,7 +396152,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדֻפְּלָם": { "word": { @@ -393630,11 +396207,12 @@ "nikkud": "מְדֻפְּלָמוֹת", "ktiv_male": "מדופלמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֹּפֶן": { "word": { @@ -393714,12 +396292,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bGw+K`D-&U" + "plurals_guid": "bGw+K`D-&U", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּפוּס": { "word": { @@ -393784,12 +396365,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Pjs#2RGd>S" + "plurals_guid": "Pjs#2RGd>S", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדְפֶּסֶת": { "word": { @@ -393854,12 +396438,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gx{hMi.hf," + "plurals_guid": "Gx{hMi.hf,", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּדְפִּיס": { "word": { @@ -393924,12 +396511,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e69QRC?/}U" + "plurals_guid": "e69QRC?/}U", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְפָּסָה": { "word": { @@ -393994,12 +396584,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n[@e,+EV@n" + "plurals_guid": "n[@e,+EV@n", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְפִּיס": { "word": { @@ -394728,7 +397321,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּפֵס": { "word": { @@ -395154,7 +397748,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּף": { "word": { @@ -395239,12 +397834,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NXouseqHD*" + "plurals_guid": "NXouseqHD*", + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּפֵק": { "word": { @@ -395672,7 +398270,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְפֹּק": { "word": { @@ -396123,7 +398722,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּפִיקָה": { "word": { @@ -396213,12 +398813,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yQAmF}&!w;" + "plurals_guid": "yQAmF}&!w;", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֹּפֶק": { "word": { @@ -396298,12 +398901,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OCUHoM(kcr" + "plurals_guid": "OCUHoM(kcr", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדַּפֵּק": { "word": { @@ -396731,7 +399337,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּקְדּוּק": { "word": { @@ -396809,12 +399416,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I:q!Q>P@7B" + "plurals_guid": "I:q!Q>P@7B", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַקְדֵּק": { "word": { @@ -396830,7 +399440,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to scrutinize, to niggle (ב-)", + "meaning": "to scrutinize, to niggle", "meaning_raw": "to scrutinize, to niggle (ב-)", "audio_url": "https://audio.pealim.com/v0/3g/3gb03yqjgftu.mp3", "audio_file": "לדקדק.mp3", @@ -397540,7 +400150,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "דֶּקֶל": { "word": { @@ -397615,12 +400226,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kb3wp6Li*~" + "plurals_guid": "kb3wp6Li*~", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּקְלוּם": { "word": { @@ -397682,12 +400296,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gU:4`,7&hI" + "plurals_guid": "gU:4`,7&hI", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַקְלֵם": { "word": { @@ -398439,7 +401056,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּקָּה": { "word": { @@ -398528,12 +401146,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mwf#SNM},O" + "plurals_guid": "mwf#SNM},O", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּק": { "word": { @@ -398611,11 +401232,12 @@ "nikkud": "דַּקּוֹת", "ktiv_male": "דקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּקּוּת": { "word": { @@ -398709,7 +401331,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּקִיק": { "word": { @@ -398766,11 +401389,12 @@ "nikkud": "דְּקִיקוֹת", "ktiv_male": "דקיקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְקֹר": { "word": { @@ -399219,7 +401843,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּקִירָה": { "word": { @@ -399281,12 +401906,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k#}3lL5(5>" + "plurals_guid": "k#}3lL5(5>", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּקֵר": { "word": { @@ -399709,7 +402337,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַרְבֵּן": { "word": { @@ -400433,7 +403062,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּרְבָּן": { "word": { @@ -400493,7 +403123,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדָרֵג": { "word": { @@ -401222,7 +403853,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדְרֵגָה": { "word": { @@ -401308,12 +403940,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G2etwnoIdp" + "plurals_guid": "G2etwnoIdp", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְרָגָה": { "word": { @@ -401372,12 +404007,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jBTU,a3.3V" + "plurals_guid": "jBTU,a3.3V", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּרְגָּה": { "word": { @@ -401468,12 +404106,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "M6mByZ$uEo" + "plurals_guid": "M6mByZ$uEo", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּרֶג": { "word": { @@ -401538,12 +404179,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "AC62pI;qmh" + "plurals_guid": "AC62pI;qmh", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֵּרוּג": { "word": { @@ -401608,12 +404252,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v-A@!_{$hb" + "plurals_guid": "v-A@!_{$hb", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַרְדֵּר": { "word": { @@ -402339,7 +404986,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדַּרְדֵּר": { "word": { @@ -402762,7 +405410,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּרוֹר|Noun|sparrow": { "word": { @@ -402825,7 +405474,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּרוֹר|Noun|freedom, liberty (lit.)": { "word": { @@ -402897,7 +405547,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּדְרִיךְ": { "word": { @@ -402965,12 +405616,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b*0~[fXv_=" + "plurals_guid": "b*0~[fXv_=", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּרֶךְ": { "word": { @@ -403064,12 +405718,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "d&z3>DxqMn" + "plurals_guid": "d&z3>DxqMn", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדְרָכָה": { "word": { @@ -403153,12 +405810,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jhD!cxX1|V" + "plurals_guid": "jhD!cxX1|V", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְרָכָה": { "word": { @@ -403226,12 +405886,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JC.P^G^xLu" + "plurals_guid": "JC.P^G^xLu", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דַּרְכּוֹן": { "word": { @@ -403304,7 +405967,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּרֵךְ|Verb|to be tense, alerted; to be cocked (weapon)": { "word": { @@ -403350,23 +406014,7 @@ ], "confusables_guid": "yiFzsg>bj,", "examples": { - "vetted": [ - { - "text": "״ בַּחוּץ שָׁרַק מִישֶׁהוּ בְּמַשְׁרוֹקִית, וְשָׁרוֹן נִדְרְכָה", - "source": "time_tunnel_63", - "match_method": "conjugated" - }, - { - "text": "״ נִדְרַכְתִּי, כִּי פִּתְאוֹם חָשַׁדְתִּי שֶׁהוּא מְנַחֵשׁ אֶת מַחְשְׁבוֹתַי", - "source": "time_tunnel_63", - "match_method": "conjugated" - }, - { - "text": "לִפְנֵי שֶׁהוּא מְנַעֵר אוֹתוֹ, אֲנִי נִדְרָךְ", - "source": "time_tunnel_82", - "match_method": "conjugated" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -403755,7 +406403,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְרִיךְ": { "word": { @@ -404513,7 +407162,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְרֹךְ": { "word": { @@ -404968,7 +407618,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּרֵךְ|Verb|to be stepped upon": { "word": { @@ -405419,7 +408070,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְרִים": { "word": { @@ -405843,7 +408495,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּרוֹם": { "word": { @@ -405916,12 +408569,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F6K4W$M)7z" + "plurals_guid": "F6K4W$M)7z", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּרוֹמָה": { "word": { @@ -405988,7 +408644,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "דְּרוֹמִי": { "word": { @@ -406049,7 +408706,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דּוֹרֵס": { "word": { @@ -406106,11 +408764,12 @@ "nikkud": "דּוֹרְסוֹת", "ktiv_male": "דורסות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּרֵס": { "word": { @@ -406534,7 +409193,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְרֹס": { "word": { @@ -406974,7 +409634,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּרִיסָה": { "word": { @@ -407037,12 +409698,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KFbjQ64y5o" + "plurals_guid": "KFbjQ64y5o", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִדָּרֵשׁ": { "word": { @@ -407494,7 +410158,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דְּרִישָׁה": { "word": { @@ -407585,12 +410250,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yYuRo3`+>9" + "plurals_guid": "yYuRo3`+>9", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּרוּשׁ": { "word": { @@ -407649,11 +410317,12 @@ "nikkud": "דְּרוּשׁוֹת", "ktiv_male": "דרושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְרָשׁ": { "word": { @@ -407718,12 +410387,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D)is9cEH8&" + "plurals_guid": "D)is9cEH8&", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְרָשָׁה": { "word": { @@ -407788,12 +410460,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Qz|.Kc&4G!" + "plurals_guid": "Qz|.Kc&4G!", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדְרֹשׁ": { "word": { @@ -408245,7 +410920,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּשֶׁא": { "word": { @@ -408323,12 +410999,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r)47m-]UzU" + "plurals_guid": "r)47m-]UzU", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְשִׁיא": { "word": { @@ -409054,7 +411733,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְשָׁאָה": { "word": { @@ -409116,12 +411796,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "d+dyQ{OH|" + "plurals_guid": "d+dyQ{OH|", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַשְׁדֵּשׁ": { "word": { @@ -409845,7 +412528,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דִּשּׁוּן": { "word": { @@ -409908,12 +412592,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gfITsYqOFf" + "plurals_guid": "gfITsYqOFf", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֹּשֶׁן": { "word": { @@ -409970,12 +412657,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vzR4/5yolC" + "plurals_guid": "vzR4/5yolC", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דֶּשֶׁן": { "word": { @@ -410038,12 +412728,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדַשֵּׁן": { "word": { @@ -410770,7 +413463,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּת": { "word": { @@ -410846,7 +413540,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "דָּתִי": { "word": { @@ -410915,7 +413610,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַאִם": { "word": { @@ -410974,7 +413670,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהַבְהֵב": { "word": { @@ -411397,7 +414094,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִבְהוּב": { "word": { @@ -411459,12 +414157,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Lp?(w4ZA+%" + "plurals_guid": "Lp?(w4ZA+%", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַהְבִּיל": { "word": { @@ -411908,7 +414609,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָבִיל": { "word": { @@ -411964,11 +414666,12 @@ "nikkud": "הֲבִילוֹת", "ktiv_male": "הבילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶבֶל": { "word": { @@ -412030,12 +414733,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q2" + "plurals_guid": "xz~JEk:x=>", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶגֶה|Noun|sound, phone (phonetics)": { "word": { @@ -413244,12 +415962,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E&U?]bt;65" + "plurals_guid": "E&U?]bt;65", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹגֵן": { "word": { @@ -413330,11 +416051,12 @@ "nikkud": "הוֹגְנוֹת", "ktiv_male": "הוגנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָגוּן": { "word": { @@ -413415,11 +416137,12 @@ "nikkud": "הֲגוּנוֹת", "ktiv_male": "הגונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגֵּר": { "word": { @@ -413842,7 +416565,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲגִירָה": { "word": { @@ -413904,12 +416628,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hI%l|TTFM$" + "plurals_guid": "hI%l|TTFM$", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהַגֵּר": { "word": { @@ -413971,12 +416698,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e%7BY&KR6Y" + "plurals_guid": "e%7BY&KR6Y", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵד": { "word": { @@ -414062,7 +416792,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲדָדִי": { "word": { @@ -414115,7 +416846,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדְהֵד": { "word": { @@ -414865,7 +417597,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲדַס": { "word": { @@ -414924,12 +417657,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wE{?ll[v>p" + "plurals_guid": "wE{?ll[v>p", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲדֹף": { "word": { @@ -415377,7 +418113,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵהָדֵף": { "word": { @@ -415825,7 +418562,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶדֶק": { "word": { @@ -415904,12 +418642,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DAOCF~d%|>" + "plurals_guid": "DAOCF~d%|>", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהַדֵּק": { "word": { @@ -416349,7 +419090,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָדוּק": { "word": { @@ -416406,11 +419148,12 @@ "nikkud": "הֲדוּקוֹת", "ktiv_male": "הדוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדֵּק": { "word": { @@ -417163,7 +419906,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶהֱדָר": { "word": { @@ -417224,11 +419968,12 @@ "nikkud": "נֶהֱדָרוֹת", "ktiv_male": "נהדרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַהֲדוּרָה": { "word": { @@ -417300,7 +420045,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָדָר|Noun|citrus": { "word": { @@ -417370,12 +420116,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L%N~9nE@Gn" + "plurals_guid": "L%N~9nE@Gn", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהַדֵּר": { "word": { @@ -417819,7 +420568,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָדָר|Noun|splendor, glory, majesty (lit.)": { "word": { @@ -417889,12 +420639,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bjD_k$OVUC" + "plurals_guid": "bjD_k$OVUC", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדֵּר": { "word": { @@ -418651,7 +421404,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהֻדָּר": { "word": { @@ -418712,11 +421466,12 @@ "nikkud": "מְהֻדָּרוֹת", "ktiv_male": "מהודרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲדֹר": { "word": { @@ -419092,7 +421847,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוּא": { "word": { @@ -419151,7 +421907,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "תְּהוּדָה": { "word": { @@ -419210,12 +421967,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FQE:rfoKu(" + "plurals_guid": "FQE:rfoKu(", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹד": { "word": { @@ -419295,7 +422055,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְהַוּוּת": { "word": { @@ -419358,12 +422119,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pO~^#$J%j-" + "plurals_guid": "pO~^#$J%j-", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהַוּוֹת": { "word": { @@ -419787,7 +422551,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹוֶה": { "word": { @@ -419841,12 +422606,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C[iJ((p;1K" + "plurals_guid": "C[iJ((p;1K", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹי": { "word": { @@ -419895,7 +422663,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהַוּוֹת": { "word": { @@ -420622,7 +423391,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהוּמָה": { "word": { @@ -420697,12 +423467,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "h~O3%1IG^v" + "plurals_guid": "h~O3%1IG^v", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹן": { "word": { @@ -420773,7 +423546,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַוֵּן": { "word": { @@ -421498,7 +424272,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲזוֹת": { "word": { @@ -421944,7 +424719,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲזִיָּה": { "word": { @@ -422006,12 +424782,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ym|WG:C#lE" + "plurals_guid": "ym|WG:C#lE", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָזוּי": { "word": { @@ -422083,11 +424862,12 @@ "nikkud": "הֲזוּיוֹת", "ktiv_male": "הזויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַחוּצָה": { "word": { @@ -422146,7 +424926,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הִיא": { "word": { @@ -422205,7 +424986,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הִיגְיֶנָה": { "word": { @@ -422259,7 +425041,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵידָד": { "word": { @@ -422308,7 +425091,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הֱיוֹת": { "word": { @@ -422361,7 +425145,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַיּוֹם": { "word": { @@ -422420,7 +425205,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִהְיוֹת": { "word": { @@ -422831,7 +425617,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִהְיָה": { "word": { @@ -423029,7 +425816,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵיכָל": { "word": { @@ -423089,7 +425877,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵיכָן": { "word": { @@ -423143,7 +425932,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הִנֵּה": { "word": { @@ -423202,7 +425992,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הִיסְטוֹרִי": { "word": { @@ -423255,7 +426046,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִיסְטוֹרְיָה": { "word": { @@ -423335,7 +426127,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָכָא": { "word": { @@ -423368,7 +426161,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הֲכִי": { "word": { @@ -423427,7 +426221,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הֶל": { "word": { @@ -423481,7 +426276,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָלְאָה": { "word": { @@ -423540,7 +426336,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הַלְוַאי": { "word": { @@ -423599,7 +426396,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לָלֶכֶת": { "word": { @@ -424056,7 +426854,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלֵּךְ": { "word": { @@ -424503,7 +427302,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהַלֵּךְ": { "word": { @@ -424934,7 +427734,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַהֲלָךְ": { "word": { @@ -425025,12 +427826,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u&(azc:FUQ" + "plurals_guid": "u&(azc:FUQ", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲלִיךְ": { "word": { @@ -425100,12 +427904,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IVz[H2X%^m" + "plurals_guid": "IVz[H2X%^m", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲלִיכָה": { "word": { @@ -425201,12 +428008,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qfNPTJ?~o[" + "plurals_guid": "qfNPTJ?~o[", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲלָכָה": { "word": { @@ -425276,12 +428086,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oKG5QP=WX," + "plurals_guid": "oKG5QP=WX,", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּהֲלִיךְ": { "word": { @@ -425367,12 +428180,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ICv+bhg!1X" + "plurals_guid": "ICv+bhg!1X", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִלּוּךְ": { "word": { @@ -425468,12 +428284,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oOYp[[%6O+" + "plurals_guid": "oOYp[[%6O+", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶכֶת": { "word": { @@ -425558,7 +428377,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּהֲלוּכָה": { "word": { @@ -425654,12 +428474,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k7O&gmcDkJ" + "plurals_guid": "k7O&gmcDkJ", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְהוֹלְלוּת": { "word": { @@ -425729,12 +428552,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GUFH&DT[uB" + "plurals_guid": "GUFH&DT[uB", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהַלֵּל": { "word": { @@ -426165,7 +428991,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹלֵלוּת": { "word": { @@ -426240,7 +429067,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִלָּה": { "word": { @@ -426310,12 +429138,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y5~/)w4Fqw" + "plurals_guid": "y5~/)w4Fqw", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּהִלָּה": { "word": { @@ -426411,12 +429242,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iFEXYPko@%" + "plurals_guid": "iFEXYPko@%", + "mishkal": "tkilla", + "mishkal_hebrew": "תְּקִלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּהִלּוֹת": { "word": { @@ -426477,7 +429311,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹלֵל": { "word": { @@ -426541,11 +429376,12 @@ "nikkud": "הוֹלְלוֹת", "ktiv_male": "הוללות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהוֹלֵל": { "word": { @@ -426976,7 +429812,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלֵּל": { "word": { @@ -427710,7 +430547,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָהֵל": { "word": { @@ -428444,7 +431282,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּהִלִּים": { "word": { @@ -428505,7 +431344,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲלֹם|Verb|to fit, to befit": { "word": { @@ -428945,7 +431785,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲלֹם|Verb|to strike, to daze": { "word": { @@ -428985,18 +431826,7 @@ ], "confusables_guid": "DEB]~URTsK", "examples": { - "vetted": [ - { - "text": "” נִבְהַל עַמִי וְלִבּוֹ הָלַם בַּחֲרָדָה", - "source": "silkworms", - "match_method": "conjugated" - }, - { - "text": "” צָעַק עַמִי וּפָרַץ לֶחָצֵר בְּלֵב הוֹלֵם מֵחֲרָדָה, “אֵיפֹה הַקֻפְסָה", - "source": "silkworms", - "match_method": "conjugated" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -429385,7 +432215,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶלֶם": { "word": { @@ -429441,12 +432272,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uH|D>NRK8g" + "plurals_guid": "uH|D>NRK8g", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵם": { "word": { @@ -429505,7 +432339,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהַמְהֵם": { "word": { @@ -429942,7 +432777,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָמוֹן|Adverb": { "word": { @@ -429992,7 +432828,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הָמוֹן|Noun": { "word": { @@ -430082,7 +432919,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲמוֹנִי": { "word": { @@ -430143,7 +432981,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמּוֹת": { "word": { @@ -430570,7 +433409,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲמוֹת": { "word": { @@ -431006,7 +433846,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲמֻלָּה": { "word": { @@ -431081,12 +433922,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i@/u])Z%o0" + "plurals_guid": "i@/u])Z%o0", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָהֹם": { "word": { @@ -431458,7 +434302,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהַמֵּם": { "word": { @@ -431515,11 +434360,12 @@ "nikkud": "מְהַמְּמוֹת", "ktiv_male": "מהממות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָמוּם": { "word": { @@ -431602,11 +434448,12 @@ "nikkud": "הֲמוּמוֹת", "ktiv_male": "המומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמֵּם": { "word": { @@ -432333,7 +435180,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִמּוּר": { "word": { @@ -432394,12 +435242,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GVX@U)uga>" + "plurals_guid": "GVX@U)uga>", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמֵּר": { "word": { @@ -433141,7 +435992,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵן": { "word": { @@ -433200,7 +436052,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "הֲנָאָה": { "word": { @@ -433285,12 +436138,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C&@(.9vfF~" + "plurals_guid": "C&@(.9vfF~", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהַנְדֵּס": { "word": { @@ -433369,12 +436225,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mG`%tLIQ*`" + "plurals_guid": "mG`%tLIQ*`", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַנְדָּסָה": { "word": { @@ -433431,7 +436290,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְדֵּס": { "word": { @@ -434158,7 +437018,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְהֵן": { "word": { @@ -434908,7 +437769,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֵהָנוֹת": { "word": { @@ -434923,7 +437785,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to enjoy (מן)", + "meaning": "to enjoy", "meaning_raw": "to enjoy (מן)", "audio_url": "https://audio.pealim.com/v0/bj/bjesr7hyooab.mp3", "audio_file": "ליהנות.mp3", @@ -435354,7 +438216,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מן" }, "לְהַסּוֹת": { "word": { @@ -436077,7 +438940,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסֵּס": { "word": { @@ -436826,7 +439690,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְהַפֵּךְ": { "word": { @@ -437279,7 +440144,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הָפִיךְ": { "word": { @@ -437360,11 +440226,12 @@ "nikkud": "הֲפִיכוֹת", "ktiv_male": "הפיכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲפַכְפַּךְ": { "word": { @@ -437429,11 +440296,12 @@ "nikkud": "הֲפַכְפַּכּוֹת", "ktiv_male": "הפכפכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּהֲפוּכָה": { "word": { @@ -437504,12 +440372,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G|ibAu#,X?" + "plurals_guid": "G|ibAu#,X?", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲפִיכָה": { "word": { @@ -437580,12 +440451,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sFsF`i|b+T" + "plurals_guid": "sFsF`i|b+T", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲפֹךְ": { "word": { @@ -437600,7 +440474,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to turn over, to turn into (ל-)", + "meaning": "to turn over, to turn into", "meaning_raw": "to turn over, to turn into (ל-)", "audio_url": "https://audio.pealim.com/v0/1h/1hmsez00h22fd.mp3", "audio_file": "להפוך.mp3", @@ -438043,7 +440917,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לְהֵהָפֵךְ": { "word": { @@ -438058,7 +440933,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to turn over, to become (ל-)", + "meaning": "to turn over, to become", "meaning_raw": "to turn over, to become (ל-)", "audio_url": "https://audio.pealim.com/v0/1p/1pmk6ganksa70.mp3", "audio_file": "להיהפך.mp3", @@ -438475,7 +441350,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "הִפּוּךְ": { "word": { @@ -438562,12 +441438,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wseR0o^7@p" + "plurals_guid": "wseR0o^7@p", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַהְפֵּכָה": { "word": { @@ -438659,12 +441538,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ez:6" + "plurals_guid": "qUbDt3Xa>6", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְבָּלָה": { "word": { @@ -452777,12 +455777,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cbTb}@4w+)" + "plurals_guid": "cbTb}@4w+)", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַבֵּל": { "word": { @@ -453508,7 +456511,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֶבְּרָה": { "word": { @@ -453568,7 +456572,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִגּוּג": { "word": { @@ -453632,12 +456637,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Pfi;eV0:B:" + "plurals_guid": "Pfi;eV0:B:", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַגָּג": { "word": { @@ -453701,12 +456709,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C8@LYk@}XX" + "plurals_guid": "C8@LYk@}XX", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַג": { "word": { @@ -453770,12 +456781,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i-qBqVw#{L~x" + "plurals_guid": "zH>Vw#{L~x", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְחֹל": { "word": { @@ -471689,7 +474803,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to crawl, to cringe, to demean oneself before (בפני)", + "meaning": "to crawl, to cringe, to demean oneself before", "meaning_raw": "to crawl, to cringe, to demean oneself before (בפני)", "audio_url": "https://audio.pealim.com/v0/1r/1rli0hyci310w.mp3", "audio_file": "לזחול.mp3", @@ -472126,7 +475240,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "בפני" }, "זוֹחֵל": { "word": { @@ -472212,12 +475327,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QE(/z5OS*z" + "plurals_guid": "QE(/z5OS*z", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְחֶלֶת": { "word": { @@ -472298,12 +475416,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "msWpyDK[rQ" + "plurals_guid": "msWpyDK[rQ", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָזִיד": { "word": { @@ -473026,7 +476147,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִיו": { "word": { @@ -473081,7 +476203,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִזְדַּיֵּן": { "word": { @@ -473504,7 +476627,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַיִן": { "word": { @@ -473560,12 +476684,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x_Pyl%eY$I" + "plurals_guid": "x_Pyl%eY$I", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַיֵּן": { "word": { @@ -474291,7 +477418,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִיעַ": { "word": { @@ -474346,7 +477474,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִיף": { "word": { @@ -474401,7 +477530,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַיֵּף": { "word": { @@ -475150,7 +478280,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִקִּית": { "word": { @@ -475210,7 +478341,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִירָה": { "word": { @@ -475270,7 +478402,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַיִת": { "word": { @@ -475355,12 +478488,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DFIF_:}|nL" + "plurals_guid": "DFIF_:}|nL", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְכּוֹת": { "word": { @@ -475810,7 +478946,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְכוּת": { "word": { @@ -475903,12 +479040,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E#H{>vl>Fo" + "plurals_guid": "E#H{>vl>Fo", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַכַּאי": { "word": { @@ -475923,7 +479063,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "innocent, acquitted; eligible, entitled to (ל־)", + "meaning": "innocent, acquitted; eligible, entitled to", "meaning_raw": "innocent, acquitted; eligible, entitled to (ל־)", "audio_url": "https://audio.pealim.com/v0/bj/bj4jevulnnz2.mp3", "audio_file": "זכאי.mp3", @@ -475969,11 +479109,12 @@ "nikkud": "זַכָּאִיּוֹת", "ktiv_male": "זכאיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "זִכּוּי": { "word": { @@ -476040,12 +479181,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o8GE=Cj1k7" + "plurals_guid": "o8GE=Cj1k7", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַכּוֹת": { "word": { @@ -476831,7 +479975,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְכִיָּה": { "word": { @@ -476898,12 +480043,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OE4o%o<.kA" + "plurals_guid": "OE4o%o<.kA", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַכְיָן": { "word": { @@ -476970,12 +480118,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pb,0W4}d2d" + "plurals_guid": "pb,0W4}d2d", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָכוּי": { "word": { @@ -477036,11 +480187,12 @@ "nikkud": "זְכוּיוֹת", "ktiv_male": "זכויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַךְ": { "word": { @@ -477097,11 +480249,12 @@ "nikkud": "זַכּוֹת", "ktiv_male": "זכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְזֻכָּךְ": { "word": { @@ -477158,11 +480311,12 @@ "nikkud": "מְזֻכָּכוֹת", "ktiv_male": "מזוככות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַכֵּךְ": { "word": { @@ -477889,7 +481043,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְכוּכִית": { "word": { @@ -477983,7 +481138,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְכֹּר": { "word": { @@ -478444,7 +481600,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִזָּכֵר": { "word": { @@ -478459,7 +481616,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to recall (ב-)", + "meaning": "to recall", "meaning_raw": "to recall (ב-)", "audio_url": "https://audio.pealim.com/v0/o0/o0tjzcrvpkj4.mp3", "audio_file": "להיזכר.mp3", @@ -478905,7 +482062,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "זְכִירָה": { "word": { @@ -478973,12 +482131,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qPEB+n~W9m" + "plurals_guid": "qPEB+n~W9m", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּזְכֹּרֶת": { "word": { @@ -479052,12 +482213,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zd>#%o4Hab" + "plurals_guid": "zd>#%o4Hab", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַזְכָּרָה": { "word": { @@ -479125,12 +482289,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GecZXe/,Zm" + "plurals_guid": "GecZXe/,Zm", + "mishkal": "aktala", + "mishkal_hebrew": "אַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֵכֶר": { "word": { @@ -479220,12 +482387,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gopj/N[(z`" + "plurals_guid": "gopj/N[(z`", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַזְכֶּרֶת": { "word": { @@ -479315,12 +482485,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x_=*EC^F4=" + "plurals_guid": "x_=*EC^F4=", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַזְכָּרָה": { "word": { @@ -479394,12 +482567,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qS9+Z5$$i@" + "plurals_guid": "qS9+Z5$$i@", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִכָּרוֹן": { "word": { @@ -479494,12 +482670,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O`Pf2p7cBH" + "plurals_guid": "O`Pf2p7cBH", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְכָּר": { "word": { @@ -479573,12 +482752,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xDW9`cV7aQ" + "plurals_guid": "xDW9`cV7aQ", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַזְכִּיר": { "word": { @@ -479678,12 +482860,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C}Ipu6]nr=" + "plurals_guid": "C}Ipu6]nr=", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזְכִּיר": { "word": { @@ -480447,7 +483632,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָכוּר": { "word": { @@ -480536,11 +483722,12 @@ "nikkud": "זְכוּרוֹת", "ktiv_male": "זכורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻזְכָּר": { "word": { @@ -480608,11 +483795,12 @@ "nikkud": "מֻזְכָּרוֹת", "ktiv_male": "מוזכרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָכָר": { "word": { @@ -480710,12 +483898,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְלֹג": { "word": { @@ -481163,7 +484354,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַזְלֵג": { "word": { @@ -481224,12 +484416,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gkjkH44dm]" + "plurals_guid": "gkjkH44dm]", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַלְזַל": { "word": { @@ -481284,7 +484479,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְזַלְזֵל": { "word": { @@ -481341,11 +484537,12 @@ "nikkud": "מְזַלְזְלוֹת", "ktiv_male": "מזלזלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַלְזֵל": { "word": { @@ -481361,7 +484558,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to degrade, to disregard (ב-)", + "meaning": "to degrade, to disregard", "meaning_raw": "to degrade, to disregard (ב-)", "audio_url": "https://audio.pealim.com/v0/m2/m2c98jfxvlou.mp3", "audio_file": "לזלזל.mp3", @@ -482072,7 +485269,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "זִלְזוּל": { "word": { @@ -482135,12 +485333,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v7+O{!x809" + "plurals_guid": "v7+O{!x809", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְלֹל": { "word": { @@ -482578,7 +485779,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְלִילָה": { "word": { @@ -482633,12 +485835,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "br7ty%o3m9" + "plurals_guid": "br7ty%o3m9", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזְלִיף": { "word": { @@ -483363,7 +486568,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַזְלֵף": { "word": { @@ -483424,12 +486630,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jy^8i5D6M$" + "plurals_guid": "jy^8i5D6M$", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִמְזוּם": { "word": { @@ -483507,12 +486716,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "El|o_[!uC5" + "plurals_guid": "El|o_[!uC5", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַמְזֵם": { "word": { @@ -483936,7 +487148,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זַמְזָם": { "word": { @@ -483999,12 +487212,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KhDzFwjWWR" + "plurals_guid": "KhDzFwjWWR", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִמָּה": { "word": { @@ -484061,12 +487277,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "j=2keyZyeH" + "plurals_guid": "j=2keyZyeH", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְזִמָּה": { "word": { @@ -484145,12 +487364,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c+vj9a#HSI" + "plurals_guid": "c+vj9a#HSI", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָזִים": { "word": { @@ -484877,7 +488099,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְמֹם": { "word": { @@ -485327,7 +488550,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָמִין": { "word": { @@ -485412,11 +488636,12 @@ "nikkud": "זְמִינוֹת", "ktiv_male": "זמינות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְמִינוּת": { "word": { @@ -485485,7 +488710,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִזְדַּמְּנוּת": { "word": { @@ -485581,12 +488807,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A0Z!C+#)y+" + "plurals_guid": "A0Z!C+#)y+", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַזְמָנָה": { "word": { @@ -485682,12 +488911,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A2w&QncQ,!" + "plurals_guid": "A2w&QncQ,!", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְמַן": { "word": { @@ -485783,12 +489015,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B@..bg" + "plurals_guid": "E1lhDS@f/>", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַקֵּק": { "word": { @@ -505489,7 +508836,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזְקִיק": { "word": { @@ -506221,7 +509569,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זִקָּה": { "word": { @@ -506236,7 +509585,7 @@ ], "pos": "Noun", "pos_hebrew": "שֵׁם עֶצֶם", - "meaning": "affinity, attachment, bond, propensity (ל־)", + "meaning": "affinity, attachment, bond, propensity", "meaning_raw": "affinity, attachment, bond, propensity (ל־)", "audio_url": "https://audio.pealim.com/v0/ab/abqqeb854agr.mp3", "audio_file": "זיקה.mp3", @@ -506289,12 +509638,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NCIQ0bD:XL" + "plurals_guid": "NCIQ0bD:XL", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "הִזְדַּקְּקוּת": { "word": { @@ -506309,7 +509661,7 @@ ], "pos": "Noun", "pos_hebrew": "שֵׁם עֶצֶם", - "meaning": "requirement, need of something (ל־)", + "meaning": "requirement, need of something", "meaning_raw": "requirement, need of something (ל־)", "audio_url": "https://audio.pealim.com/v0/1m/1moy3glhad036.mp3", "audio_file": "הזדקקות.mp3", @@ -506362,12 +509714,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ev6-e{=:Sd" + "plurals_guid": "ev6-e{=:Sd", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְהִזְדַּקֵּק": { "word": { @@ -506382,7 +509737,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to need, to require (ל-)", + "meaning": "to need, to require", "meaning_raw": "to need, to require (ל-)", "audio_url": "https://audio.pealim.com/v0/bm/bm3v75qrr4sg.mp3", "audio_file": "להזדקק.mp3", @@ -506827,7 +510182,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לְהִזְדַּקֵּר": { "word": { @@ -507249,7 +510605,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָקוּר": { "word": { @@ -507304,11 +510661,12 @@ "nikkud": "זְקוּרוֹת", "ktiv_male": "זקורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְזֻרְגָּג": { "word": { @@ -507364,11 +510722,12 @@ "nikkud": "מְזֻרְגָּגוֹת", "ktiv_male": "מזורגגות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַרְגֵּג": { "word": { @@ -508094,7 +511453,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֶרֶד": { "word": { @@ -508153,12 +511513,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y+ys[sWoVY" + "plurals_guid": "y+ys[sWoVY", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזָרֵז": { "word": { @@ -508886,7 +512249,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִזְדָּרֵז": { "word": { @@ -509327,7 +512691,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְרִיזוּת": { "word": { @@ -509390,7 +512755,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָרִיז": { "word": { @@ -509464,11 +512830,12 @@ "nikkud": "זְרִיזוֹת", "ktiv_male": "זריזות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זָרָז": { "word": { @@ -509532,12 +512899,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J>:+/7BONa" + "plurals_guid": "J>:+/7BONa", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְזַרְזֵף": { "word": { @@ -509958,7 +513328,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶזְרָח|Noun|citizen": { "word": { @@ -510036,12 +513407,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FuTg;<(Ny>" + "plurals_guid": "FuTg;<(Ny>", + "mishkal": "ektal", + "mishkal_hebrew": "אֶקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְרֹחַ": { "word": { @@ -510468,7 +513842,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶזְרָחוּת": { "word": { @@ -510555,7 +513930,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְרִיחָה": { "word": { @@ -510642,12 +514018,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H^UD:7>{M1" + "plurals_guid": "H^UD:7>{M1", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְרָח": { "word": { @@ -510723,12 +514102,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i)8#7&rMj(" + "plurals_guid": "i)8#7&rMj(", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְרָחָה": { "word": { @@ -510798,7 +514180,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מִזְרָחִי": { "word": { @@ -510878,7 +514261,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְרוֹת": { "word": { @@ -511321,7 +514705,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִזָּרוֹת": { "word": { @@ -511743,7 +515128,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֶרֶם": { "word": { @@ -511807,12 +515193,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "puZ#u86slT" + "plurals_guid": "puZ#u86slT", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּזְרִים": { "word": { @@ -511876,12 +515265,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h/qe+~NxwC" + "plurals_guid": "h/qe+~NxwC", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְרִימָה": { "word": { @@ -511966,12 +515358,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q!;>!B/4!j" + "plurals_guid": "q!;>!B/4!j", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזְרִים": { "word": { @@ -512699,7 +516094,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְרֹם": { "word": { @@ -513140,7 +516536,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְרָן": { "word": { @@ -513220,12 +516617,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jgDB`=}mw4" + "plurals_guid": "jgDB`=}mw4", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְרֹעַ": { "word": { @@ -513650,7 +517050,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֶרַע": { "word": { @@ -513730,12 +517131,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l;APr*&I02" + "plurals_guid": "l;APr*&I02", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִזָּרֵעַ": { "word": { @@ -514160,7 +517564,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזְרִיעַ": { "word": { @@ -514888,7 +518293,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְרוֹעַ": { "word": { @@ -514978,12 +518384,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "borz<8_?C_" + "plurals_guid": "borz<8_?C_", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִזְרֹק": { "word": { @@ -515434,7 +518843,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִזָּרֵק": { "word": { @@ -515880,7 +519290,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְרָקָה": { "word": { @@ -515944,12 +519355,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kA[.>3bIoJ" + "plurals_guid": "kA[.>3bIoJ", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זְרִיקָה": { "word": { @@ -516013,12 +519427,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G;!1(794He" + "plurals_guid": "G;!1(794He", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזְרִיק": { "word": { @@ -516746,7 +520163,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֵר": { "word": { @@ -516808,12 +520226,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hRIZNXR3d#" + "plurals_guid": "hRIZNXR3d#", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָבֵא": { "word": { @@ -517237,7 +520658,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַבֵּא": { "word": { @@ -517682,7 +521104,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְבִּיא": { "word": { @@ -518435,7 +521858,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְבּוֹא": { "word": { @@ -518524,12 +521948,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xd0NFAk)Wi" + "plurals_guid": "xd0NFAk)Wi", + "mishkal": "maktol", + "mishkal_hebrew": "מַקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְבִּיב": { "word": { @@ -518594,12 +522021,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O8)C>On}sB" + "plurals_guid": "O8)C>On}sB", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָבִיב": { "word": { @@ -518674,11 +522104,12 @@ "nikkud": "חֲבִיבוֹת", "ktiv_male": "חביבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַבֵּב": { "word": { @@ -519423,7 +522854,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְבֹּב": { "word": { @@ -519875,7 +523307,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַבֵּב": { "word": { @@ -519890,7 +523323,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to become endeared, to become beloved (על)", + "meaning": "to become endeared, to become beloved", "meaning_raw": "to become endeared, to become beloved (על)", "audio_url": "https://audio.pealim.com/v0/n8/n8407qy9w7bj.mp3", "audio_file": "להתחבב.mp3", @@ -520301,7 +523734,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "חִבָּה": { "word": { @@ -520376,12 +523810,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c`U=FPfLh!" + "plurals_guid": "c`U=FPfLh!", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַבּוּשׁ": { "word": { @@ -520441,7 +523878,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְבֹּט": { "word": { @@ -520865,7 +524303,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְבֵּט": { "word": { @@ -520928,12 +524367,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rC1KdFW=je" + "plurals_guid": "rC1KdFW=je", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָבֵט": { "word": { @@ -521373,7 +524815,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַבֵּט": { "word": { @@ -521388,7 +524831,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to think over, to deliberate, to ponder (לגבי); to twitch, to jerk about; to wrestle, to tackle (עם)", + "meaning": "to think over, to deliberate, to ponder ; to twitch, to jerk about; to wrestle, to tackle", "meaning_raw": "to think over, to deliberate, to ponder (לגבי); to twitch, to jerk about; to wrestle, to tackle (עם)", "audio_url": "https://audio.pealim.com/v0/1t/1t45iajjmwmfo.mp3", "audio_file": "להתחבט.mp3", @@ -521797,7 +525240,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "לגבי עם" }, "חָבוּי": { "word": { @@ -521850,11 +525294,12 @@ "nikkud": "חֲבוּיוֹת", "ktiv_male": "חבויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָבִית": { "word": { @@ -521940,7 +525385,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲבָל": { "word": { @@ -521955,7 +525401,7 @@ ], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "it's a pity; what a waste (על); bad luck!", + "meaning": "it's a pity; what a waste ; bad luck!", "meaning_raw": "it's a pity; what a waste (על); bad luck!", "audio_url": "https://audio.pealim.com/v0/ai/ai30f13fuqog.mp3", "audio_file": "5334-chaval.mp3", @@ -522009,7 +525455,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "על" }, "חוֹבֵל": { "word": { @@ -522078,12 +525525,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ANt3IgqMWC" + "plurals_guid": "ANt3IgqMWC", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְבּוּלָה": { "word": { @@ -522173,7 +525623,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲבִילָה": { "word": { @@ -522263,12 +525714,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q=,n}L,@OZ" + "plurals_guid": "Q=,n}L,@OZ", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָבוּל": { "word": { @@ -522331,11 +525785,12 @@ "nikkud": "חֲבוּלוֹת", "ktiv_male": "חבולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶבֶל": { "word": { @@ -522426,12 +525881,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GNnca{x:7" + "plurals_guid": "GNnca{x:7", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַבֵּל": { "word": { @@ -522446,7 +525904,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to sabotage, to damage (ב-)", + "meaning": "to sabotage, to damage", "meaning_raw": "to sabotage, to damage (ב-)", "audio_url": "https://audio.pealim.com/v0/c4/c439v5u9ukt1.mp3", "audio_file": "לחבל.mp3", @@ -523164,7 +526622,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהֵחָבֵל": { "word": { @@ -523610,7 +527069,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְבֹּל": { "word": { @@ -524040,7 +527500,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחַבֵּל": { "word": { @@ -524109,12 +527570,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cj199&TAg%" + "plurals_guid": "cj199&TAg%", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִבּוּק": { "word": { @@ -524193,12 +527657,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xIo6=hIWdf" + "plurals_guid": "xIo6=hIWdf", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְבֹּק": { "word": { @@ -524622,7 +528089,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַבֵּק": { "word": { @@ -525375,7 +528843,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַבֵּק": { "word": { @@ -525799,7 +529268,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְבִּיר": { "word": { @@ -526538,7 +530008,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַבֵּר": { "word": { @@ -526995,7 +530466,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲבֵרָה": { "word": { @@ -527097,7 +530569,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְחַבְּרוּת": { "word": { @@ -527166,12 +530639,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q_ldEh-2<@" + "plurals_guid": "q_ldEh-2<@", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְבֶּרֶת": { "word": { @@ -527267,12 +530743,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J?q^k19r>G" + "plurals_guid": "J?q^k19r>G", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְבִּיר": { "word": { @@ -527347,12 +530826,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FW>n8_GN|i" + "plurals_guid": "FW>n8_GN|i", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲבוּרָה": { "word": { @@ -527453,12 +530935,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ug`eVSkT/m" + "plurals_guid": "ug`eVSkT/m", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶבְרָה": { "word": { @@ -527550,12 +531035,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָבֵר": { "word": { @@ -527656,12 +531144,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P=&CN!sx?D" + "plurals_guid": "P=&CN!sx?D", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲבֹר": { "word": { @@ -528113,7 +531604,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶבְרָתִי": { "word": { @@ -528186,7 +531678,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַבֵּר": { "word": { @@ -528951,7 +532444,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִבּוּר": { "word": { @@ -529026,12 +532520,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K~_`R~)noW" + "plurals_guid": "K~_`R~)noW", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְבּוּרָה": { "word": { @@ -529100,12 +532597,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L]gt&PEWc1" + "plurals_guid": "L]gt&PEWc1", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹבֶרֶת": { "word": { @@ -529196,12 +532696,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w)CqVb1L,r" + "plurals_guid": "w)CqVb1L,r", + "mishkal": "kotelet", + "mishkal_hebrew": "קוֹטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַבְרוּתִי": { "word": { @@ -529274,7 +532777,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶבְרַת תְּעוּפָה": { "word": { @@ -529323,7 +532827,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָבֵשׁ": { "word": { @@ -529747,7 +533252,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְבֹּשׁ": { "word": { @@ -530228,7 +533734,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲבִישָׁה": { "word": { @@ -530291,12 +533798,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "c$6]b7u(99" + "plurals_guid": "c$6]b7u(99", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹבֵשׁ": { "word": { @@ -530375,12 +533885,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t`;v:+nq9)" + "plurals_guid": "t`;v:+nq9)", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲבִיתָה": { "word": { @@ -530441,12 +533954,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "/q8{U#`)0" + "plurals_guid": "/q8{U#`)0", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְבָת": { "word": { @@ -530507,12 +534023,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "lQxtJ3^R,;" + "plurals_guid": "lQxtJ3^R,;", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲגִיגָה": { "word": { @@ -530597,12 +534116,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vMCUFlSz@M" + "plurals_guid": "vMCUFlSz@M", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַג": { "word": { @@ -530682,12 +534204,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jt}IQ&vz5B" + "plurals_guid": "jt}IQ&vz5B", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחֹג": { "word": { @@ -531124,7 +534649,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָגֵג": { "word": { @@ -531549,7 +535075,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲגִיגִי": { "word": { @@ -531628,11 +535155,12 @@ "nikkud": "חֲגִיגִיּוֹת", "ktiv_male": "חגיגיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְגֹּר": { "word": { @@ -532080,7 +535608,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲגוֹרָה": { "word": { @@ -532167,12 +535696,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f}Bd9Y,Xss" + "plurals_guid": "f}Bd9Y,Xss", + "mishkal": "ktola", + "mishkal_hebrew": "קְטוֹלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַד|Particle": { "word": { @@ -532205,29 +535737,14 @@ ], "confusables_guid": "H4f?-jGpN0", "examples": { - "vetted": [ - { - "text": "״ הוּא נָעַץ בְּשָׁרוֹן מַבָּט חַד, ״בַּחֲזִית הַזֹּאת הַטוּרְקִים מְחֻסָּלִים", - "source": "time_tunnel_63", - "match_method": "direct" - }, - { - "text": "״ עַכְשָׁיו אֲפִלּוּ גוֹרְדוֹן נָעַץ בָּנוּ מַבָּט חַד", - "source": "time_tunnel_63", - "match_method": "direct" - }, - { - "text": "״ הִיא עָמְדָה מוּל הַקָּצִין וְהִבִּיטָה בּוֹ בְּמַבָּט חַד וּמוֹכִיחַ", - "source": "time_tunnel_70", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "חַדּוּת": { "word": { @@ -532288,7 +535805,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַד|Adjective": { "word": { @@ -532366,11 +535884,12 @@ "nikkud": "חַדּוֹת", "ktiv_male": "חדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַדֵּד": { "word": { @@ -533112,7 +536631,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶדְוָה": { "word": { @@ -533181,12 +536701,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y[GfFBom$25P4" + "plurals_guid": "Ev>om$25P4", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַדְשָׁנִי": { "word": { @@ -536151,7 +539704,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָדְשַׁיִם": { "word": { @@ -536217,7 +539771,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָדְשִׁי": { "word": { @@ -536285,7 +539840,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַדֵּשׁ": { "word": { @@ -537035,7 +540591,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִדּוּשׁ": { "word": { @@ -537105,12 +540662,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mfe)Ofo|f=" + "plurals_guid": "mfe)Ofo|f=", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְדִּישׁ": { "word": { @@ -537180,12 +540740,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sFBd#SQ@9Y" + "plurals_guid": "sFBd#SQ@9Y", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחוּב": { "word": { @@ -537553,7 +541116,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחוּג": { "word": { @@ -537988,7 +541552,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחוּגָה": { "word": { @@ -538050,12 +541615,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t`!^h;$[v~" + "plurals_guid": "t`!^h;$[v~", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָחוֹג": { "word": { @@ -538117,12 +541685,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B7]AIkB-!;" + "plurals_guid": "B7]AIkB-!;", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחוּד": { "word": { @@ -538545,7 +542116,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִידָה": { "word": { @@ -538633,12 +542205,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u-p1UyUB4~" + "plurals_guid": "u-p1UyUB4~", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִידוֹן": { "word": { @@ -538721,7 +542296,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַוָּה": { "word": { @@ -538781,7 +542357,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָחוֹז": { "word": { @@ -538840,12 +542417,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hP@RFF62C8" + "plurals_guid": "hP@RFF62C8", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹחַ": { "word": { @@ -538900,7 +542480,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוּט": { "word": { @@ -538987,7 +542568,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַוֵּט": { "word": { @@ -539712,7 +543294,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲוָיָה": { "word": { @@ -539798,12 +543381,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D]+P@.E0Ex" + "plurals_guid": "D]+P@.E0Ex", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחֲוֶה": { "word": { @@ -539871,12 +543457,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EnKq^4}F)S" + "plurals_guid": "EnKq^4}F)S", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲווֹת": { "word": { @@ -540302,7 +543891,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶחְוָה": { "word": { @@ -540370,12 +543960,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲווֹת": { "word": { @@ -540804,7 +544397,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַוּוֹת": { "word": { @@ -541536,7 +545130,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחוּל": { "word": { @@ -541960,7 +545555,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחוֹלֵל|Verb|to occur, to take place": { "word": { @@ -542410,7 +546006,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָחִיל": { "word": { @@ -543168,7 +546765,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחוֹלֵל|Verb|to dance (archaic)": { "word": { @@ -543595,7 +547193,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹל": { "word": { @@ -543681,7 +547280,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוּם": { "word": { @@ -543751,7 +547351,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹמָה": { "word": { @@ -543832,7 +547433,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוּמוּס": { "word": { @@ -543886,7 +547488,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחוּס": { "word": { @@ -543901,7 +547504,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to spare, to pity (על)", + "meaning": "to spare, to pity", "meaning_raw": "to spare, to pity (על)", "audio_url": "https://audio.pealim.com/v0/1r/1rr5cj76ck2je.mp3", "audio_file": "לחוס.mp3", @@ -544306,7 +547909,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "חוֹף": { "word": { @@ -544392,7 +547996,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִיצוֹן": { "word": { @@ -544452,7 +548057,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִיצוֹנִי": { "word": { @@ -544528,7 +548134,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוּץ": { "word": { @@ -544610,7 +548217,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַוֵּר": { "word": { @@ -545034,7 +548642,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲוִיר": { "word": { @@ -545761,7 +549370,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִוֵּר": { "word": { @@ -545818,11 +549428,12 @@ "nikkud": "חִוְּרוֹת", "ktiv_male": "חיוורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִוָּרוֹן": { "word": { @@ -545879,12 +549490,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P6@`n*}^/=" + "plurals_guid": "P6@`n*}^/=", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחוּשׁ": { "word": { @@ -545899,7 +549513,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to sense, to feel (ב-); to hurry", + "meaning": "to sense, to feel ; to hurry", "meaning_raw": "to sense, to feel (ב-); to hurry", "audio_url": "https://audio.pealim.com/v0/ea/ea4yjh3gqrrv.mp3", "audio_file": "לחוש.mp3", @@ -546337,7 +549951,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהָחִישׁ": { "word": { @@ -547083,7 +550698,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּחוּשָׁה": { "word": { @@ -547175,12 +550791,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pf?JmA4XqH" + "plurals_guid": "pf?JmA4XqH", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּחָשׁ": { "word": { @@ -547240,11 +550859,12 @@ "nikkud": "מוּחָשׁוֹת", "ktiv_male": "מוחשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּחָשִׁי": { "word": { @@ -547308,7 +550928,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּחוּשָׁתִי": { "word": { @@ -547372,7 +550993,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוּשׁ": { "word": { @@ -547454,7 +551076,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָזֶה": { "word": { @@ -547514,7 +551137,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחֲזִית": { "word": { @@ -547585,12 +551209,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "M5V/P#c|do" + "plurals_guid": "M5V/P#c|do", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲזוֹת": { "word": { @@ -548022,7 +551649,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַזּוֹת": { "word": { @@ -548037,7 +551665,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to impersonate (ל-)", + "meaning": "to impersonate", "meaning_raw": "to impersonate (ל-)", "audio_url": "https://audio.pealim.com/v0/10/10zvtqtcmrwre.mp3", "audio_file": "להתחזות.mp3", @@ -548470,7 +552098,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "חֲזִית": { "word": { @@ -548562,7 +552191,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְחַזּוּת": { "word": { @@ -548633,12 +552263,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hLI_WhnF>O" + "plurals_guid": "hLI_WhnF>O", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחֲזֶה": { "word": { @@ -548725,12 +552358,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lYyW)0rr2^" + "plurals_guid": "lYyW)0rr2^", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹזֶה|Noun|contract, agreement": { "word": { @@ -548804,12 +552440,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xF3Z|OZ4Ho" + "plurals_guid": "xF3Z|OZ4Ho", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹזֶה|Noun|prophet, seer": { "word": { @@ -548883,12 +552522,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D>Zi)>Nz-L" + "plurals_guid": "D>Zi)>Nz-L", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָזוֹן": { "word": { @@ -548964,7 +552606,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָזוֹת": { "word": { @@ -549396,7 +553039,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחֲזַאי": { "word": { @@ -549472,7 +553116,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִזָּיוֹן": { "word": { @@ -549559,12 +553204,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u]:)Oci2hu" + "plurals_guid": "u]:)Oci2hu", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲזִיָּה": { "word": { @@ -549624,7 +553272,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲזִיר": { "word": { @@ -549700,7 +553349,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲזִיר בָּר": { "word": { @@ -549749,7 +553399,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַזָּן": { "word": { @@ -549808,12 +553459,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L97#_N_nDw" + "plurals_guid": "L97#_N_nDw", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַחְזָקָה": { "word": { @@ -549884,12 +553538,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D8a(ye3.a+" + "plurals_guid": "D8a(ye3.a+", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַזֵּק": { "word": { @@ -550337,7 +553994,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְזִיק": { "word": { @@ -551098,7 +554756,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִזּוּק": { "word": { @@ -551169,12 +554828,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ORb+X>^q5Y" + "plurals_guid": "ORb+X>^q5Y", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲזֹק": { "word": { @@ -551622,7 +555284,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹזֶק": { "word": { @@ -551687,12 +555350,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IIA=7r80i0" + "plurals_guid": "IIA=7r80i0", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָזָק": { "word": { @@ -551783,11 +555449,12 @@ "nikkud": "חֲזָקוֹת", "ktiv_male": "חזקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲזָקָה": { "word": { @@ -551880,12 +555547,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": ":EEm(RLh," + "plurals_guid": ":EEm(RLh,", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶזְקָה": { "word": { @@ -551975,12 +555645,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַזֵּק": { "word": { @@ -552731,7 +556404,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַחְזָקָה": { "word": { @@ -552802,12 +556476,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tHTYrPPOT]" + "plurals_guid": "tHTYrPPOT]", + "mishkal": "aktala", + "mishkal_hebrew": "אַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְזוּקָה": { "word": { @@ -552878,12 +556555,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NIxe1c/>D+" + "plurals_guid": "NIxe1c/>D+", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִזּוּר|Noun|reduction (chemistry)": { "word": { @@ -552956,12 +556636,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q^-Q?thHQ~" + "plurals_guid": "q^-Q?thHQ~", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִזּוּר|Noun|courting, wooing": { "word": { @@ -553034,12 +556717,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l!l3w]?&/!" + "plurals_guid": "l!l3w]?&/!", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲזִיר": { "word": { @@ -553789,7 +557475,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶחְזֵר": { "word": { @@ -553859,12 +557546,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i^>MIe=+p:" + "plurals_guid": "i^>MIe=+p:", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְזוֹר": { "word": { @@ -553934,12 +557624,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲזָרָה": { "word": { @@ -554035,12 +557728,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hIQp]gSYy4" + "plurals_guid": "hIQp]gSYy4", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲזֹר": { "word": { @@ -554055,7 +557751,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to return (intransitive); to repeat (על)", + "meaning": "to return (intransitive); to repeat", "meaning_raw": "to return (intransitive); to repeat (על)", "audio_url": "https://audio.pealim.com/v0/1n/1naf4t7cdzgcg.mp3", "audio_file": "לחזור.mp3", @@ -554497,7 +558193,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְחַזֵּר": { "word": { @@ -554512,7 +558209,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to court, to woo someone (אחרי)", + "meaning": "to court, to woo someone", "meaning_raw": "to court, to woo someone (אחרי)", "audio_url": "https://audio.pealim.com/v0/ht/ht62da29m7ma.mp3", "audio_file": "לחזר.mp3", @@ -555247,7 +558944,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אחרי" }, "לְהִתְחַזֵּר": { "word": { @@ -555262,7 +558960,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to hog, to consume greedily (על)", + "meaning": "to hog, to consume greedily", "meaning_raw": "to hog, to consume greedily (על)", "audio_url": "https://audio.pealim.com/v0/1m/1mu3kcvhrukf9.mp3", "audio_file": "להתחזר.mp3", @@ -555678,7 +559376,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "חַזֶּרֶת|Noun|mumps (medicine)": { "word": { @@ -555726,30 +559425,7 @@ ], "confusables_guid": "w[i)#VSBx/", "examples": { - "vetted": [ - { - "text": "\"הָיָה עָדִיף לוּ חָזַרְתָּ הַיּוֹם בְּדִיּוּק בְּאוֹתָהּ שָׁעָה שֶׁבָּאתָ אֶתְמוֹל,\" אָמַר הַשּׁוּעָל", - "source": "הנסיך הקטן", - "vetted": true - }, - { - "text": "'' הוּא עוֹנֶה, \"בֶּאֱמֶת חָזַרְתָּ אָחוֹרָה בַּזְּמַן", - "source": "מנהרת הזמן 82", - "vetted": true - }, - { - "text": "חָזַרְתָּ אֶל מְקוֹם הַנְּחִיתָה שֶׁלְּךָ", - "source": "הנסיך הקטן", - "vetted": true - } - ], - "cloze": { - "text": "\"הָיָה עָדִיף לוּ חָזַרְתָּ הַיּוֹם בְּדִיּוּק בְּאוֹתָהּ שָׁעָה שֶׁבָּאתָ אֶתְמוֹל,\" אָמַר הַשּׁוּעָל", - "cloze_word_start": 18, - "cloze_word_end": 27, - "cloze_hint": null, - "cloze_guid": "CPXJ}K`wIW" - }, + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -555771,12 +559447,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qg3Iqr;Rd6" + "plurals_guid": "qg3Iqr;Rd6", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַזֶּרֶת|Noun|horseradish": { "word": { @@ -555869,12 +559548,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J0qqr@FR.Q" + "plurals_guid": "J0qqr@FR.Q", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲטִיא": { "word": { @@ -556602,7 +560284,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲטֹא": { "word": { @@ -557027,7 +560710,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַטֵּא": { "word": { @@ -557452,7 +561136,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַטֵּא": { "word": { @@ -558180,7 +561865,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶטְא": { "word": { @@ -558244,7 +561930,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְטֹב": { "word": { @@ -558668,7 +562355,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲטִיבָה|Noun|department, division (of organization); middle school; brigade (military)": { "word": { @@ -558734,12 +562422,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g3Gt.F!7g8" + "plurals_guid": "g3Gt.F!7g8", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲטִיבָה|Noun|tree felling": { "word": { @@ -558814,12 +562505,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "l41@oJN!ZE" + "plurals_guid": "l41@oJN!ZE", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָטֵב": { "word": { @@ -559243,7 +562937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַטֵּט": { "word": { @@ -559985,7 +563680,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶט": { "word": { @@ -560047,12 +563743,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y(KLOe6I]V" + "plurals_guid": "y(KLOe6I]V", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָטָט": { "word": { @@ -560114,12 +563813,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j@(LLK0/ZM" + "plurals_guid": "j@(LLK0/ZM", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְטִיף": { "word": { @@ -560134,7 +563836,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to smack (ל-)", + "meaning": "to smack", "meaning_raw": "to smack (ל-)", "audio_url": "https://audio.pealim.com/v0/14/14ibj4h1q0zeh.mp3", "audio_file": "להחטיף.mp3", @@ -560848,7 +564550,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "חָטוּף": { "word": { @@ -560907,11 +564610,12 @@ "nikkud": "חֲטוּפוֹת", "ktiv_male": "חטופות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲטִיפָה": { "word": { @@ -560992,12 +564696,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y2^{LGAne7Mh!" + "plurals_guid": "ll>Ane7Mh!", + "mishkal": "tkilla", + "mishkal_hebrew": "תְּקִלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַיִּים": { "word": { @@ -567101,12 +570848,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "PM0F/ZY<}" + "plurals_guid": "rQymLj^L>}", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶמְאָה": { "word": { @@ -599080,12 +603060,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A@iOHZ}Q<1" + "plurals_guid": "A@iOHZ}Q<1", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְדָנוּת": { "word": { @@ -599156,7 +603139,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמוּד": { "word": { @@ -599232,11 +603216,12 @@ "nikkud": "חֲמוּדוֹת", "ktiv_male": "חמודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶמְדָּה": { "word": { @@ -599296,12 +603281,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ucf23-gxS>" + "plurals_guid": "ucf23-gxS>", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶחְמָד": { "word": { @@ -599387,11 +603375,12 @@ "nikkud": "נֶחְמָדוֹת", "ktiv_male": "נחמדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְמֹד": { "word": { @@ -599818,7 +603807,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְדָן": { "word": { @@ -599884,12 +603874,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M<*C@,@%b1" + "plurals_guid": "M<*C@,@%b1", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְמָד": { "word": { @@ -599955,12 +603948,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Oy7/~vqAy=" + "plurals_guid": "Oy7/~vqAy=", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמוּלָה": { "word": { @@ -600020,7 +604016,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמוֹת": { "word": { @@ -600080,7 +604077,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶמְלָה": { "word": { @@ -600135,12 +604133,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G:h%0+$uoa" + "plurals_guid": "G:h%0+$uoa", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְמֹל": { "word": { @@ -600155,7 +604156,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to pity (על)", + "meaning": "to pity", "meaning_raw": "to pity (על)", "audio_url": "https://audio.pealim.com/v0/1t/1tkcul8f481l0.mp3", "audio_file": "לחמול.mp3", @@ -600562,7 +604563,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "חָמִים": { "word": { @@ -600625,11 +604627,12 @@ "nikkud": "חֲמִימוֹת", "ktiv_male": "חמימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹם": { "word": { @@ -600714,12 +604717,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְחַמְּמוּת": { "word": { @@ -600782,12 +604788,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "AXk$nm&1xO" + "plurals_guid": "AXk$nm&1xO", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַם": { "word": { @@ -600872,11 +604881,12 @@ "nikkud": "חַמּוֹת", "ktiv_male": "חמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמָּנִית": { "word": { @@ -600945,7 +604955,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמָּה": { "word": { @@ -601029,12 +605040,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x:#>-jbnyT" + "plurals_guid": "x:#>-jbnyT", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲמָמָה": { "word": { @@ -601124,12 +605138,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KJ$5Dv._7K" + "plurals_guid": "KJ$5Dv._7K", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַמֵּם": { "word": { @@ -601878,7 +605895,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִמּוּם": { "word": { @@ -601947,12 +605965,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nYZx*H-hsc" + "plurals_guid": "nYZx*H-hsc", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַמֵּם": { "word": { @@ -602382,7 +606403,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְסָנוּת": { "word": { @@ -602451,7 +606473,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְסָן": { "word": { @@ -602515,12 +606538,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o.;Cqc)tV:" + "plurals_guid": "o.;Cqc)tV:", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמוֹס": { "word": { @@ -602600,12 +606626,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QJ56G8@{GH" + "plurals_guid": "QJ56G8@{GH", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְמֹס": { "word": { @@ -603030,7 +607059,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמָס": { "word": { @@ -603088,12 +607118,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ikr:xg1zn," + "plurals_guid": "Ikr:xg1zn,", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲמִיץ": { "word": { @@ -603826,7 +607859,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְמֹץ": { "word": { @@ -604256,7 +608290,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹמֶץ": { "word": { @@ -604325,12 +608360,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lwxQ<0RO}1" + "plurals_guid": "lwxQ<0RO}1", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻמְצָה": { "word": { @@ -604399,12 +608437,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ivYWN.,E=X" + "plurals_guid": "ivYWN.,E=X", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְמָץ": { "word": { @@ -604473,12 +608514,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OG6gD-F2/," + "plurals_guid": "OG6gD-F2/,", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְצָן": { "word": { @@ -604541,12 +608585,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r7J.=sZw(F" + "plurals_guid": "r7J.=sZw(F", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמוּץ": { "word": { @@ -604625,11 +608672,12 @@ "nikkud": "חֲמוּצוֹת", "ktiv_male": "חמוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְמֹצֶת": { "word": { @@ -604698,12 +608746,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g]^/l?9VTa" + "plurals_guid": "g]^/l?9VTa", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַמֵּץ": { "word": { @@ -605133,7 +609184,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲמִיצָה": { "word": { @@ -605202,12 +609254,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "O>oVf2$+jy" + "plurals_guid": "O>oVf2$+jy", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִמְצוּן": { "word": { @@ -605270,12 +609325,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h~V8=Z~pbm" + "plurals_guid": "h~V8=Z~pbm", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַמְצֵן": { "word": { @@ -605699,7 +609757,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַמְצֵן": { "word": { @@ -606426,7 +610485,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַמֵּק": { "word": { @@ -606877,7 +610937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲמַקְמַק": { "word": { @@ -606935,11 +610996,12 @@ "nikkud": "חֲמַקְמַקּוֹת", "ktiv_male": "חמקמקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְקָן": { "word": { @@ -607003,12 +611065,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h1(!/cKo3@" + "plurals_guid": "h1(!/cKo3@", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְמֹק": { "word": { @@ -607449,7 +611514,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַמְקָנִי": { "word": { @@ -607511,7 +611577,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְמִיר": { "word": { @@ -608258,7 +612325,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲמַרְמֹרֶת": { "word": { @@ -608325,12 +612393,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b:/YtTrxr`" + "plurals_guid": "b:/YtTrxr`", + "mishkal": "ktaltolet", + "mishkal_hebrew": "קְטַלְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹמֶר": { "word": { @@ -608423,12 +612494,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": ":D[D*PcuI" + "plurals_guid": ":D[D*PcuI", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵמָר": { "word": { @@ -608494,7 +612568,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻמְרָה": { "word": { @@ -608577,12 +612652,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u0T&T51kGe" + "plurals_guid": "u0T&T51kGe", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמְרָה": { "word": { @@ -608646,12 +612724,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמוּר": { "word": { @@ -608731,11 +612812,12 @@ "nikkud": "חֲמוּרוֹת", "ktiv_male": "חמורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲמוֹר": { "word": { @@ -608819,12 +612901,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v-M:_EQd8K" + "plurals_guid": "v-M:_EQd8K", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַמֵּשׁ": { "word": { @@ -609252,7 +613337,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹמֶשׁ": { "word": { @@ -609319,12 +613405,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hu,Yl1[t`C" + "plurals_guid": "Hu,Yl1[t`C", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲמִישִׁי": { "word": { @@ -609411,11 +613500,12 @@ "nikkud": "חֲמִישִׁיּוֹת", "ktiv_male": "חמישיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמוּשׁ": { "word": { @@ -609476,11 +613566,12 @@ "nikkud": "חֲמוּשׁוֹת", "ktiv_male": "חמושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְמֹשֶׁת": { "word": { @@ -609541,12 +613632,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P-R=[!-bkX" + "plurals_guid": "P-R=[!-bkX", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִמּוּשׁ": { "word": { @@ -609613,12 +613707,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b!p>4hIS13" + "plurals_guid": "b!p>4hIS13", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַמֵּשׁ": { "word": { @@ -610349,7 +614446,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָמֵש": { "word": { @@ -610420,7 +614518,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְחַנְחֵן": { "word": { @@ -610436,7 +614535,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to be a coquette (with someone) (אל)", + "meaning": "to be a coquette (with someone)", "meaning_raw": "to be a coquette (with someone) (אל)", "audio_url": "https://audio.pealim.com/v0/lx/lxo7bm73vo7c.mp3", "audio_file": "להתחנחן.mp3", @@ -610841,7 +614940,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אל" }, "לַחְנֹט": { "word": { @@ -611264,7 +615364,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָנֵט": { "word": { @@ -611687,7 +615788,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִטָּה": { "word": { @@ -611775,12 +615877,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eHbn@i@|?5" + "plurals_guid": "eHbn@i@|?5", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲנוֹת": { "word": { @@ -612224,7 +616329,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲנוֹת": { "word": { @@ -612955,7 +617061,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲנִיָּה": { "word": { @@ -613022,12 +617129,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "LM#=Jn,bV~" + "plurals_guid": "LM#=Jn,bV~", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחֲנֶה": { "word": { @@ -613120,12 +617230,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dXd#~y[>df" + "plurals_guid": "dXd#~y[>df", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲנוּת": { "word": { @@ -613208,12 +617321,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "l!E>]fsck(" + "plurals_guid": "l!E>]fsck(", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחֲנָה": { "word": { @@ -613280,12 +617396,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QddoGG?JT5" + "plurals_guid": "QddoGG?JT5", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַנְיוֹן": { "word": { @@ -613368,12 +617487,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v.^FRoHbRb" + "plurals_guid": "v.^FRoHbRb", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲנָיָה": { "word": { @@ -613461,12 +617583,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָנֵךְ": { "word": { @@ -613895,7 +618020,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִנּוּךְ": { "word": { @@ -613989,12 +618115,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "W*!&I{l6," + "plurals_guid": "W*!&I{l6,", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַנֵּךְ": { "word": { @@ -614423,7 +618552,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָנִיךְ": { "word": { @@ -614491,12 +618621,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HviE>wjT!J" + "plurals_guid": "HviE>wjT!J", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲנֻכָּה": { "word": { @@ -614558,12 +618691,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Qo[}>1N#[8" + "plurals_guid": "Qo[}>1N#[8", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִנּוּכִי": { "word": { @@ -614629,7 +618765,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַנֵּךְ": { "word": { @@ -615361,7 +619498,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲנֹךְ": { "word": { @@ -615790,7 +619928,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲנֻכִּיָּה": { "word": { @@ -615889,7 +620028,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַנֵּן": { "word": { @@ -616345,7 +620485,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחֻנָּן": { "word": { @@ -616710,7 +620851,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַנּוּן": { "word": { @@ -616776,11 +620918,12 @@ "nikkud": "חַנּוּנוֹת", "ktiv_male": "חנונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חְנוּן": { "word": { @@ -616852,7 +620995,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחֹן": { "word": { @@ -617313,7 +621457,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחֵן": { "word": { @@ -617328,7 +621473,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be endowed (with something) (ב־)", + "meaning": "to be endowed (with something)", "meaning_raw": "to be endowed (with something) (ב־)", "audio_url": "https://audio.pealim.com/v0/1x/1xo5bejibdpyn.mp3", "audio_file": "להיחן.mp3", @@ -617743,7 +621888,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "מְחוֹנָן": { "word": { @@ -617809,11 +621955,12 @@ "nikkud": "מְחוֹנָנוֹת", "ktiv_male": "מחוננות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵן": { "word": { @@ -617902,12 +622049,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eGA2/x1Gw," + "plurals_guid": "eGA2/x1Gw,", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִנָּם": { "word": { @@ -617954,7 +622104,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "חִנָּמִי": { "word": { @@ -618021,7 +622172,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַנֵּף": { "word": { @@ -618444,7 +622596,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲנִיף": { "word": { @@ -619170,7 +623323,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַנְפָן": { "word": { @@ -619232,12 +623386,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tCT" + "plurals_guid": "B!Vz5Rub>T", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָסֵר": { "word": { @@ -630149,11 +634393,12 @@ "nikkud": "חֲסֵרוֹת", "ktiv_male": "חסרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִסָּרוֹן": { "word": { @@ -630220,12 +634465,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hXs0@)-Teg" + "plurals_guid": "hXs0@)-Teg", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹסֶר": { "word": { @@ -630312,12 +634560,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BNp}*_edz(" + "plurals_guid": "BNp}*_edz(", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְסוֹר": { "word": { @@ -630400,12 +634651,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "SBZ1lBQUi" + "plurals_guid": "SBZ1lBQUi", + "mishkal": "maktol", + "mishkal_hebrew": "מַקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַסֵּר": { "word": { @@ -631136,7 +635390,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲסַר רֶסֶן": { "word": { @@ -631189,7 +635444,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲסַר תּוֹעֶלֶת": { "word": { @@ -631242,7 +635498,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָפֵז": { "word": { @@ -631690,7 +635947,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָפוּז": { "word": { @@ -631745,11 +636003,12 @@ "nikkud": "חֲפוּזוֹת", "ktiv_male": "חפוזות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַפּוֹת": { "word": { @@ -632474,7 +636733,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִפּוּי": { "word": { @@ -632535,12 +636795,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fTU&8>jVO@" + "plurals_guid": "fTU&8>jVO@", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹפֶן": { "word": { @@ -632601,12 +636864,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D[s:vw7#N&" + "plurals_guid": "D[s:vw7#N&", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְפֹּן": { "word": { @@ -633049,7 +637315,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲפִיסָה": { "word": { @@ -633124,12 +637391,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hqTLvqwD#z" + "plurals_guid": "hqTLvqwD#z", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחֹף": { "word": { @@ -633505,7 +637775,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחוֹפֵף": { "word": { @@ -634236,7 +638507,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחָפֵף": { "word": { @@ -634680,7 +638952,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְפֹּף|Verb|to wash (hair)": { "word": { @@ -635111,7 +639384,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְפֹּף|Verb|to correspond, to match; to cover, to protect (lit.)": { "word": { @@ -635542,7 +639816,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻפָּה": { "word": { @@ -635609,12 +639884,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P;>$_z9*xQ" + "plurals_guid": "P;>$_z9*xQ", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲפִיפָה|Noun|overlap, congruence (geometry); handing over (duties, job etc.)": { "word": { @@ -635684,12 +639962,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g8R#cc*;w-" + "plurals_guid": "g8R#cc*;w-", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲפִיפָה|Noun|washing hair": { "word": { @@ -635759,12 +640040,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pB05/<5xJi" + "plurals_guid": "pB05/<5xJi", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְפֹּץ": { "word": { @@ -635779,7 +640063,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to wish, to want something (ב-)", + "meaning": "to wish, to want something", "meaning_raw": "to wish, to want something (ב-)", "audio_url": "https://audio.pealim.com/v0/me/mepnjlkqdjez.mp3", "audio_file": "לחפוץ.mp3", @@ -636186,7 +640470,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "חֵפֶץ|Noun|desire, wish (lit.)": { "word": { @@ -636269,12 +640554,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m:`W1_y%#h" + "plurals_guid": "m:`W1_y%#h", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵפֶץ|Noun|object, article": { "word": { @@ -636312,23 +640600,7 @@ ], "confusables_guid": "cJMEtZ[A3z", "examples": { - "vetted": [ - { - "text": "חֵפֶץ לֹא מְזֹהֶה נָפַל כַּנִּרְאֶה עַל הַקַּרְקַע", - "source": "time_tunnel_78", - "match_method": "direct" - }, - { - "text": "לָמָּה רַבִּי מַיְמוֹן חוֹשֵׁד שֶׁרַבִּי יוֹסֵף הִתְכַּוֵן לִגְנוֹב מִמֶּנּוּ חֲפָצִים יְקָרִים", - "source": "time_tunnel_78", - "match_method": "inflected" - }, - { - "text": "לָכֵן הֵם הֶחְבִּיאוּ כָּל חֵפֶץ שֶׁמּוֹכִיחַ עַל קֶשֶׁר כָּלְשֶׁהוּ לַיַּהֲדוּת", - "source": "time_tunnel_78", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -636356,12 +640628,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kZEt,)l#uCe" + "plurals_guid": "uz8Jn&>uCe", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְצֹב": { "word": { @@ -639902,7 +644202,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְצָב": { "word": { @@ -639968,12 +644269,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M!Y4{e~JRT" + "plurals_guid": "M!Y4{e~JRT", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָצָב": { "word": { @@ -640039,12 +644343,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ai}_.pKdCA" + "plurals_guid": "Ai}_.pKdCA", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲצוּבָה": { "word": { @@ -640110,12 +644417,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PCRm/fC1.u" + "plurals_guid": "PCRm/fC1.u", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַצֶּבֶת": { "word": { @@ -640181,12 +644491,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zR#^}yi!lq" + "plurals_guid": "zR#^}yi!lq", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָצֵב": { "word": { @@ -640613,7 +644926,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חוֹצֵב": { "word": { @@ -640679,12 +644993,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N=#n-}Td/}" + "plurals_guid": "N=#n-}Td/}", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲצוֹצְרָה": { "word": { @@ -640765,7 +645082,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲצוֹת": { "word": { @@ -641218,7 +645536,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחֲצִית": { "word": { @@ -641289,7 +645608,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲצָאִית": { "word": { @@ -641381,7 +645701,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָצוֹת": { "word": { @@ -641808,7 +646129,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶצִי": { "word": { @@ -641900,12 +646222,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nX0=~h$kTz" + "plurals_guid": "nX0=~h$kTz", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַחַץ": { "word": { @@ -641962,7 +646287,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲצוֹת": { "word": { @@ -642027,7 +646353,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָצִיל": { "word": { @@ -642088,12 +646415,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kd]So7(09A" + "plurals_guid": "kd]So7(09A", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְצֶלֶת": { "word": { @@ -642170,12 +646500,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N%D~UK+kp>" + "plurals_guid": "N%D~UK+kp>", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְצִין": { "word": { @@ -642597,7 +646930,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻחְצָן": { "word": { @@ -642652,11 +646986,12 @@ "nikkud": "מֻחְצָנוֹת", "ktiv_male": "מוחצנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַצֵּף": { "word": { @@ -643079,7 +647414,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻצְפָּה": { "word": { @@ -643151,12 +647487,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EjG1)#_vuv" + "plurals_guid": "EjG1)#_vuv", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָצוּף": { "word": { @@ -643228,11 +647567,12 @@ "nikkud": "חֲצוּפוֹת", "ktiv_male": "חצופות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵץ": { "word": { @@ -643321,12 +647661,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f~6xg$~JgH" + "plurals_guid": "f~6xg$~JgH", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחִצָּה": { "word": { @@ -643389,12 +647732,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hzVhS.e*HB" + "plurals_guid": "hzVhS.e*HB", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָצָץ": { "word": { @@ -643457,12 +647803,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jedwAlCgm~" + "plurals_guid": "jedwAlCgm~", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְצֹץ": { "word": { @@ -643886,7 +648235,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַצְצֵר": { "word": { @@ -644307,7 +648657,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָצֵר": { "word": { @@ -644384,12 +648735,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hNnS}dT)bE" + "plurals_guid": "hNnS}dT)bE", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָצִיר": { "word": { @@ -644466,12 +648820,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n(oj{SIJ&:" + "plurals_guid": "n(oj{SIJ&:", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִקּוּי": { "word": { @@ -644534,12 +648891,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N`*SEykiRc" + "plurals_guid": "N`*SEykiRc", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַקְיָן": { "word": { @@ -644602,12 +648962,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cyz;Dj4SF:" + "plurals_guid": "cyz;Dj4SF:", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַקּוֹת": { "word": { @@ -644622,7 +648985,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to investigate (אחרי)", + "meaning": "to investigate", "meaning_raw": "to investigate (אחרי)", "audio_url": "https://audio.pealim.com/v0/9b/9b86e37ssx5y.mp3", "audio_file": "להתחקות.mp3", @@ -645031,7 +649394,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אחרי" }, "לְחַקּוֹת": { "word": { @@ -645046,7 +649410,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to imitate, to simulate (את)", + "meaning": "to imitate, to simulate", "meaning_raw": "to imitate, to simulate (את)", "audio_url": "https://audio.pealim.com/v0/1w/1w3zr7whqukjr.mp3", "audio_file": "לחקות.mp3", @@ -645779,7 +650143,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "חַקְלָאוּת": { "word": { @@ -645855,7 +650220,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַקְלַאי": { "word": { @@ -645918,7 +650284,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַקְלָאִי": { "word": { @@ -645988,7 +650355,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹקֶן": { "word": { @@ -646047,12 +650415,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x<~;&Q2Q5e" + "plurals_guid": "x<~;&Q2Q5e", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻקָּה": { "word": { @@ -646120,12 +650491,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L]{QYm[_N4" + "plurals_guid": "L]{QYm[_N4", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחוֹקֵק": { "word": { @@ -646857,7 +651231,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּחִקָּה|Noun|legislation": { "word": { @@ -646925,12 +651300,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H<+`{(Lsss" + "plurals_guid": "H<+`{(Lsss", + "mishkal": "tkilla", + "mishkal_hebrew": "תְּקִלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹק": { "word": { @@ -647024,12 +651402,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DUD8Le" + "plurals_guid": "c{sQ,>D8Le", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָקֵר": { "word": { @@ -649331,7 +653734,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרָא": { "word": { @@ -649381,7 +653785,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵב": { "word": { @@ -649806,7 +654211,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹב": { "word": { @@ -650179,7 +654585,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲרִיב": { "word": { @@ -650907,7 +655314,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻרְבָּן": { "word": { @@ -650976,7 +655384,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶרֶב": { "word": { @@ -651040,12 +655449,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E}#~~Q.`F]" + "plurals_guid": "E}#~~Q.`F]", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַרְבֵּן": { "word": { @@ -651771,7 +656183,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַרְבֵּן": { "word": { @@ -652194,7 +656607,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרִיגָה": { "word": { @@ -652256,12 +656670,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "h1(/-.O.`o" + "plurals_guid": "h1(/-.O.`o", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרִיג": { "word": { @@ -652317,11 +656734,12 @@ "nikkud": "חֲרִיגוֹת", "ktiv_male": "חריגות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹג": { "word": { @@ -652336,7 +656754,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to exceed, to digress (מן)", + "meaning": "to exceed, to digress", "meaning_raw": "to exceed, to digress (מן)", "audio_url": "https://audio.pealim.com/v0/1j/1jthl1b0a7fr3.mp3", "audio_file": "לחרוג.mp3", @@ -652744,7 +657162,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מן" }, "לַחֲרֹד": { "word": { @@ -652759,7 +657178,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to be worried about (ל-)", + "meaning": "to be worried about", "meaning_raw": "to be worried about (ל-)", "audio_url": "https://audio.pealim.com/v0/1j/1jthbnwt9tmjn.mp3", "audio_file": "לחרוד.mp3", @@ -653187,7 +657606,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לְהֵחָרֵד": { "word": { @@ -653202,7 +657622,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be appalled, horrified with (מן)", + "meaning": "to be appalled, horrified with", "meaning_raw": "to be appalled, horrified with (מן)", "audio_url": "https://audio.pealim.com/v0/xc/xcwn54jx2aa8.mp3", "audio_file": "להיחרד.mp3", @@ -653614,7 +658034,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מן" }, "לְהַחְרִיד": { "word": { @@ -654360,7 +658781,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְרִיד": { "word": { @@ -654436,11 +658858,12 @@ "nikkud": "מַחְרִידוֹת", "ktiv_male": "מחרידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרָדָה": { "word": { @@ -654532,12 +658955,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mLThQTG%iH" + "plurals_guid": "mLThQTG%iH", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרֵד": { "word": { @@ -654613,11 +659039,12 @@ "nikkud": "חֲרֵדוֹת", "ktiv_male": "חרדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרֵדִי": { "word": { @@ -654697,7 +659124,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַרְדָּל": { "word": { @@ -654768,7 +659196,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹז": { "word": { @@ -655194,7 +659623,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵז": { "word": { @@ -655620,7 +660050,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרוּז": { "word": { @@ -655685,12 +660116,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pdMi%U>=Fi" + "plurals_guid": "pdMi%U>=Fi", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרִיזָה": { "word": { @@ -655755,12 +660189,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q(b{xOajb." + "plurals_guid": "q(b{xOajb.", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחָרֵז": { "word": { @@ -656186,7 +660623,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְרֹזֶת": { "word": { @@ -656251,12 +660689,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Lob8Gubg0I" + "plurals_guid": "Lob8Gubg0I", + "mishkal": "maktolet", + "mishkal_hebrew": "מַקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַרְחֵר": { "word": { @@ -657001,7 +661442,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹט": { "word": { @@ -657425,7 +661867,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵט": { "word": { @@ -657849,7 +662292,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרָטָה": { "word": { @@ -657912,12 +662356,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Z~2*{VTAt" + "plurals_guid": "Z~2*{VTAt", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחָרֵט": { "word": { @@ -657932,7 +662379,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to regret, to repent (על)", + "meaning": "to regret, to repent", "meaning_raw": "to regret, to repent (על)", "audio_url": "https://audio.pealim.com/v0/8j/8j56sou2kpnm.mp3", "audio_file": "להתחרט.mp3", @@ -658367,7 +662814,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְחַרְטֵט": { "word": { @@ -658790,7 +663238,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַרְטָט": { "word": { @@ -658843,12 +663292,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x>KvS-W+RD" + "plurals_guid": "x>KvS-W+RD", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחֲרוּת": { "word": { @@ -658940,12 +663392,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CI&XvO$`Fz" + "plurals_guid": "CI&XvO$`Fz", + "mishkal": "taktut", + "mishkal_hebrew": "תַּקְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחָרוֹת": { "word": { @@ -658960,7 +663415,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to compete (with) (ב-)", + "meaning": "to compete (with)", "meaning_raw": "to compete (with) (ב-)", "audio_url": "https://audio.pealim.com/v0/18/189wvfbuu6gov.mp3", "audio_file": "להתחרות.mp3", @@ -659393,7 +663848,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "הִתְחָרוּת": { "word": { @@ -659459,12 +663915,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ngy=*^n|%9" + "plurals_guid": "ngy=*^n|%9", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִתְחָרֶה": { "word": { @@ -659551,12 +664010,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sd~~/q]=%P" + "plurals_guid": "sd~~/q]=%P", + "mishkal": "mitkattel", + "mishkal_hebrew": "מִתְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרוֹת": { "word": { @@ -659995,7 +664457,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְרוֹת": { "word": { @@ -660010,7 +664473,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to concur, to agree (with someone) (אחרי) (rare)", + "meaning": "to concur, to agree (with someone) (rare)", "meaning_raw": "to concur, to agree (with someone) (אחרי) (rare)", "audio_url": "https://audio.pealim.com/v0/zr/zr5qp1cyuh79.mp3", "audio_file": "להחרות.mp3", @@ -660422,7 +664885,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אחרי" }, "חָרוֹן": { "word": { @@ -660509,7 +664973,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹךְ": { "word": { @@ -660933,7 +665398,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵךְ": { "word": { @@ -661357,7 +665823,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרָךְ": { "word": { @@ -661436,12 +665903,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eOC5x;ykn[" + "plurals_guid": "eOC5x;ykn[", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרִיכָה": { "word": { @@ -661504,12 +665974,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m#m/2{Onrt" + "plurals_guid": "m#m/2{Onrt", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲרִים": { "word": { @@ -662235,7 +666708,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵרוּם": { "word": { @@ -662313,12 +666787,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y0IDG`7}[w" + "plurals_guid": "y0IDG`7}[w", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵרֶם": { "word": { @@ -662380,12 +666857,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "PLCOT9Xe$i" + "plurals_guid": "PLCOT9Xe$i", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶרֶס": { "word": { @@ -662467,12 +666947,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mWtgo~1f.S" + "plurals_guid": "mWtgo~1f.S", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַרְסִית": { "word": { @@ -662538,7 +667021,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַרְסִינָה": { "word": { @@ -662592,7 +667076,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲרִיף": { "word": { @@ -663322,7 +667807,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹרֶף": { "word": { @@ -663404,12 +667890,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "szb@~E_Ro%" + "plurals_guid": "szb@~E_Ro%", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחָרֵף": { "word": { @@ -663836,7 +668325,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרְפִּי": { "word": { @@ -663900,7 +668390,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרִיף": { "word": { @@ -663976,11 +668467,12 @@ "nikkud": "חֲרִיפוֹת", "ktiv_male": "חריפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְרֹף": { "word": { @@ -664407,7 +668899,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶרְפָּה": { "word": { @@ -664489,12 +668982,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Nk;YP{:+3x" + "plurals_guid": "Nk;YP{:+3x", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַרְפֵן": { "word": { @@ -664941,7 +669437,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵץ": { "word": { @@ -665366,7 +669863,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרוּץ": { "word": { @@ -665424,11 +669922,12 @@ "nikkud": "חֲרוּצוֹת", "ktiv_male": "חרוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹץ": { "word": { @@ -665853,7 +670352,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחֹרָץ": { "word": { @@ -665911,11 +670411,12 @@ "nikkud": "מְחֹרָצוֹת", "ktiv_male": "מחורצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָרִיץ": { "word": { @@ -665979,12 +670480,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B3(wIcvLz4" + "plurals_guid": "B3(wIcvLz4", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹק": { "word": { @@ -666422,7 +670926,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶרֶק": { "word": { @@ -666483,12 +670988,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i#U0%e{I`r" + "plurals_guid": "i#U0%e{I`r", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹר": { "word": { @@ -666576,12 +671084,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y#POJwu~mi" + "plurals_guid": "y#POJwu~mi", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵרוּת": { "word": { @@ -666648,7 +671159,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחָרֵר": { "word": { @@ -667374,7 +671886,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹשׁ": { "word": { @@ -667818,7 +672331,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲרִישׁ": { "word": { @@ -668565,7 +673079,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵשׁ": { "word": { @@ -668993,7 +673508,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵרֵשׁ": { "word": { @@ -669070,11 +673586,12 @@ "nikkud": "חֵרְשׁוֹת", "ktiv_male": "חירשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְרֵשָׁה": { "word": { @@ -669141,12 +673658,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cf(Bf!:i7>" + "plurals_guid": "cf(Bf!:i7>", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחָרֵשׁ": { "word": { @@ -669574,7 +674094,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲרִישִׁי": { "word": { @@ -669655,7 +674176,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֻרְשָׁה": { "word": { @@ -669722,12 +674244,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Bnq!H1BFOV" + "plurals_guid": "Bnq!H1BFOV", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲרֹת": { "word": { @@ -670152,7 +674677,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָרֵת": { "word": { @@ -670574,7 +675100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְשֹׁב": { "word": { @@ -671039,7 +675566,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְשִׁיב": { "word": { @@ -671781,7 +676309,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶשְׁבּוֹנִיָּה": { "word": { @@ -671864,7 +676393,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַשֵּׁב": { "word": { @@ -671879,7 +676409,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to consider, to take into account (-ב)", + "meaning": "to consider, to take into account", "meaning_raw": "to consider, to take into account (-ב)", "audio_url": "https://audio.pealim.com/v0/1f/1fab13drfjb6x.mp3", "audio_file": "להתחשב.mp3", @@ -672303,7 +676833,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "-ב" }, "חִשּׁוּב": { "word": { @@ -672381,12 +676912,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A?MhVAdFRE" + "plurals_guid": "A?MhVAdFRE", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְחַשְּׁבוּת": { "word": { @@ -672458,12 +676992,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jwh?W[i[r0" + "plurals_guid": "jwh?W[i[r0", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְשֵׁב": { "word": { @@ -672562,12 +677099,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FbQ8|goGPM" + "plurals_guid": "FbQ8|goGPM", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשָּׁב": { "word": { @@ -672671,12 +677211,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wVj/P+CRo)" + "plurals_guid": "wVj/P+CRo)", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶשְׁבּוֹן": { "word": { @@ -672780,12 +677323,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Me#bQ<+_)8" + "plurals_guid": "Me#bQ<+_)8", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָשׁוּב": { "word": { @@ -672800,7 +677346,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "important; considered as (כ־)", + "meaning": "important; considered as", "meaning_raw": "important; considered as (כ־)", "audio_url": "https://audio.pealim.com/v0/16/16k0jy283h27e.mp3", "audio_file": "חשוב.mp3", @@ -672883,11 +677429,12 @@ "nikkud": "חֲשׁוּבוֹת", "ktiv_male": "חשובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "כ־" }, "חֶשְׁבּוֹנִית": { "word": { @@ -672970,7 +677517,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶשְׁבּוֹנָאִי": { "word": { @@ -673049,7 +677597,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְשְׁבוֹן": { "word": { @@ -673132,7 +677681,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֶשְׁבּוֹנַאי": { "word": { @@ -673218,7 +677768,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשִׁיבָה": { "word": { @@ -673306,12 +677857,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "O_/#m;6CH*" + "plurals_guid": "O_/#m;6CH*", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָשֵׁב": { "word": { @@ -673326,7 +677880,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be considered as (ל-)", + "meaning": "to be considered as", "meaning_raw": "to be considered as (ל-)", "audio_url": "https://audio.pealim.com/v0/jj/jjb31cqlrprh.mp3", "audio_file": "להיחשב.mp3", @@ -673776,7 +678330,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לְחַשֵּׁב": { "word": { @@ -674534,7 +679089,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשִׁיבוּת": { "word": { @@ -674637,7 +679193,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחְשָׁבָה": { "word": { @@ -674741,12 +679298,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H5tO:X$R7T" + "plurals_guid": "H5tO:X$R7T", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַשְׁבֵּן": { "word": { @@ -675169,7 +679729,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַשְׁבֵּן": { "word": { @@ -675895,7 +680456,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְשֹׁד": { "word": { @@ -675910,7 +680472,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to suspect (ב-)", + "meaning": "to suspect", "meaning_raw": "to suspect (ב-)", "audio_url": "https://audio.pealim.com/v0/1v/1vjh5e3t61inr.mp3", "audio_file": "לחשוד.mp3", @@ -676346,7 +680908,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהֵחָשֵׁד": { "word": { @@ -676771,7 +681334,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְשִׁיד": { "word": { @@ -677196,7 +681760,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָשׁוּד": { "word": { @@ -677275,11 +681840,12 @@ "nikkud": "חֲשׁוּדוֹת", "ktiv_male": "חשודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשָׁד": { "word": { @@ -677369,12 +681935,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B&+UbEhP6p" + "plurals_guid": "B&+UbEhP6p", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשָׁאִיּוּת": { "word": { @@ -677442,7 +682011,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשַׁאי": { "word": { @@ -677499,7 +682069,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשָׁאִי": { "word": { @@ -677563,7 +682134,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחֲשׁוֹת": { "word": { @@ -677987,7 +682559,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְשֹׁךְ": { "word": { @@ -678424,7 +682997,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְשִׁיךְ": { "word": { @@ -679152,7 +683726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֹשֶׁךְ": { "word": { @@ -679210,12 +683785,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pp,]*HAg@`" + "plurals_guid": "pp,]*HAg@`", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָשׁוּךְ": { "word": { @@ -679285,11 +683863,12 @@ "nikkud": "חֲשׁוּכוֹת", "ktiv_male": "חשוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָשׂוּךְ": { "word": { @@ -679347,11 +683926,12 @@ "nikkud": "חֲשׂוּכוֹת", "ktiv_male": "חשוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָשֵׁךְ": { "word": { @@ -679425,11 +684005,12 @@ "nikkud": "חֲשֵׁכוֹת", "ktiv_male": "חשכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְשֹׂךְ": { "word": { @@ -679854,7 +684435,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַשֵּׁל": { "word": { @@ -680276,7 +684858,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַשֵּׁל": { "word": { @@ -681001,7 +685584,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְחַשְׁמְלוּת": { "word": { @@ -681067,12 +685651,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xunccVg{5O" + "plurals_guid": "xunccVg{5O", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַשְׁמֵל": { "word": { @@ -681499,7 +686086,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשְׁמָל": { "word": { @@ -681580,7 +686168,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשְׁמָלִי": { "word": { @@ -681644,7 +686233,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַשְׁמֵל": { "word": { @@ -682374,7 +686964,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשְׁמָלַאי": { "word": { @@ -682445,7 +687036,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשְׂפָנוּת": { "word": { @@ -682511,7 +687103,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשִׂיפָה": { "word": { @@ -682578,12 +687171,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gv`zkeYq83" + "plurals_guid": "Gv`zkeYq83", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשְׂפָן": { "word": { @@ -682650,12 +687246,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kG~|Q1]n./" + "plurals_guid": "kG~|Q1]n./", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חַשְׂפָנִית": { "word": { @@ -682727,7 +687326,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָשׂוּף": { "word": { @@ -682742,7 +687342,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "exposed, bare; susceptible to (ל־)", + "meaning": "exposed, bare; susceptible to", "meaning_raw": "exposed, bare; susceptible to (ל־)", "audio_url": "https://audio.pealim.com/v0/16/16k8mnlrbej15.mp3", "audio_file": "חשוף.mp3", @@ -682788,11 +687388,12 @@ "nikkud": "חֲשׂוּפוֹת", "ktiv_male": "חשופות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "מַחְשׂוֹף": { "word": { @@ -682859,12 +687460,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v/J,7[^Om]" + "plurals_guid": "v/J,7[^Om]", + "mishkal": "maktol", + "mishkal_hebrew": "מַקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָשֵׂף": { "word": { @@ -683308,7 +687912,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחֲשֹׂף": { "word": { @@ -683752,7 +688357,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַשֵּׁק": { "word": { @@ -684193,7 +688799,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֵשֶׁק": { "word": { @@ -684273,12 +688880,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l08m)&H>T=" + "plurals_guid": "l08m)&H>T=", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָשֵׁק": { "word": { @@ -684703,7 +689313,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַשֵּׁק": { "word": { @@ -685431,7 +690042,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְשֹׁק": { "word": { @@ -685446,7 +690058,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to desire, to covet (ב-)", + "meaning": "to desire, to covet", "meaning_raw": "to desire, to covet (ב-)", "audio_url": "https://audio.pealim.com/v0/1v/1vjgzcfjzzkpo.mp3", "audio_file": "לחשוק.mp3", @@ -685872,7 +690484,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לַחְשֹׁשׁ": { "word": { @@ -685887,7 +690500,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to worry (מן)", + "meaning": "to worry", "meaning_raw": "to worry (מן)", "audio_url": "https://audio.pealim.com/v0/8h/8hjugtihjvj1.mp3", "audio_file": "לחשוש.mp3", @@ -686321,7 +690934,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מן" }, "חוֹשְׁשָׁנִי": { "word": { @@ -686381,7 +690995,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲשָׁשׁ": { "word": { @@ -686464,12 +691079,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q?5}Ah31k}" + "plurals_guid": "q?5}Ah31k}", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָתוּל": { "word": { @@ -686555,7 +691173,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתוּלָה": { "word": { @@ -686615,7 +691234,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתוּלִי": { "word": { @@ -686668,7 +691288,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְתֹּךְ": { "word": { @@ -687122,7 +691743,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתָךְ": { "word": { @@ -687189,12 +691811,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HY=1.5gN6" + "plurals_guid": "HY=1.5gN6", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָתִיךְ": { "word": { @@ -687261,12 +691886,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qB4l%Bi+*=" + "plurals_guid": "qB4l%Bi+*=", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתִיכָה": { "word": { @@ -687349,12 +691977,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nNVL8ARQF>" + "plurals_guid": "nNVL8ARQF>", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָתֵךְ": { "word": { @@ -687369,7 +692000,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be cut, slashed (ב-)", + "meaning": "to be cut, slashed", "meaning_raw": "to be cut, slashed (ב-)", "audio_url": "https://audio.pealim.com/v0/op/opj2ncbloqn4.mp3", "audio_file": "להיחתך.mp3", @@ -687782,7 +692413,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהִתְחַתֵּךְ": { "word": { @@ -688210,7 +692842,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַתֵּךְ": { "word": { @@ -688654,7 +693287,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָתוּךְ": { "word": { @@ -688715,11 +693349,12 @@ "nikkud": "חֲתוּכוֹת", "ktiv_male": "חתוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חִתּוּל": { "word": { @@ -688780,12 +693415,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַתֵּל": { "word": { @@ -689510,7 +694148,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתַלְתּוּל": { "word": { @@ -689565,7 +694204,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתַלְתּוּלָה": { "word": { @@ -689625,7 +694265,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתַלְתּוּלוֹן": { "word": { @@ -689685,7 +694326,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתַלְתּוּלֹנֶת": { "word": { @@ -689745,7 +694387,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתִימָה": { "word": { @@ -689809,12 +694452,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ne}!OF%8-H" + "plurals_guid": "ne}!OF%8-H", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַחְתִּים": { "word": { @@ -690568,7 +695214,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵחָתֵם": { "word": { @@ -691009,7 +695656,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְתֹּם": { "word": { @@ -691460,7 +696108,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָתוּם": { "word": { @@ -691518,11 +696167,12 @@ "nikkud": "חֲתוּמוֹת", "ktiv_male": "חתומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חֲתֻנָּה": { "word": { @@ -691611,12 +696261,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A#^uziYxp8" + "plurals_guid": "A#^uziYxp8", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "חָתָן": { "word": { @@ -691679,12 +696332,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xtp)c?Sk];" + "plurals_guid": "xtp)c?Sk];", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחַתֵּן": { "word": { @@ -692411,7 +697067,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְחַתֵּן": { "word": { @@ -692426,7 +697083,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to get married (with) (עם)", + "meaning": "to get married (with)", "meaning_raw": "to get married (with) (עם)", "audio_url": "https://audio.pealim.com/v0/hb/hbbxgtbm7dl6.mp3", "audio_file": "להתחתן.mp3", @@ -692861,7 +697518,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם" }, "מַחְתֶּרֶת": { "word": { @@ -692948,12 +697606,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D:3O|^gY;H" + "plurals_guid": "D:3O|^gY;H", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְתֹּר": { "word": { @@ -692968,7 +697629,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to paddle, to strive for (ל-); to undermine, to subvert", + "meaning": "to paddle, to strive for ; to undermine, to subvert", "meaning_raw": "to paddle, to strive for (ל-); to undermine, to subvert", "audio_url": "https://audio.pealim.com/v0/1v/1vdn55qset7yj.mp3", "audio_file": "לחתור.mp3", @@ -693391,7 +698052,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "חֲתָת": { "word": { @@ -693446,12 +698108,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N#NV(Ovs;y" + "plurals_guid": "N#NV(Ovs;y", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְתִּי": { "word": { @@ -693510,7 +698175,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטְאֲטֵא": { "word": { @@ -693588,12 +698254,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xK*8:W(njN" + "plurals_guid": "xK*8:W(njN", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַאְטֵא": { "word": { @@ -694319,7 +698988,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָבוּחַ": { "word": { @@ -694378,11 +699048,12 @@ "nikkud": "טְבוּחוֹת", "ktiv_male": "טבוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְבֹּחַ": { "word": { @@ -694397,7 +699068,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to slaughter, to butcher (ב־)", + "meaning": "to slaughter, to butcher", "meaning_raw": "to slaughter, to butcher (ב־)", "audio_url": "https://audio.pealim.com/v0/ff/ffozxw162mxf.mp3", "audio_file": "לטבוח.mp3", @@ -694808,7 +699479,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "טַבָּח": { "word": { @@ -694876,12 +699548,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IzX7$]sW-C" + "plurals_guid": "IzX7$]sW-C", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִטְבָּח": { "word": { @@ -694972,12 +699647,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LhAco/Ow(p" + "plurals_guid": "LhAco/Ow(p", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶבַח": { "word": { @@ -695039,12 +699717,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּבֵחַ": { "word": { @@ -695470,7 +700151,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְבֹּל": { "word": { @@ -695893,7 +700575,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּבֵל": { "word": { @@ -696316,7 +700999,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְבִּיל": { "word": { @@ -697063,7 +701747,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְבֹּעַ": { "word": { @@ -697511,7 +702196,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִבְעוֹנוּת": { "word": { @@ -697581,7 +702267,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִבְעוֹנִי": { "word": { @@ -697650,7 +702337,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטְבֵּעַ": { "word": { @@ -697716,12 +702404,15 @@ "singular_audio": "https://audio.pealim.com/v0/1x/1xjgl6hwpyfth.mp3", "plural_audio": "https://audio.pealim.com/v0/cl/cl8wle3wpz8h.mp3", "pronominal_suffixes": null, - "plurals_guid": "pE@%Tf+w:g" + "plurals_guid": "pE@%Tf+w:g", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶבַע": { "word": { @@ -697807,12 +702498,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vAamU]EiNL" + "plurals_guid": "vAamU]EiNL", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִבְעִי": { "word": { @@ -697907,7 +702601,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַבַּעַת": { "word": { @@ -697994,12 +702689,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JqY8Q^)cN8" + "plurals_guid": "JqY8Q^)cN8", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּבֵעַ": { "word": { @@ -698431,7 +703129,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְבִּיעַ|Verb|to mint, to impress": { "word": { @@ -698480,18 +703179,7 @@ ], "confusables_guid": "dSkVh~iJh!", "examples": { - "vetted": [ - { - "text": "אִם תְּצַוֶּה עַל בְּנֵי עַמְּךָ לְהַטְבִּיעַ אֶת עַצְמָם בַּיָּם, תִּפְרֹץ מַהְפֵּכָה", - "source": "little_prince", - "match_method": "direct" - }, - { - "text": "לְהַטְבִּיעַ אוֹתָנוּ בְּלֵב יָם", - "source": "time_tunnel_76", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -699183,7 +703871,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְבִּיעַ|Verb|to drown, to sink; to dunk (basketball)": { "word": { @@ -699935,7 +704624,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָבוּעַ|Adjective|sunken": { "word": { @@ -700003,11 +704693,12 @@ "nikkud": "טְבוּעוֹת", "ktiv_male": "טבועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָבוּעַ|Adjective|impressed, engraved, marked; inherent, integral part of (ב-)": { "word": { @@ -700022,7 +704713,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "impressed, engraved, marked; inherent, integral part of (ב-)", + "meaning": "impressed, engraved, marked; inherent, integral part of", "meaning_raw": "impressed, engraved, marked; inherent, integral part of (ב-)", "audio_url": "https://audio.pealim.com/v0/1q/1qw6yv1oy0fp7.mp3", "audio_file": "8971-tavua.mp3", @@ -700075,11 +704766,12 @@ "nikkud": "טְבוּעוֹת", "ktiv_male": "טבועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "מְטֻגָּן": { "word": { @@ -700135,11 +704827,12 @@ "nikkud": "מְטֻגָּנוֹת", "ktiv_male": "מטוגנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַגֵּן": { "word": { @@ -700865,7 +705558,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטַּגֵּן": { "word": { @@ -701288,7 +705982,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְהֹר": { "word": { @@ -701663,7 +706358,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּהֵר": { "word": { @@ -702093,7 +706789,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטַּהֵר": { "word": { @@ -702523,7 +707220,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָהוֹר": { "word": { @@ -702599,11 +707297,12 @@ "nikkud": "טְהוֹרוֹת", "ktiv_male": "טהורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֹהַר": { "word": { @@ -702663,12 +707362,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wJI;WK^tuY" + "plurals_guid": "wJI;WK^tuY", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִהוּר": { "word": { @@ -702734,12 +707436,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oz3j{/=Hxq" + "plurals_guid": "oz3j{/=Hxq", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַהֵר": { "word": { @@ -703469,7 +708174,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָטוּב": { "word": { @@ -703921,7 +708627,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוֹבָה": { "word": { @@ -704012,7 +708719,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוֹב": { "word": { @@ -704097,7 +708805,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיב": { "word": { @@ -704167,7 +708876,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵיטֵב": { "word": { @@ -704236,7 +708946,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "טוּב": { "word": { @@ -704324,7 +709035,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַוָּס": { "word": { @@ -704384,7 +709096,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוּזִיג": { "word": { @@ -704444,7 +709157,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָטִיחַ": { "word": { @@ -705186,7 +709900,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְוָח": { "word": { @@ -705248,12 +709963,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J%~,q|Wr)!" + "plurals_guid": "J%~,q|Wr)!", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַוֵּחַ": { "word": { @@ -705979,7 +710697,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְווֹת": { "word": { @@ -706415,7 +711134,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטִּיל": { "word": { @@ -707140,7 +711860,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיל": { "word": { @@ -707201,7 +711922,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָטִיס": { "word": { @@ -707954,7 +712676,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָטוּס": { "word": { @@ -708404,7 +713127,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָטוֹס": { "word": { @@ -708493,12 +713217,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uw7LGWb]kc" + "plurals_guid": "uw7LGWb]kc", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיסָה": { "word": { @@ -708587,12 +713314,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c0&S1f/5{%" + "plurals_guid": "c0&S1f/5{%", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוּסִיק": { "word": { @@ -708643,7 +713373,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוּר": { "word": { @@ -708729,7 +713460,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוּרְנִיר": { "word": { @@ -708789,7 +713521,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טוּשׁ": { "word": { @@ -708849,7 +713582,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְחָב": { "word": { @@ -708913,12 +713647,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r9t525nc])" + "plurals_guid": "r9t525nc])", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַחַב": { "word": { @@ -708976,12 +713713,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטְחֵנָה": { "word": { @@ -709044,12 +713784,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cNSMiNg=zJ" + "plurals_guid": "cNSMiNg=zJ", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְחֹן": { "word": { @@ -709473,7 +714216,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָחוּן": { "word": { @@ -709530,11 +714274,12 @@ "nikkud": "טְחוּנוֹת", "ktiv_male": "טחונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְחִינָה": { "word": { @@ -709597,12 +714342,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K1=!tcGGvd" + "plurals_guid": "K1=!tcGGvd", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַיֵּב": { "word": { @@ -710022,7 +714770,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַיֵּחַ": { "word": { @@ -710748,7 +715497,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיחַ": { "word": { @@ -710815,7 +715565,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיּוּחַ": { "word": { @@ -710877,12 +715628,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "c`5yzcoD,s" + "plurals_guid": "c`5yzcoD,s", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְיוּטָה": { "word": { @@ -710962,12 +715716,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zL,~w`^h*7" + "plurals_guid": "zL,~w`^h*7", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיט": { "word": { @@ -711027,7 +715784,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַיְץ": { "word": { @@ -711081,7 +715839,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַיֶּלֶת": { "word": { @@ -711143,12 +715902,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C*Nqz(q`Pj" + "plurals_guid": "C*Nqz(q`Pj", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיּוּל": { "word": { @@ -711236,12 +715998,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CjU({dQv;N" + "plurals_guid": "CjU({dQv;N", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַיֵּל": { "word": { @@ -711993,7 +716758,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִילְיָה": { "word": { @@ -712048,7 +716814,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַיָּס": { "word": { @@ -712133,12 +716900,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q{Q*7IrZS2" + "plurals_guid": "q{Q*7IrZS2", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִיפּוּס": { "word": { @@ -712209,7 +716979,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִירָה": { "word": { @@ -712264,7 +717035,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִירוֹן": { "word": { @@ -712324,7 +717096,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִירוֹנוּת": { "word": { @@ -712384,7 +717157,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶכְנַאי": { "word": { @@ -712444,7 +717218,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶכְנוֹלוֹגְיָה": { "word": { @@ -712499,7 +717274,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶכְנִיקָה": { "word": { @@ -712559,7 +717335,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַכֵּס": { "word": { @@ -713282,7 +718059,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְלַאי": { "word": { @@ -713344,12 +718122,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rY^51[9DO>" + "plurals_guid": "rY^51[9DO>", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַלֵּא": { "word": { @@ -714075,7 +718856,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְלִיא": { "word": { @@ -714801,7 +719583,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַלְגְּרֵף": { "word": { @@ -715223,7 +720006,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶלֶוִיזְיָה": { "word": { @@ -715293,7 +720077,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַלְטֵל": { "word": { @@ -716045,7 +720830,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטַּלְטֵל": { "word": { @@ -716468,7 +721254,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַלִּית": { "word": { @@ -716549,7 +721336,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַל": { "word": { @@ -716610,12 +721398,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fAE~&yB]9H" + "plurals_guid": "fAE~&yB]9H", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְטֻלָּל": { "word": { @@ -716670,11 +721461,12 @@ "nikkud": "מְטֻלָּלוֹת", "ktiv_male": "מטוללות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶלֶף": { "word": { @@ -716735,12 +721527,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w+Y11MiCx8" + "plurals_guid": "w+Y11MiCx8", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַלֵּף": { "word": { @@ -716755,7 +721550,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to trim hooves (of an animal) (אצל)", + "meaning": "to trim hooves (of an animal)", "meaning_raw": "to trim hooves (of an animal) (אצל)", "audio_url": "https://audio.pealim.com/v0/1m/1mhcj5ob6l0c3.mp3", "audio_file": "לטלף.mp3", @@ -717162,7 +721957,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אצל" }, "טֶלֶפוֹן": { "word": { @@ -717242,7 +722038,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַלְפֵּן": { "word": { @@ -717258,7 +722055,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to call on the telephone (אל)", + "meaning": "to call on the telephone", "meaning_raw": "to call on the telephone (אל)", "audio_url": "https://audio.pealim.com/v0/12/12zmtwye9e1kj.mp3", "audio_file": "לטלפן.mp3", @@ -717992,7 +722789,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אל" }, "לְהִטָּמֵא": { "word": { @@ -718417,7 +723215,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָמֵא": { "word": { @@ -718475,11 +723274,12 @@ "nikkud": "טְמֵאוֹת", "ktiv_male": "טמאות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְמֹא": { "word": { @@ -718852,7 +723652,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֻמְאָה": { "word": { @@ -718910,12 +723711,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Hv/!TG%j$1" + "plurals_guid": "Hv/!TG%j$1", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַמֵּא": { "word": { @@ -719643,7 +724447,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִמְטוּם": { "word": { @@ -719705,12 +724510,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zV{Hv!;=LT" + "plurals_guid": "zV{Hv!;=LT", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַמְטֵם": { "word": { @@ -720452,7 +725260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְמֹן": { "word": { @@ -720892,7 +725701,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּמֵן": { "word": { @@ -721316,7 +726126,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָמוּן": { "word": { @@ -721373,11 +726184,12 @@ "nikkud": "טְמוּנוֹת", "ktiv_male": "טמונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְמִין": { "word": { @@ -722104,7 +726916,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִטַּמְּעוּת": { "word": { @@ -722166,12 +726979,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "BY7y%8N2/" + "plurals_guid": "F@:zl1.>2/", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְטֻפָּשׁ": { "word": { @@ -734534,11 +739430,12 @@ "nikkud": "מְטֻפָּשׁוֹת", "ktiv_male": "מטופשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִפֵּשׁ": { "word": { @@ -734620,11 +739517,12 @@ "nikkud": "טִפְּשׁוֹת", "ktiv_male": "טיפשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִפְּשִׁי": { "word": { @@ -734684,7 +739582,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶקֶס": { "word": { @@ -734759,12 +739658,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l3g:7b_Ise" + "plurals_guid": "l3g:7b_Ise", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָרוּד": { "word": { @@ -734823,11 +739725,12 @@ "nikkud": "טְרוּדוֹת", "ktiv_male": "טרודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַטְרָדָה": { "word": { @@ -734886,12 +739789,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "O(_I0v`;!1" + "plurals_guid": "O(_I0v`;!1", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְרִיד": { "word": { @@ -735646,7 +740552,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְרֹד": { "word": { @@ -736072,7 +740979,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִטְרָד": { "word": { @@ -736137,12 +741045,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u}ZN`HmO_a" + "plurals_guid": "u}ZN`HmO_a", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טִרְדָּה": { "word": { @@ -736207,12 +741118,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nIpgS|E>.A" + "plurals_guid": "nIpgS|E>.A", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְרֹחַ": { "word": { @@ -736661,7 +741575,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַרְחָן": { "word": { @@ -736717,11 +741632,12 @@ "nikkud": "טַרְחָנִיּוֹת", "ktiv_male": "טרחניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְרִיחַ": { "word": { @@ -737447,7 +742363,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַרְטֵר": { "word": { @@ -738171,7 +743088,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְרִיּוּת": { "word": { @@ -738247,7 +743165,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָרִי": { "word": { @@ -738323,11 +743242,12 @@ "nikkud": "טְרִיּוֹת", "ktiv_male": "טריות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְרִיל": { "word": { @@ -738747,7 +743667,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְטֻרְלָל": { "word": { @@ -738801,11 +743722,12 @@ "nikkud": "מְטֻרְלָלוֹת", "ktiv_male": "מטורללות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶרֶם": { "word": { @@ -738838,7 +743760,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "טְרֶמְפּ": { "word": { @@ -738892,7 +743815,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֵרוּף": { "word": { @@ -738973,12 +743897,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fXc>U@`pm=" + "plurals_guid": "fXc>U@`pm=", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְרֹף": { "word": { @@ -739430,7 +744357,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּרֵף": { "word": { @@ -739856,7 +744784,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טֶרֶף": { "word": { @@ -739931,12 +744860,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "drW<9s=U&[" + "plurals_guid": "drW<9s=U&[", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְטֹרָף": { "word": { @@ -740021,11 +744953,12 @@ "nikkud": "מְטֹרָפוֹת", "ktiv_male": "מטורפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטְרִיף": { "word": { @@ -740770,7 +745703,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַרְפֵּד": { "word": { @@ -741496,7 +746430,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טַרְפֶּדֶת": { "word": { @@ -741558,12 +746493,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "If~?k<:cXF" + "plurals_guid": "If~?k<:cXF", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטָּרֵק": { "word": { @@ -741986,7 +746924,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טְרִיקָה": { "word": { @@ -742048,12 +746987,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "v^|gb#dV;p" + "plurals_guid": "v^|gb#dV;p", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטְרֹק": { "word": { @@ -742476,7 +747418,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "טָרֶשֶׁת": { "word": { @@ -742529,12 +747472,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u[_/F?~|yW" + "plurals_guid": "u[_/F?~|yW", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְטַשְׁטֵשׁ": { "word": { @@ -742958,7 +747904,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְטַשְׁטֵשׁ": { "word": { @@ -743711,7 +748658,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִטַּשְׁטֵשׁ": { "word": { @@ -744135,7 +749083,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיאוֹת": { "word": { @@ -744555,7 +749504,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַאכְטָה": { "word": { @@ -744610,7 +749560,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹאִיל": { "word": { @@ -745046,7 +749997,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיָאֵשׁ": { "word": { @@ -745498,7 +750450,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֵאוּשׁ": { "word": { @@ -745589,12 +750542,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j~9Xfb$NB1" + "plurals_guid": "j~9Xfb$NB1", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֹאָשׁ": { "word": { @@ -745674,11 +750630,12 @@ "nikkud": "מְיֹאָשׁוֹת", "ktiv_male": "מיואשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּאֵשׁ": { "word": { @@ -746104,7 +751061,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיָאֵשׁ": { "word": { @@ -746833,7 +751791,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיָאֵשׁ": { "word": { @@ -746913,11 +751872,12 @@ "nikkud": "מְיָאֲשׁוֹת", "ktiv_male": "מייאשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַבֵּא": { "word": { @@ -747642,7 +752602,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִבּוּא": { "word": { @@ -747703,12 +752664,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iT,hMdO.0I" + "plurals_guid": "iT,hMdO.0I", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַבֵּב": { "word": { @@ -748452,7 +753416,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹבִיל": { "word": { @@ -749209,7 +754174,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֻבָּל": { "word": { @@ -749270,11 +754236,12 @@ "nikkud": "מְיֻבָּלוֹת", "ktiv_male": "מיובלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַבֶּלֶת": { "word": { @@ -749357,12 +754324,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kmA(>7~Ufc" + "plurals_guid": "kmA(>7~Ufc", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹבִיל": { "word": { @@ -749444,11 +754414,12 @@ "nikkud": "מוֹבִילוֹת", "ktiv_male": "מובילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַבּוּל": { "word": { @@ -749531,12 +754502,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iEB85L2]-I" + "plurals_guid": "iEB85L2]-I", + "mishkal": "maktul", + "mishkal_hebrew": "מַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְבוּל": { "word": { @@ -749603,12 +754577,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z<.y1E+c/H" + "plurals_guid": "z<.y1E+c/H", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹבָלָה": { "word": { @@ -749675,12 +754652,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w-*p.Cxkv(" + "plurals_guid": "w-*p.Cxkv(", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַבֵּל": { "word": { @@ -750411,7 +755391,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַבֵּשׁ": { "word": { @@ -750866,7 +755847,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיבֹשׁ": { "word": { @@ -751321,7 +756303,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִבּוּשׁ": { "word": { @@ -751405,12 +756388,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iN%c:D%[}X" + "plurals_guid": "iN%c:D%[}X", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָבֵשׁ": { "word": { @@ -751488,11 +756474,12 @@ "nikkud": "יְבֵשׁוֹת", "ktiv_male": "יבשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַבֶּשֶׁת": { "word": { @@ -751560,12 +756547,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J0;G!Chc(3" + "plurals_guid": "J0;G!Chc(3", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַבָּשָׁה": { "word": { @@ -751649,12 +756639,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r*T)p:hN1f" + "plurals_guid": "r*T)p:hN1f", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְיַבְּשׁוּת": { "word": { @@ -751716,12 +756709,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "v}[bpDI}0M" + "plurals_guid": "v}[bpDI}0M", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹבִישׁ": { "word": { @@ -752453,7 +757449,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַבֵּשׁ": { "word": { @@ -753211,7 +758208,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוּגָה": { "word": { @@ -753270,12 +758268,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NEM/F?p~V/" + "plurals_guid": "NEM/F?p~V/", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַגֵּעַ": { "word": { @@ -754001,7 +759002,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָגֵעַ": { "word": { @@ -754057,11 +759059,12 @@ "nikkud": "יְגֵעוֹת", "ktiv_male": "יגעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַגֵּעַ": { "word": { @@ -754484,7 +759487,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָגוֹר": { "word": { @@ -754499,7 +759503,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to fear, to be in awe of something (מ־) (archaic)", + "meaning": "to fear, to be in awe of something (archaic)", "meaning_raw": "to fear, to be in awe of something (מ־) (archaic)", "audio_url": "https://audio.pealim.com/v0/1m/1metdix9loh3j.mp3", "audio_file": "יגור.mp3", @@ -754836,7 +759840,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מ־" }, "יָד|Noun|arm, hand, forehand": { "word": { @@ -754918,7 +759923,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָד|Noun|handle": { "word": { @@ -755000,7 +760006,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַדֵּד": { "word": { @@ -755015,7 +760022,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to befriend, to make friends with (עם)", + "meaning": "to befriend, to make friends with", "meaning_raw": "to befriend, to make friends with (עם)", "audio_url": "https://audio.pealim.com/v0/b9/b9vobx1fkbnu.mp3", "audio_file": "להתיידד.mp3", @@ -755439,7 +760446,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם" }, "יְדִידוּת": { "word": { @@ -755527,7 +760535,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָדִיד": { "word": { @@ -755605,12 +760614,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vsP*aQMH+B" + "plurals_guid": "vsP*aQMH+B", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹדָיָה": { "word": { @@ -755675,12 +760687,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FKg-e6a-O(" + "plurals_guid": "FKg-e6a-O(", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹדוֹת": { "word": { @@ -755695,7 +760710,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to acknowledge; to thank (ל-)", + "meaning": "to acknowledge; to thank", "meaning_raw": "to acknowledge; to thank (ל-)", "audio_url": "https://audio.pealim.com/v0/1p/1p45vt0gjy875.mp3", "audio_file": "להודות.mp3", @@ -756435,7 +761450,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לִידוֹת": { "word": { @@ -756861,7 +761877,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹדָה": { "word": { @@ -756952,12 +761969,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nyqbx{xg`J" + "plurals_guid": "f=k>x{xg`J", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַהֲדוּת|Noun|Judaism; Jewry": { "word": { @@ -761758,12 +766819,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fPPW],G?#3" + "plurals_guid": "fPPW],G?#3", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְהוּדִיָּה": { "word": { @@ -761847,7 +766911,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְהוּדִי|Noun": { "word": { @@ -761937,7 +767002,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְהוּדִי|Adjective": { "word": { @@ -762020,7 +767086,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַהֲלוֹם": { "word": { @@ -762091,7 +767158,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֻהֲרָה": { "word": { @@ -762152,12 +767220,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m0S5:9R.i6" + "plurals_guid": "m0S5:9R.i6", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָהִיר": { "word": { @@ -762212,11 +767283,12 @@ "nikkud": "יְהִירוֹת", "ktiv_male": "יהירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹגָה": { "word": { @@ -762267,7 +767339,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹם": { "word": { @@ -762353,7 +767426,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹמִי": { "word": { @@ -762422,7 +767496,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹמַיִם": { "word": { @@ -762499,7 +767574,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹמָן": { "word": { @@ -762559,7 +767635,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַוֵּן": { "word": { @@ -762979,7 +768056,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹנָה": { "word": { @@ -763065,7 +768143,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹזִיל": { "word": { @@ -763080,7 +768159,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to cheapen, to reduce in price by (ב-)", + "meaning": "to cheapen, to reduce in price by", "meaning_raw": "to cheapen, to reduce in price by (ב-)", "audio_url": "https://audio.pealim.com/v0/1v/1v96m56io1ju9.mp3", "audio_file": "להוזיל.mp3", @@ -763788,7 +768867,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "יָזְמָה": { "word": { @@ -763851,12 +768931,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u>fC8qTWI)" + "plurals_guid": "u>fC8qTWI)", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַזָּם": { "word": { @@ -763919,12 +769002,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o%($|L]q0M" + "plurals_guid": "o%($|L]q0M", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵיזָם": { "word": { @@ -763987,12 +769073,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pB!A&^K3#o" + "plurals_guid": "pB!A&^K3#o", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיזֹם": { "word": { @@ -764432,7 +769521,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזִּיעַ": { "word": { @@ -765170,7 +770260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֶזַע": { "word": { @@ -765226,12 +770317,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OmjbbnS-yc" + "plurals_guid": "OmjbbnS-yc", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "זֵעָה": { "word": { @@ -765313,12 +770407,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IG>A:4:/?M" + "plurals_guid": "IG>A:4:/?M", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַחֵד": { "word": { @@ -765747,7 +770844,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֻחָד": { "word": { @@ -765835,11 +770933,12 @@ "nikkud": "מְיֻחָדוֹת", "ktiv_male": "מיוחדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִחוּד": { "word": { @@ -765907,12 +771006,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k1e|J(tu9@" + "plurals_guid": "k1e|J(tu9@", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַחַד": { "word": { @@ -765984,7 +771086,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "יְחִידָנִי": { "word": { @@ -766050,7 +771153,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִחוּדִי": { "word": { @@ -766116,7 +771220,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַחֵד": { "word": { @@ -766874,7 +771979,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַחְדָּו": { "word": { @@ -766946,7 +772052,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "יָחִיד": { "word": { @@ -767034,11 +772141,12 @@ "nikkud": "יְחִידוֹת", "ktiv_male": "יחידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַחֵל": { "word": { @@ -767053,7 +772161,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to await, to look forward, to hope for (ל-)", + "meaning": "to await, to look forward, to hope for", "meaning_raw": "to await, to look forward, to hope for (ל-)", "audio_url": "https://audio.pealim.com/v0/s5/s5mb91cmpd47.mp3", "audio_file": "לייחל.mp3", @@ -767461,7 +772569,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "תּוֹחֶלֶת": { "word": { @@ -767523,12 +772632,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DMocB.?(hi" + "plurals_guid": "DMocB.?(hi", + "mishkal": "tiktelet", + "mishkal_hebrew": "תִּקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֻחָל": { "word": { @@ -767584,11 +772696,12 @@ "nikkud": "מְיֻחָלוֹת", "ktiv_male": "מיוחלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַחֵס": { "word": { @@ -767603,7 +772716,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to relate (to), to refer to, to deal with (אל)", + "meaning": "to relate (to), to refer to, to deal with", "meaning_raw": "to relate (to), to refer to, to deal with (אל)", "audio_url": "https://audio.pealim.com/v0/pz/pzm4wlzte0w4.mp3", "audio_file": "להתייחס.mp3", @@ -768041,7 +773154,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אל" }, "יַחַס": { "word": { @@ -768133,12 +773247,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H.}g}tMx@T" + "plurals_guid": "H.}g}tMx@T", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְיַחֲסוּת": { "word": { @@ -768204,12 +773321,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ny:_eYg~U." + "plurals_guid": "ny:_eYg~U.", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַחֲסוּת": { "word": { @@ -768274,7 +773394,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַחֵס": { "word": { @@ -769004,7 +774125,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַחֲסִי": { "word": { @@ -769068,7 +774190,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֻחֲסִין": { "word": { @@ -769125,7 +774248,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָחֵף": { "word": { @@ -769194,11 +774318,12 @@ "nikkud": "יְחֵפוֹת", "ktiv_male": "יחפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵיטִיב": { "word": { @@ -769950,7 +775075,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵיטָב": { "word": { @@ -770032,12 +775158,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NT$e24:=[n" + "plurals_guid": "NT$e24:=[n", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵיטָבִי": { "word": { @@ -770097,7 +775226,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַיִן": { "word": { @@ -770182,12 +775312,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OSLB<1{Ps^" + "plurals_guid": "OSLB<1{Ps^", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹכִיחַ": { "word": { @@ -770939,7 +776072,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּכֵחַ": { "word": { @@ -770954,7 +776088,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be proven, to be convinced (ב-)", + "meaning": "to be proven, to be convinced", "meaning_raw": "to be proven, to be convinced (ב-)", "audio_url": "https://audio.pealim.com/v0/10/100bp6eehsspr.mp3", "audio_file": "להיווכח.mp3", @@ -771378,7 +776512,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "הוֹכָחָה": { "word": { @@ -771466,12 +776601,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ij250k-$3u" + "plurals_guid": "Ij250k-$3u", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַכְטָה": { "word": { @@ -771557,7 +776695,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוּכַל": { "word": { @@ -771953,7 +777092,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְכֹלֶת": { "word": { @@ -772030,12 +777170,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kWIFi`#W%h" + "plurals_guid": "kWIFi`#W%h", + "mishkal": "ktolet", + "mishkal_hebrew": "קְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָלֶדֶת": { "word": { @@ -772491,7 +777634,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹלִיד": { "word": { @@ -773245,7 +778389,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַלֵּד": { "word": { @@ -773680,7 +778825,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֶלֶד": { "word": { @@ -773780,12 +778926,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lTyT?;}*5$" + "plurals_guid": "lTyT?;}*5$", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַלְדָּה": { "word": { @@ -773885,12 +779034,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i4Rh)qhaCR" + "plurals_guid": "i4Rh)qhaCR", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹלֶדֶת": { "word": { @@ -773980,12 +779132,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hCeJ@J1o4o" + "plurals_guid": "hCeJ@J1o4o", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֵדָה": { "word": { @@ -774079,12 +779234,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y(=H@WHBpF" + "plurals_guid": "y(=H@WHBpF", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַלְדוּת": { "word": { @@ -774168,12 +779326,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FXXt$@!(6e" + "plurals_guid": "FXXt$@!(6e", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְלוּדָה": { "word": { @@ -774241,12 +779402,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Hd2r2CsbL$" + "plurals_guid": "Hd2r2CsbL$", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַלְדוּתִי": { "word": { @@ -774318,7 +779482,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֻלֶּדֶת": { "word": { @@ -774407,7 +779572,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּלֵד": { "word": { @@ -774899,7 +780065,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַלֵּד": { "word": { @@ -775637,7 +780804,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹלָדָה": { "word": { @@ -775711,12 +780879,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G5Pp){@Ib3" + "plurals_guid": "G5Pp){@Ib3", + "mishkal": "tiktala", + "mishkal_hebrew": "תִּקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָלִיד": { "word": { @@ -775790,12 +780961,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rHl#aU&}RT" + "plurals_guid": "rHl#aU&}RT", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַלֵּל": { "word": { @@ -776217,7 +781391,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְלָלָה": { "word": { @@ -776278,12 +781453,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m3DbObXvAr" + "plurals_guid": "m3DbObXvAr", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹלַעַת": { "word": { @@ -776368,12 +781546,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ee=`9r*8u}" + "plurals_guid": "Ee=`9r*8u}", + "mishkal": "tiktelet", + "mishkal_hebrew": "תִּקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָמִין": { "word": { @@ -776453,7 +781634,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַמָּה": { "word": { @@ -776521,7 +781703,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַמִּי": { "word": { @@ -776598,7 +781781,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָם": { "word": { @@ -776692,7 +781876,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְמָמָה": { "word": { @@ -776755,12 +781940,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oiu$-yhjEn" + "plurals_guid": "oiu$-yhjEn", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֻמָּן": { "word": { @@ -776816,11 +782004,12 @@ "nikkud": "מְיֻמָּנוֹת", "ktiv_male": "מיומנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֻמָּנוּת": { "word": { @@ -776887,7 +782076,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵימִין": { "word": { @@ -777310,7 +782500,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַמֵּר": { "word": { @@ -777733,7 +782924,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָמְרָה": { "word": { @@ -777795,12 +782987,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "}J7hpDmG>" + "plurals_guid": "}J7hpDmG>", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֻמְרָנִי": { "word": { @@ -777860,7 +783055,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹנוֹת": { "word": { @@ -778583,7 +783779,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַנֵּן": { "word": { @@ -779003,7 +784200,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵינִיק": { "word": { @@ -779732,7 +784930,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיק": { "word": { @@ -780158,7 +785357,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִינֹק": { "word": { @@ -780584,7 +785784,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּינֹקֶת": { "word": { @@ -780654,7 +785855,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּינוֹק": { "word": { @@ -780745,7 +785947,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹנֵק": { "word": { @@ -780810,12 +786013,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Rf{/c{:F,X" + "plurals_guid": "Rf{/c{:F,X", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיסֹד": { "word": { @@ -781244,7 +786450,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְסוֹדִיּוּת": { "word": { @@ -781311,7 +786518,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְסוֹדִי": { "word": { @@ -781377,7 +786585,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִסּוּד": { "word": { @@ -781445,12 +786654,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְסוֹד": { "word": { @@ -781534,12 +786746,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A9?3&5egUm" + "plurals_guid": "A9?3&5egUm", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹסָד": { "word": { @@ -781607,12 +786822,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "taE8z&r~t*" + "plurals_guid": "taE8z&r~t*", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּסֵד": { "word": { @@ -782041,7 +787259,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַסֵּד": { "word": { @@ -782794,7 +788013,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסָּד": { "word": { @@ -782862,12 +788082,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hpg,r1:xb#" + "plurals_guid": "Hpg,r1:xb#", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹסֵף": { "word": { @@ -783122,7 +788345,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹסִיף": { "word": { @@ -783878,7 +789102,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹסֶפֶת": { "word": { @@ -783944,12 +789169,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HHg0!KGW?<" + "plurals_guid": "HHg0!KGW?<", + "mishkal": "tiktelet", + "mishkal_hebrew": "תִּקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתּוֹסֵף": { "word": { @@ -784376,7 +789604,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹסָפָה": { "word": { @@ -784442,12 +789671,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n^:fVdpu" + "plurals_guid": "M=7fDD>dpu", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַסֵּר": { "word": { @@ -785476,7 +790713,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּסָר": { "word": { @@ -785565,7 +790803,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַסֵּר": { "word": { @@ -786292,7 +791531,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּעָד": { "word": { @@ -786307,7 +791547,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הֻפְעַל", - "meaning": "to be designed (for), to be aimed at (ל-)", + "meaning": "to be designed (for), to be aimed at", "meaning_raw": "to be designed (for), to be aimed at (ל-)", "audio_url": "https://audio.pealim.com/v0/1a/1acpc3rkp0sxc.mp3", "audio_file": "822-muad.mp3", @@ -786655,7 +791895,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "לִיעֹד": { "word": { @@ -787083,7 +792324,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַעַד": { "word": { @@ -787176,12 +792418,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t)51RrDL4X" + "plurals_guid": "t)51RrDL4X", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹעִיד": { "word": { @@ -787912,7 +793157,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּעֵד": { "word": { @@ -788361,7 +793607,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַעֵד": { "word": { @@ -789118,7 +794365,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹעֵד": { "word": { @@ -789188,12 +794436,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L[y|s}D]Y{" + "plurals_guid": "L[y|s}D]Y{", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹעֲדוֹן": { "word": { @@ -789281,7 +794532,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּעֵז": { "word": { @@ -789717,7 +794969,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹעֶלֶת": { "word": { @@ -789807,12 +795060,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ABW:>.iKP@" + "plurals_guid": "ABW:>.iKP@", + "mishkal": "tiktelet", + "mishkal_hebrew": "תִּקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹעִיל": { "word": { @@ -789827,7 +795083,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to be useful (ל-)", + "meaning": "to be useful", "meaning_raw": "to be useful (ל-)", "audio_url": "https://audio.pealim.com/v0/4k/4k13pbncy4g1.mp3", "audio_file": "להועיל.mp3", @@ -790566,7 +795822,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "יָעִיל": { "word": { @@ -790624,11 +795881,12 @@ "nikkud": "יְעִילוֹת", "ktiv_male": "יעילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְיַעֲלוּת": { "word": { @@ -790692,12 +795950,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Fd[m4RL-b{" + "plurals_guid": "Fd[m4RL-b{", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַעֵל": { "word": { @@ -790712,7 +795973,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to improve efficiency (of something) (את)", + "meaning": "to improve efficiency (of something)", "meaning_raw": "to improve efficiency (of something) (את)", "audio_url": "https://audio.pealim.com/v0/ua/ua2bc5y4t9lb.mp3", "audio_file": "לייעל.mp3", @@ -791425,7 +796686,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "יָעֵן": { "word": { @@ -791488,7 +796750,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַעַן": { "word": { @@ -791524,7 +796787,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִיעֹף": { "word": { @@ -791946,7 +797210,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַעֶפֶת": { "word": { @@ -792007,12 +797272,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "p0Pz}ye90u" + "plurals_guid": "p0Pz}ye90u", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָעוּץ": { "word": { @@ -792461,7 +797729,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַעֵץ": { "word": { @@ -792476,7 +797745,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to consult (with someone) (עם)", + "meaning": "to consult (with someone)", "meaning_raw": "to consult (with someone) (עם)", "audio_url": "https://audio.pealim.com/v0/1e/1e7hm6zorm6c4.mp3", "audio_file": "להתייעץ.mp3", @@ -792915,7 +798184,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם" }, "יִעוּץ": { "word": { @@ -792982,12 +798252,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yItA4zB~R>" + "plurals_guid": "yItA4zB~R>", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵצָה": { "word": { @@ -793075,12 +798348,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KPkA7>Hg^U" + "plurals_guid": "KPkA7>Hg^U", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּעֵץ": { "word": { @@ -793095,7 +798371,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to consult, to ask for advice (ב-)", + "meaning": "to consult, to ask for advice", "meaning_raw": "to consult, to ask for advice (ב-)", "audio_url": "https://audio.pealim.com/v0/k5/k5o4lu4wd8mn.mp3", "audio_file": "להיוועץ.mp3", @@ -793508,7 +798784,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְיַעֵץ": { "word": { @@ -794255,7 +799532,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְיַעֲצוּת": { "word": { @@ -794322,12 +799600,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ksDv/[^C>w" + "plurals_guid": "ksDv/[^C>w", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹעָצָה": { "word": { @@ -794394,12 +799675,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "v)-_(Yt;f}" + "plurals_guid": "v)-_(Yt;f}", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַעַר": { "word": { @@ -794474,12 +799758,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xo?5OcG1^q" + "plurals_guid": "xo?5OcG1^q", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְפֵהפֶה": { "word": { @@ -794532,7 +799819,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַפֵּחַ": { "word": { @@ -794952,7 +800240,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֹפִי|Adverb": { "word": { @@ -795016,7 +800305,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "יֹפִי|Noun": { "word": { @@ -795096,12 +800386,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s9iQi@..9Y" + "plurals_guid": "s9iQi@..9Y", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיפוֹת": { "word": { @@ -795500,7 +800793,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָפֶה": { "word": { @@ -795584,11 +800878,12 @@ "nikkud": "יָפוֹת", "ktiv_male": "יפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַפּוֹת": { "word": { @@ -796316,7 +801611,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַפְיֵף": { "word": { @@ -796739,7 +802035,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַפְיוּף": { "word": { @@ -796801,12 +802098,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nV_:Sukh8{" + "plurals_guid": "nV_:Sukh8{", + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹפָע": { "word": { @@ -796885,12 +802185,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tA.&,ts*[c" + "plurals_guid": "tA.&,ts*[c", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹפִיעַ": { "word": { @@ -797643,7 +802946,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹפָעָה": { "word": { @@ -797722,12 +803026,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xGQ1fEm},4" + "plurals_guid": "xGQ1fEm},4", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹפָעָה": { "word": { @@ -797811,12 +803118,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rrH2Vc%1o7" + "plurals_guid": "rrH2Vc%1o7", + "mishkal": "tiktala", + "mishkal_hebrew": "תִּקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֵאת": { "word": { @@ -797899,7 +803209,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָצֵאת": { "word": { @@ -798354,7 +803665,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹצִיא": { "word": { @@ -799112,7 +804424,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹצָאָה": { "word": { @@ -799201,12 +804514,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wKwWTS`cB<" + "plurals_guid": "wKwWTS`cB<", + "mishkal": "tiktala", + "mishkal_hebrew": "תִּקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹצָא": { "word": { @@ -799290,12 +804606,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H4{gL/`i^M" + "plurals_guid": "H4{gL/`i^M", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצִיאָה": { "word": { @@ -799389,12 +804708,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wa1>m^Iu![" + "plurals_guid": "wa1>m^Iu![", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹצָאָה": { "word": { @@ -799478,12 +804800,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PNU7H!9Mo+" + "plurals_guid": "PNU7H!9Mo+", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַצֵּא": { "word": { @@ -800215,7 +805540,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִצּוּא": { "word": { @@ -800283,12 +805609,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EKW`!4j|;o" + "plurals_guid": "EKW`!4j|;o", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִצָּב|Adjective": { "word": { @@ -800353,11 +805682,12 @@ "nikkud": "נִצָּבוֹת", "ktiv_male": "ניצבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַצֵּב": { "word": { @@ -800372,7 +805702,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to stabilise (intransitive), to be summoned before (בפני)", + "meaning": "to stabilise (intransitive), to be summoned before", "meaning_raw": "to stabilise (intransitive), to be summoned before (בפני)", "audio_url": "https://audio.pealim.com/v0/dt/dtzwux25qn8w.mp3", "audio_file": "להתייצב.mp3", @@ -800807,7 +806137,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "בפני" }, "יַצִּיבוּת": { "word": { @@ -800874,7 +806205,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצָּב": { "word": { @@ -800968,12 +806300,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P21-m;z>Ad" + "plurals_guid": "P21-m;z>Ad", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִצָּב|Verb": { "word": { @@ -801226,7 +806561,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַצִּיב": { "word": { @@ -801288,11 +806624,12 @@ "nikkud": "יַצִּיבוֹת", "ktiv_male": "יציבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצִּיב": { "word": { @@ -802024,7 +807361,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַצֵּב": { "word": { @@ -802756,7 +808094,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְיַצְּבוּת": { "word": { @@ -802824,12 +808163,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sQD6j/4g)/" + "plurals_guid": "sQD6j/4g)/", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצָּגָה": { "word": { @@ -802912,12 +808254,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "BfSl%0tAum" + "plurals_guid": "BfSl%0tAum", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצֶּגֶת": { "word": { @@ -802984,12 +808329,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D`{%go+o0t" + "plurals_guid": "D`{%go+o0t", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵיצָג": { "word": { @@ -803056,12 +808404,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h_k/WDZt}g" + "plurals_guid": "h_k/WDZt}g", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצִּיג": { "word": { @@ -803818,7 +809169,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַצֵּג": { "word": { @@ -804575,7 +809927,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִצּוּג": { "word": { @@ -804642,12 +809995,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iR-$*pY9m6" + "plurals_guid": "iR-$*pY9m6", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּצוּגָה": { "word": { @@ -804719,7 +810075,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָג": { "word": { @@ -804812,7 +810169,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצִירַת מוֹפֵת": { "word": { @@ -804861,7 +810219,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶצֵּעַ": { "word": { @@ -804923,12 +810282,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iq({AO+^~|" + "plurals_guid": "iq({AO+^~|", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצָּעָה": { "word": { @@ -805011,12 +810373,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MD8TiQ!LgU" + "plurals_guid": "MD8TiQ!LgU", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצִּיעַ": { "word": { @@ -805768,7 +811133,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיצֹק": { "word": { @@ -806191,7 +811557,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּצָק": { "word": { @@ -806546,7 +811913,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּצֵק": { "word": { @@ -806969,7 +812337,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיצֹר": { "word": { @@ -807431,7 +812800,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצִירָתִיּוּת": { "word": { @@ -807511,7 +812881,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִצּוּר": { "word": { @@ -807586,12 +812957,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִוָּצְרוּת": { "word": { @@ -807660,12 +813034,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q`=lC8RXz1" + "plurals_guid": "Q`=lC8RXz1", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֵצֶר": { "word": { @@ -807740,12 +813117,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i(!#+*>{?F" + "plurals_guid": "i(!#+*>{?F", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּצָר": { "word": { @@ -807820,12 +813200,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H+dZorcHv4" + "plurals_guid": "H+dZorcHv4", + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַצְרָן": { "word": { @@ -807900,12 +813283,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nG/u)RRxf{" + "plurals_guid": "nG/u)RRxf{", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצוּר|Noun|creature": { "word": { @@ -807998,12 +813384,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I|~*+Pg/O3" + "plurals_guid": "I|~*+Pg/O3", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצִיר": { "word": { @@ -808078,12 +813467,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mZ0aSYiPya" + "plurals_guid": "mZ0aSYiPya", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָצוּר": { "word": { @@ -808156,11 +813548,12 @@ "nikkud": "יְצוּרוֹת", "ktiv_male": "יצורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִוָּצֵר": { "word": { @@ -808622,7 +814015,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַצֵּר": { "word": { @@ -809361,7 +814755,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצִירָה": { "word": { @@ -809436,12 +814831,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MwWYqac8%K" + "plurals_guid": "MwWYqac8%K", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצִירָתִי": { "word": { @@ -809514,7 +814912,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹצֶרֶת": { "word": { @@ -809589,12 +814988,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nqeg6?nk_p" + "plurals_guid": "nqeg6?nk_p", + "mishkal": "tiktelet", + "mishkal_hebrew": "תִּקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְצוּר|Noun|creature; organism": { "word": { @@ -809648,18 +815050,7 @@ ], "confusables_guid": "l`ze>P9n!s", "examples": { - "vetted": [ - { - "text": "הַמִּשְׁפָּחָה שֶׁלָּנוּ תָּמִיד שָׂנְאָה חֲתוּלִים: יְצוּרִים מַגְעִילִים, שְׁפָלִים וְגַסֵּי־רוּחַ", - "source": "alice_wonderland", - "match_method": "inflected" - }, - { - "text": "מְבַצְּעִים אֶת הַהַכְלָאָה הַזּוֹ כְּדֵי לְהָבִיא לָעוֹלָם יְצוּר חָזָק הַמַּתְאִים לַעֲבוֹדָה קָשָׁה", - "source": "time_tunnel_81", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -809687,12 +815078,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l6qF%YRVMC" + "plurals_guid": "l6qF%YRVMC", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצִּית": { "word": { @@ -809755,12 +815149,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q.)=9*~Y&`" + "plurals_guid": "q.)=9*~Y&`", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצָּתָה": { "word": { @@ -809823,12 +815220,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q{w!jAjLM|" + "plurals_guid": "q{w!jAjLM|", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצָּת": { "word": { @@ -809891,12 +815291,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ghc7`nTOoS" + "plurals_guid": "Ghc7`nTOoS", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצִּית": { "word": { @@ -810623,7 +816026,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֶקֶב": { "word": { @@ -810682,12 +816086,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BgoCn6cWNb" + "plurals_guid": "BgoCn6cWNb", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹקֵד": { "word": { @@ -810748,12 +816155,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p!9fh7bn[k" + "plurals_guid": "p!9fh7bn[k", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיקֹד": { "word": { @@ -811139,7 +816549,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹקִיעַ": { "word": { @@ -811862,7 +817273,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיקֹץ": { "word": { @@ -812178,7 +817590,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיַקֵּר": { "word": { @@ -812606,7 +818019,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹקִיר": { "word": { @@ -813337,7 +818751,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַקִּיר": { "word": { @@ -813404,12 +818819,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s]w;(Bu]J/" + "plurals_guid": "s]w;(Bu]J/", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַקִּירָה": { "word": { @@ -813476,12 +818894,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "j11b@qS3W~" + "plurals_guid": "j11b@qS3W~", + "mishkal": "kattila", + "mishkal_hebrew": "קַטִּילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִיקֹר": { "word": { @@ -813883,7 +819304,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָקָר": { "word": { @@ -813965,11 +819387,12 @@ "nikkud": "יְקָרוֹת", "ktiv_male": "יקרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַקֵּר": { "word": { @@ -813984,7 +819407,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to increase price (for something) (את)", + "meaning": "to increase price (for something)", "meaning_raw": "to increase price (for something) (את)", "audio_url": "https://audio.pealim.com/v0/b2/b2m7l11bucz3.mp3", "audio_file": "לייקר.mp3", @@ -814700,7 +820123,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "הִתְיַקְּרוּת": { "word": { @@ -814767,12 +820191,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B(@:N6p~mj" + "plurals_guid": "B(@:N6p~mj", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹקֵשׁ": { "word": { @@ -814847,12 +820274,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pp==/jU@T[" + "plurals_guid": "pp==/jU@T[", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִירֹא": { "word": { @@ -815297,7 +820727,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְיָרֵא": { "word": { @@ -815721,7 +821152,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹרָא": { "word": { @@ -815804,11 +821236,12 @@ "nikkud": "נוֹרָאוֹת", "ktiv_male": "נוראות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הוֹרָאָה": { "word": { @@ -815897,12 +821330,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B@uxa{|ytH" + "plurals_guid": "B@uxa{|ytH", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹרִיד": { "word": { @@ -816687,7 +822123,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְרִידָה": { "word": { @@ -816767,12 +822204,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "APK0c!#RM^" + "plurals_guid": "APK0c!#RM^", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָרֶדֶת": { "word": { @@ -817223,7 +822663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָרוּד": { "word": { @@ -817281,11 +822722,12 @@ "nikkud": "יְרוּדוֹת", "ktiv_male": "ירודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָרִיד": { "word": { @@ -817349,12 +822791,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wLx~S}TnCi" + "plurals_guid": "wLx~S}TnCi", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְרֹק עַד": { "word": { @@ -817407,7 +822852,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָרֵחַ": { "word": { @@ -817492,12 +822938,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jtS[L>6qiW" + "plurals_guid": "jtS[L>6qiW", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיָרֵט": { "word": { @@ -818222,7 +823671,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִירֹט": { "word": { @@ -818644,7 +824094,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִירוֹת": { "word": { @@ -819096,7 +824547,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹרוֹת": { "word": { @@ -819851,7 +825303,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֶרִי": { "word": { @@ -819916,12 +825369,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "AzT2b5,vBo" + "plurals_guid": "AzT2b5,vBo", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹרָה": { "word": { @@ -820002,12 +825458,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rdc|uIg_]d" + "plurals_guid": "rdc|uIg_]d", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִיָּרוֹת": { "word": { @@ -820459,7 +825918,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹרֶה": { "word": { @@ -820524,12 +825984,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t>MfSBlOKx" + "plurals_guid": "t>MfSBlOKx", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַרְכָּה": { "word": { @@ -820584,12 +826047,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x0ZYj9%@`T" + "plurals_guid": "x0ZYj9%@`T", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָרֵךְ": { "word": { @@ -820650,12 +826116,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "8)}!nAl{E" + "plurals_guid": "8)}!nAl{E", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְרִיעָה": { "word": { @@ -820714,12 +826183,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pkAdU&82[B" + "plurals_guid": "pkAdU&82[B", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַרְקוּת": { "word": { @@ -820781,12 +826253,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "obia%IF%," + "plurals_guid": "j.>ia%IF%,", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִשּׁוּב": { "word": { @@ -827016,12 +832530,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HC-i-]dSUo" + "plurals_guid": "HC-i-]dSUo", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹשֵׁב": { "word": { @@ -827111,12 +832628,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IF!fI}}r:{" + "plurals_guid": "IF!fI}}r:{", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יָשׁוּב": { "word": { @@ -827200,11 +832720,12 @@ "nikkud": "יְשׁוּבוֹת", "ktiv_male": "ישובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֵשׁוּת": { "word": { @@ -827264,7 +832785,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹשִׁיט": { "word": { @@ -828013,7 +833535,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִשּׂוּם": { "word": { @@ -828076,12 +833599,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w>cN1ucN1uHWp2tZr" + "plurals_guid": "eM>HWp2tZr", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַתְמוּת": { "word": { @@ -834810,12 +840386,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ca@fT`NlpD" + "plurals_guid": "Ca@fT`NlpD", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֶתֶר|Noun|rope, cord; hypotenuse": { "word": { @@ -834862,18 +840441,7 @@ ], "confusables_guid": "pJpo_mPM~3", "examples": { - "vetted": [ - { - "text": "– קָרְאוּ גַם יֶתֶר הַיְלָדִים, אַךְ מִיָּד שָׁכְחוּ כִּי הָיוּ עֲסוּקִים בַּאֲרִיזָה וּבְהַעֲבָרָה", - "source": "ilana", - "match_method": "direct" - }, - { - "text": "לְבַסּוֹף נָטְלוּ הַשּׁוֹמְרִים מִגּוּלִיבֶר אֶת הָאֶקְדָּח, אֶת הַכַּדּוּרִים וְאֶת הָאוֹלָר, וְאֶת יֶתֶר הַחֲפָצִים הִשְׁאִירוּ בְּיָדוֹ", - "source": "gulliver", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -834901,12 +840469,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qxa3ABrI]r" + "plurals_guid": "qxa3ABrI]r", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יֶתֶר|Noun|remainder, rest, surplus": { "word": { @@ -834992,12 +840563,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jXk{}):]nB" + "plurals_guid": "jXk{}):]nB", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵיתָר": { "word": { @@ -835082,12 +840656,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t-jp^@N2EM" + "plurals_guid": "t-jp^@N2EM", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהוֹתִיר": { "word": { @@ -835836,7 +841413,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִתְרוֹן": { "word": { @@ -835926,12 +841504,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Jd[t1^?MxU" + "plurals_guid": "Jd[t1^?MxU", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְיֻתָּר": { "word": { @@ -836015,11 +841596,12 @@ "nikkud": "מְיֻתָּרוֹת", "ktiv_male": "מיותרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יוֹתֵר": { "word": { @@ -836034,7 +841616,7 @@ ], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "more, more than (מ־)", + "meaning": "more, more than", "meaning_raw": "more, more than (מ־)", "audio_url": "https://audio.pealim.com/v0/1r/1ruwbtser18if.mp3", "audio_file": "יותר.mp3", @@ -836092,7 +841674,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "מ־" }, "לְהִוָּתֵר": { "word": { @@ -836548,7 +842131,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְיַתֵּר": { "word": { @@ -837307,7 +842891,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יִתְרָה": { "word": { @@ -837376,12 +842961,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sJ3JkT=,uN" + "plurals_guid": "sJ3JkT=,uN", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּ": { "word": { @@ -837456,7 +843044,8 @@ "ktiv_male": "כמוהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְאֹב": { "word": { @@ -837906,7 +843495,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּאֵב": { "word": { @@ -837995,12 +843585,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GxieU2>XqZ" + "plurals_guid": "GxieU2>XqZ", + "mishkal": "ktel", + "mishkal_hebrew": "קְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַכְאוֹב": { "word": { @@ -838063,12 +843656,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pj3HQUjc`3" + "plurals_guid": "pj3HQUjc`3", + "mishkal": "maktol", + "mishkal_hebrew": "מַקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְאִיב": { "word": { @@ -838821,7 +844417,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּאִלּוּ": { "word": { @@ -838880,7 +844477,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כָּאן": { "word": { @@ -838939,7 +844537,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כַּאֲשֶׁר": { "word": { @@ -838998,7 +844597,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְכַּבֵּד": { "word": { @@ -839428,7 +845028,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְבֹּד": { "word": { @@ -839827,7 +845428,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּבוֹד": { "word": { @@ -839916,12 +845518,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּבִידָה": { "word": { @@ -839984,12 +845589,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A_&/9UFjq_" + "plurals_guid": "A_&/9UFjq_", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּבֵד|Noun": { "word": { @@ -840080,12 +845688,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uQi>PHG],d" + "plurals_guid": "uQi>PHG],d", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִכְבָּד": { "word": { @@ -840164,11 +845775,12 @@ "nikkud": "נִכְבָּדוֹת", "ktiv_male": "נכבדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּבֵד|Adjective": { "word": { @@ -840253,11 +845865,12 @@ "nikkud": "כְּבֵדוֹת", "ktiv_male": "כבדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְבִּיד": { "word": { @@ -840990,7 +846603,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּבּוּד": { "word": { @@ -841059,12 +846673,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A6(}RH}:9B" + "plurals_guid": "A6(}RH}:9B", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַבֵּד": { "word": { @@ -841823,7 +847440,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּבוֹת": { "word": { @@ -842248,7 +847866,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּבַּאי": { "word": { @@ -842312,12 +847931,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tZ#o}K=|m!" + "plurals_guid": "tZ#o}K=|m!", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּבּוּי": { "word": { @@ -842375,12 +847997,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BP0b8%i%Sb" + "plurals_guid": "BP0b8%i%Sb", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַבּוֹת": { "word": { @@ -843130,7 +848755,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְבּוֹת": { "word": { @@ -843577,7 +849203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּבְיָכוֹל": { "word": { @@ -843610,7 +849237,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִכְבֹּל": { "word": { @@ -844033,7 +849661,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּבֵל": { "word": { @@ -844456,7 +850085,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּבֶל": { "word": { @@ -844518,12 +850148,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D5e{v,J-L~" + "plurals_guid": "D5e{v,J-L~", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכְבָּסָה": { "word": { @@ -844585,12 +850218,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i-5Vyza+EN" + "plurals_guid": "i-5Vyza+EN", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּבִיסָה": { "word": { @@ -844668,12 +850304,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "dIau_-&]+J" + "plurals_guid": "dIau_-&]+J", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַבֵּס": { "word": { @@ -845399,7 +851038,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְבִּיר": { "word": { @@ -846122,7 +851762,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּבָר": { "word": { @@ -846181,7 +851822,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כֶּבֶשׂ": { "word": { @@ -846268,12 +851910,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ld[vL|-n+" + "plurals_guid": "Ld[vL|-n+", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּבִישָׁה": { "word": { @@ -846337,12 +851982,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nzl{+Th%e?" + "plurals_guid": "nzl{+Th%e?", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּבִישׁ": { "word": { @@ -846432,12 +852080,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x3&Za2,jXv" + "plurals_guid": "x3&Za2,jXv", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּבְשָׂה": { "word": { @@ -846524,12 +852175,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P?rh_1ZCF^" + "plurals_guid": "P?rh_1ZCF^", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּבּוּשׁ": { "word": { @@ -846614,12 +852268,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KUZo3O1s&X" + "plurals_guid": "KUZo3O1s&X", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּבֵשׁ": { "word": { @@ -847060,7 +852717,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְבֹּשׁ": { "word": { @@ -847511,7 +853169,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּגוֹן|Adverb": { "word": { @@ -847544,7 +853203,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּגוֹן|Particle": { "word": { @@ -847577,7 +853237,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּדַאי": { "word": { @@ -847636,7 +853297,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כַּד": { "word": { @@ -847721,12 +853383,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IW7z~Ch$GE" + "plurals_guid": "IW7z~Ch$GE", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּדּוּר": { "word": { @@ -847812,7 +853477,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּדּוּרֶגֶל": { "word": { @@ -847879,7 +853545,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּדּוּרְיָד": { "word": { @@ -847925,7 +853592,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּדּוּרְעָף": { "word": { @@ -847979,7 +853647,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּדֵי": { "word": { @@ -848038,7 +853707,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְכַּדֵּר": { "word": { @@ -848458,7 +854128,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַדְרֵר": { "word": { @@ -849182,7 +854853,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֹּה": { "word": { @@ -849241,7 +854913,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִכְהוֹת": { "word": { @@ -849664,7 +855337,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּהוֹת": { "word": { @@ -850087,7 +855761,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֵּהֶה": { "word": { @@ -850169,11 +855844,12 @@ "nikkud": "כֵּהוֹת", "ktiv_male": "כהות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kete", + "mishkal_hebrew": "" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֹּהַל": { "word": { @@ -850232,12 +855908,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v>]uYnM}`j" + "plurals_guid": "v>]uYnM}`j", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּהֲלָכָה": { "word": { @@ -850270,7 +855949,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּהֻנָּה": { "word": { @@ -850331,12 +856011,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I}ia3/;])p" + "plurals_guid": "I}ia3/;])p", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַהֵן": { "word": { @@ -851061,7 +856744,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹבַע": { "word": { @@ -851142,7 +856826,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֹּחַ": { "word": { @@ -851227,12 +856912,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B-K>BE8[lW" + "plurals_guid": "B-K>BE8[lW", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְווֹת": { "word": { @@ -851656,7 +857344,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּוִיָּה": { "word": { @@ -851719,12 +857408,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IOQX@7?0H5" + "plurals_guid": "IOQX@7?0H5", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּווּי": { "word": { @@ -851781,11 +857473,12 @@ "nikkud": "כְּווּיוֹת", "ktiv_male": "כוויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּווֹת": { "word": { @@ -852209,7 +857902,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹכָב": { "word": { @@ -852295,7 +857989,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹכַב לֶכֶת": { "word": { @@ -852344,7 +858039,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹכָבִית": { "word": { @@ -852404,7 +858100,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָכִיל": { "word": { @@ -853148,7 +858845,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵכָל": { "word": { @@ -853212,7 +858910,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכוּלָה": { "word": { @@ -853276,12 +858975,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EOl}Xo.78z" + "plurals_guid": "EOl}Xo.78z", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵכָלִית": { "word": { @@ -853350,7 +859052,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּכוּלָה": { "word": { @@ -853408,12 +859111,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G}(psOPA.Q" + "plurals_guid": "G}(psOPA.Q", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכוֹנָאוּת": { "word": { @@ -853494,7 +859200,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָכִין": { "word": { @@ -854266,7 +859973,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַוֵּן": { "word": { @@ -855028,7 +860736,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכוֹנֵן": { "word": { @@ -855774,7 +861483,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּוֵּן": { "word": { @@ -856243,7 +861953,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכּוֹנֵן": { "word": { @@ -856712,7 +862423,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹנְנוּת": { "word": { @@ -856793,7 +862505,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכּוֹן": { "word": { @@ -857262,7 +862975,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּוּוּן": { "word": { @@ -857356,12 +863070,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vZ#Bo`!4L|" + "plurals_guid": "vZ#Bo`!4L|", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְוִין": { "word": { @@ -858107,7 +863824,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּוָּנָה": { "word": { @@ -858189,12 +863907,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E^vGG%b^p8" + "plurals_guid": "E^vGG%b^p8", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָכוֹן": { "word": { @@ -858276,12 +863997,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OpDkFZ>rsP" + "plurals_guid": "OpDkFZ>rsP", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּכוּנָה": { "word": { @@ -858363,12 +864087,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rL~d7LR`_v" + "plurals_guid": "rL~d7LR`_v", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּכָן": { "word": { @@ -858470,11 +864197,12 @@ "nikkud": "מוּכָנוֹת", "ktiv_male": "מוכנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָכוֹן": { "word": { @@ -858576,11 +864304,12 @@ "nikkud": "נְכוֹנוֹת", "ktiv_male": "נכונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲכָנָה": { "word": { @@ -858678,12 +864407,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fJF_wmX+Q6" + "plurals_guid": "fJF_wmX+Q6", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכוֹנִית": { "word": { @@ -858791,7 +864523,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹנָן|Noun|disk drive (computing); stand, rack": { "word": { @@ -858876,7 +864609,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹנָן|Noun|on-duty officer (doctor, technician, etc.)": { "word": { @@ -858961,7 +864695,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֵּיוָן": { "word": { @@ -858976,7 +864711,7 @@ ], "pos": "Conjunction", "pos_hebrew": "מִילַּת חִבּוּר", - "meaning": "because (ש־)", + "meaning": "because", "meaning_raw": "because (ש־)", "audio_url": "https://audio.pealim.com/v0/16/168p3kde5n3fv.mp3", "audio_file": "8557-kevan.mp3", @@ -859043,7 +864778,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "ש־" }, "מְכוֹנַאי": { "word": { @@ -859130,7 +864866,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכִינָה": { "word": { @@ -859212,12 +864949,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P$K0SQM!:)" + "plurals_guid": "P$K0SQM!:)", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכוֹנָה": { "word": { @@ -859330,7 +865070,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹס": { "word": { @@ -859406,7 +865147,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֻּסְבָּרָה": { "word": { @@ -859457,7 +865199,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֻּסְמִין": { "word": { @@ -859511,7 +865254,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַוֵּץ": { "word": { @@ -860238,7 +865982,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּוֵּץ": { "word": { @@ -860683,7 +866428,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְכַּוְּצוּת": { "word": { @@ -860746,12 +866492,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Jk/Y>fX=6W" + "plurals_guid": "Jk/Y>fX=6W", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּוּוּץ": { "word": { @@ -860814,12 +866563,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qwQZnniho%" + "plurals_guid": "qwQZnniho%", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּוְרָן": { "word": { @@ -860880,12 +866632,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xZ4i=hu/q:" + "plurals_guid": "xZ4i=hu/q:", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּוֶּרֶת": { "word": { @@ -860946,12 +866701,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J(%)-_4b(J" + "plurals_guid": "J(%)-_4b(J", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוּר": { "word": { @@ -861011,7 +866769,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֻּרְסָה": { "word": { @@ -861071,7 +866830,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּזֵב": { "word": { @@ -861494,7 +867254,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַזֵּב": { "word": { @@ -862220,7 +867981,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְזִיב": { "word": { @@ -862946,7 +868708,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַכְחָדָה": { "word": { @@ -863009,12 +868772,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Et9(p)%" + "plurals_guid": "zizM{OX;*>", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּכְלִית": { "word": { @@ -874987,12 +880836,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yBlIL5UFpz" + "plurals_guid": "yBlIL5UFpz", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּלִמָּה": { "word": { @@ -875052,7 +880904,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּלְכֵּל": { "word": { @@ -875477,7 +881330,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּלְכָּלָה": { "word": { @@ -875541,12 +881395,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "F*}H*1hlB=" + "plurals_guid": "F*}H*1hlB=", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּלְכָּלִי": { "word": { @@ -875608,7 +881465,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַלְכֵּל": { "word": { @@ -876336,7 +882194,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּלֵל": { "word": { @@ -876769,7 +882628,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּלָלוּת": { "word": { @@ -876840,7 +882700,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּלָל": { "word": { @@ -876938,12 +882799,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "(LeKa]CoO" + "plurals_guid": "(LeKa]CoO", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכְלָלָה": { "word": { @@ -877015,12 +882879,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FA;BopV1IJ" + "plurals_guid": "FA;BopV1IJ", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכְלוֹל": { "word": { @@ -877092,12 +882959,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z#.L+wsXxy" + "plurals_guid": "z#.L+wsXxy", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֹּל": { "word": { @@ -877189,12 +883059,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IgYk+7sw;z" + "plurals_guid": "IgYk+7sw;z", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹלֵל": { "word": { @@ -877244,7 +883117,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כָּלִיל": { "word": { @@ -877310,7 +883184,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּלָלִי": { "word": { @@ -877401,7 +883276,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְלִיל": { "word": { @@ -878137,7 +884013,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְלֹל": { "word": { @@ -878570,7 +884447,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּלוּל": { "word": { @@ -878636,11 +884514,12 @@ "nikkud": "כְּלוּלוֹת", "ktiv_male": "כלולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּלָּה": { "word": { @@ -878728,12 +884607,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PE_t;H!w{q" + "plurals_guid": "PE_t;H!w{q", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְלִים": { "word": { @@ -879458,7 +885340,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּלֵם": { "word": { @@ -879880,7 +885763,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּלַפֵּי": { "word": { @@ -879981,7 +885865,8 @@ "ktiv_male": "כלפיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְמֹהַּ": { "word": { @@ -879996,7 +885881,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to yearn, to long for (ל־)", + "meaning": "to yearn, to long for", "meaning_raw": "to yearn, to long for (ל־)", "audio_url": "https://audio.pealim.com/v0/nn/nni9uh2vvoxp.mp3", "audio_file": "לכמוה.mp3", @@ -880349,7 +886234,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "כַּמָּה": { "word": { @@ -880408,7 +886294,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּמוֹ": { "word": { @@ -880509,7 +886396,8 @@ "ktiv_male": "כמוהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּמּוּבָן": { "word": { @@ -880568,7 +886456,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּמוֹת": { "word": { @@ -880646,7 +886535,8 @@ "ktiv_male": "כמותן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּמּוּת": { "word": { @@ -880718,7 +886608,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּמְעַט": { "word": { @@ -880777,7 +886668,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כֹּמֶר": { "word": { @@ -880838,12 +886730,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "PJyyNnG}`A" + "plurals_guid": "PJyyNnG}`A", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּמוּרָה": { "word": { @@ -880898,12 +886793,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Es3^i6?X:~" + "plurals_guid": "Es3^i6?X:~", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּמּוּת": { "word": { @@ -880964,12 +886862,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h~RGSG(pr]" + "plurals_guid": "h~RGSG(pr]", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַּמֵּת": { "word": { @@ -881694,7 +887595,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֵּן|Adverb": { "word": { @@ -881728,29 +887630,14 @@ ], "confusables_guid": "vQ_py>btil", "examples": { - "vetted": [ - { - "text": "\" קָרְאָה אַלִיס אַחֲרָיו; וְהָאֲחֵרִים הִצְטָרְפוּ כֻּלָּם בְּמַקְהֵלָה, \"כֵּן, בְּבַקָּשָׁה תַּחְזֹר", - "source": "alice_wonderland", - "match_method": "direct" - }, - { - "text": "עַל כֵּן יָצְאָה לְחַפֵּשׂ אֶת הַקִּפּוֹד שֶׁלָּהּ", - "source": "alice_wonderland", - "match_method": "direct" - }, - { - "text": "\"קָדִימָה, אִם כֵּן,\" אָמְרָה הַמַּלְכָּה, \"וְהוּא יְסַפֵּר לָךְ אֶת תּוֹלְדוֹתָיו", - "source": "alice_wonderland", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כֵּן|Adjective": { "word": { @@ -881826,7 +887713,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּן צִיּוּר": { "word": { @@ -881875,7 +887763,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנֶגֶד": { "word": { @@ -881971,7 +887860,8 @@ "ktiv_male": "כנגדן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֵּנוּת": { "word": { @@ -882025,7 +887915,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּנּוּי": { "word": { @@ -882108,12 +887999,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cvp2|ofeus" + "plurals_guid": "cvp2|ofeus", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּנּוֹת": { "word": { @@ -882536,7 +888430,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַנּוֹת": { "word": { @@ -883278,7 +889173,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּנָּה": { "word": { @@ -883341,12 +889237,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xWCq*k]c:*" + "plurals_guid": "xWCq*k]c:*", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּן": { "word": { @@ -883413,12 +889312,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Xz/b/Cqh0" + "plurals_guid": "Xz/b/Cqh0", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּנֶּנֶת": { "word": { @@ -883481,12 +889383,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t6l}u=}4U@" + "plurals_guid": "t6l}u=}4U@", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּנּוּן": { "word": { @@ -883549,12 +889454,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E&IPDRPRNv" + "plurals_guid": "E&IPDRPRNv", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּנֵס": { "word": { @@ -884013,7 +889921,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּנֵּס": { "word": { @@ -884446,7 +890355,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנֶסֶת": { "word": { @@ -884539,12 +890449,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E5dp03BKO_" + "plurals_guid": "E5dp03BKO_", + "mishkal": "ktelet", + "mishkal_hebrew": "קְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנִיסָה": { "word": { @@ -884632,12 +890545,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "slv3Jz8fjK" + "plurals_guid": "slv3Jz8fjK", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַכְנָסָה": { "word": { @@ -884709,12 +890625,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ycp[DGf#<6" + "plurals_guid": "ycp[DGf#<6", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִכָּנְסוּת": { "word": { @@ -884786,12 +890705,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HniW^P|a[y" + "plurals_guid": "HniW^P|a[y", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְנִיס": { "word": { @@ -885584,7 +891506,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַנֵּס": { "word": { @@ -886320,7 +892243,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּנֶס": { "word": { @@ -886392,12 +892316,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K_0LAmQb-U" + "plurals_guid": "K_0LAmQb-U", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּנּוּס": { "word": { @@ -886469,12 +892396,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C})JsMi#9m" + "plurals_guid": "C})JsMi#9m", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכְנָסַיִם": { "word": { @@ -886566,12 +892496,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m-dGohgKi&" + "plurals_guid": "m-dGohgKi&", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנֵסִיָּה": { "word": { @@ -886664,7 +892597,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְכַּנְּסוּת": { "word": { @@ -886736,12 +892670,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ml/y7Y=bwO" + "plurals_guid": "Ml/y7Y=bwO", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִכָּנְעוּת": { "word": { @@ -886799,12 +892736,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EvP+G,1?w-" + "plurals_guid": "EvP+G,1?w-", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּנוּעַ": { "word": { @@ -886862,11 +892802,12 @@ "nikkud": "כְּנוּעוֹת", "ktiv_male": "כנועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנִיעָה": { "word": { @@ -886930,12 +892871,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EOSeJYoxTt" + "plurals_guid": "EOSeJYoxTt", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְנִיעַ": { "word": { @@ -887663,7 +893607,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּנֵעַ": { "word": { @@ -888114,7 +894059,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנַעַן": { "word": { @@ -888176,7 +894122,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּנָף": { "word": { @@ -888258,12 +894205,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N&9nzY^g@e" + "plurals_guid": "N&9nzY^g@e", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּנוּפְיָה": { "word": { @@ -888329,7 +894279,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּנָּר": { "word": { @@ -888390,12 +894341,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Z-@KUcEIz" + "plurals_guid": "Z-@KUcEIz", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּנּוֹר": { "word": { @@ -888472,7 +894426,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּנִּרְאֶה": { "word": { @@ -888531,7 +894486,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כִּסֵּא": { "word": { @@ -888613,12 +894569,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p|J/qxT,>(" + "plurals_guid": "p|J/qxT,>(", + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֵּס": { "word": { @@ -888686,7 +894645,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַסֵּחַ": { "word": { @@ -889409,7 +895369,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּסוּת": { "word": { @@ -889474,12 +895435,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OWCh6P}DrV" + "plurals_guid": "OWCh6P}DrV", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּסּוֹת": { "word": { @@ -889494,7 +895458,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to cover oneself (ב-)", + "meaning": "to cover oneself", "meaning_raw": "to cover oneself (ב-)", "audio_url": "https://audio.pealim.com/v0/k6/k6s88wc1do0.mp3", "audio_file": "להתכסות.mp3", @@ -889921,7 +895885,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "מִכְסָה": { "word": { @@ -890015,12 +895980,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכְסֶה": { "word": { @@ -890102,12 +896070,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s#Pby4R0-#" + "plurals_guid": "ohfxhzg>-#", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּפָר": { "word": { @@ -901854,7 +907907,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּפָּרָה": { "word": { @@ -901917,12 +907971,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hZ@z03EGp3" + "plurals_guid": "hZ@z03EGp3", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַפֵּר": { "word": { @@ -902649,7 +908706,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַכְפָּשָׁה": { "word": { @@ -902710,12 +908768,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fKK~{acJYn" + "plurals_guid": "fKK~{acJYn", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְפִּישׁ": { "word": { @@ -903440,7 +909501,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְפֹּת": { "word": { @@ -903874,7 +909936,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּפֵת": { "word": { @@ -904296,7 +910359,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּפְתּוֹר": { "word": { @@ -904367,7 +910431,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַפְתֵּר": { "word": { @@ -905091,7 +911156,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרָאוּי": { "word": { @@ -905150,7 +911216,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְכַּרְבֵּל": { "word": { @@ -905571,7 +911638,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרָגִיל": { "word": { @@ -905630,7 +911698,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כָּרֶגַע": { "word": { @@ -905689,7 +911758,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כְּרוּב|Noun|cherub (angel)": { "word": { @@ -905722,13 +911792,7 @@ ], "confusables_guid": "Q=3|U!#g%]", "examples": { - "vetted": [ - { - "text": "הַנָּסִיךְ הַקָּטָן הִבְחִין בָּהֶן וּפָרַץ בִּצְחוֹק: \"עֲצֵי הַבָּאוֹבַּבּ שֶׁלְּךָ מַזְכִּירִים רָאשֵׁי כְּרוּב", - "source": "little_prince", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -905761,7 +911825,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּרוּב|Noun|cabbage": { "word": { @@ -905833,7 +911898,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּרוּבִית": { "word": { @@ -905893,7 +911959,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרוֹז": { "word": { @@ -905969,12 +912036,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּרוּז": { "word": { @@ -906041,12 +912111,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g-9+a6b=F{" + "plurals_guid": "g-9+a6b=F{", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַכְרָזָה": { "word": { @@ -906126,12 +912199,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A/4HlI,myL3I" + "plurals_guid": "D&/8>myL3I", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּרוֹת": { "word": { @@ -909024,7 +915119,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּרִיָּה": { "word": { @@ -909087,12 +915183,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wbt!`f,j6C" + "plurals_guid": "wbt!`f,j6C", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרִישׁ": { "word": { @@ -909163,7 +915262,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרוּךְ": { "word": { @@ -909178,7 +915278,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "wrapped, bound, wound; including, involving (ב־); obsessed with (אחרי)", + "meaning": "wrapped, bound, wound; including, involving ; obsessed with", "meaning_raw": "wrapped, bound, wound; including, involving (ב־); obsessed with (אחרי)", "audio_url": "https://audio.pealim.com/v0/ra/raisjjwpfhbz.mp3", "audio_file": "כרוך.mp3", @@ -909225,11 +915325,12 @@ "nikkud": "כְּרוּכוֹת", "ktiv_male": "כרוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־ אחרי" }, "לִכְרֹךְ": { "word": { @@ -909684,7 +915785,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּרוּכִית": { "word": { @@ -909757,7 +915859,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּרֶךְ": { "word": { @@ -909825,12 +915928,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E)pMC1GU{q" + "plurals_guid": "E)pMC1GU{q", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּכְרִיכִים": { "word": { @@ -909892,12 +915998,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xsF2h0%rN+" + "plurals_guid": "xsF2h0%rN+", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּכְרִיךְ": { "word": { @@ -909965,12 +916074,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N-6I*V_Yj{" + "plurals_guid": "N-6I*V_Yj{", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרִיךְ": { "word": { @@ -910038,12 +916150,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IK90(hH(v1" + "plurals_guid": "IK90(hH(v1", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּרִיכָה": { "word": { @@ -910111,12 +916226,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gs3LZgM127" + "plurals_guid": "Gs3LZgM127", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּרֵךְ": { "word": { @@ -910545,7 +916663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּרְכֹּב": { "word": { @@ -910600,7 +916719,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּרְכֹּם": { "word": { @@ -910660,7 +916780,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַרְכֵּר": { "word": { @@ -911400,7 +917521,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּרֶם": { "word": { @@ -911475,12 +917597,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "laqxUEA>sb" + "plurals_guid": "laqxUEA>sb", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרֵס": { "word": { @@ -911539,12 +917664,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tR<+mlj|Rx" + "plurals_guid": "tR<+mlj|Rx", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַרְסֵם": { "word": { @@ -912287,7 +918415,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכַרְסֵם": { "word": { @@ -912350,12 +918479,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Pb%Q_5F$BW" + "plurals_guid": "Pb%Q_5F$BW", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּרְסוּם": { "word": { @@ -912434,12 +918566,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j.;ebmk.=v" + "plurals_guid": "j.;ebmk.=v", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְרֹעַ": { "word": { @@ -912878,7 +919013,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּרַע": { "word": { @@ -912940,12 +919076,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r0~8dS,gVK" + "plurals_guid": "r0~8dS,gVK", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְרִיעַ": { "word": { @@ -913671,7 +919810,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּרְפַּס": { "word": { @@ -913720,7 +919860,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּר": { "word": { @@ -913807,12 +919948,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F#qeu./~yz" + "plurals_guid": "F#qeu./~yz", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כָּרִית": { "word": { @@ -913878,7 +920022,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּרֵת": { "word": { @@ -914301,7 +920446,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְרֹת": { "word": { @@ -914736,7 +920882,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְרִית": { "word": { @@ -915159,7 +921306,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּכְשִׁיט": { "word": { @@ -915234,12 +921382,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o?$|pNhaIu" + "plurals_guid": "o?$|pNhaIu", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַשְׁכֵּשׁ": { "word": { @@ -915681,7 +921832,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִכָּשֵׁל": { "word": { @@ -916108,7 +922260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכְשׁוֹל": { "word": { @@ -916174,12 +922327,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x`g[9b#<|P" + "plurals_guid": "x`g[9b#<|P", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּשָּׁלוֹן": { "word": { @@ -916245,12 +922401,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pt~.MA(qf0" + "plurals_guid": "pt~.MA(qf0", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּשֶׁל": { "word": { @@ -916316,12 +922475,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IgF~+*E-$l" + "plurals_guid": "IgF~+*E-$l", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַכְשֵׁלָה": { "word": { @@ -916387,12 +922549,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L*>l$adgxN" + "plurals_guid": "L*>l$adgxN", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְשִׁיל": { "word": { @@ -917122,7 +923287,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְשֹׁל": { "word": { @@ -917549,7 +923715,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּשּׁוּף": { "word": { @@ -917605,12 +923772,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "c[=kVwv/CE" + "plurals_guid": "c[=kVwv/CE", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכַשֵּׁף": { "word": { @@ -917672,12 +923842,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ihU" + "plurals_guid": "Pw<1!i|L>U", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְכַתֵּר": { "word": { @@ -926627,7 +932896,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכְתִּיר": { "word": { @@ -927354,7 +933624,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כֶּתֶר": { "word": { @@ -927417,12 +933688,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DV!gP5bB]m" + "plurals_guid": "DV!gP5bB]m", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כּוֹתֶרֶת": { "word": { @@ -927501,12 +933775,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Jm[/3ma]w`" + "plurals_guid": "Jm[/3ma]w`", + "mishkal": "kotelet", + "mishkal_hebrew": "קוֹטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְכַּתֵּשׁ": { "word": { @@ -927930,7 +934207,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַכְתֵּשׁ": { "word": { @@ -927993,12 +934271,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zhYZ7hlBdy" + "plurals_guid": "zhYZ7hlBdy", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כְּתִישָׁה": { "word": { @@ -928061,12 +934342,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Qd.VWKmO^i" + "plurals_guid": "Qd.VWKmO^i", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְתֹּשׁ": { "word": { @@ -928490,7 +934774,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כַּת": { "word": { @@ -928552,12 +934837,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tv6(*>oXVY" + "plurals_guid": "tv6(*>oXVY", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִכְתֹּת": { "word": { @@ -928980,7 +935268,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "כִּתָּה": { "word": { @@ -929068,12 +935357,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sIZrjswTs3" + "plurals_guid": "sIZrjswTs3", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְ": { "word": { @@ -929148,7 +935440,8 @@ "ktiv_male": "להן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֹא": { "word": { @@ -929207,7 +935500,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְאֹרֶךְ": { "word": { @@ -929308,7 +935602,8 @@ "ktiv_male": "לאורכן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאַחַר": { "word": { @@ -929363,7 +935658,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לָאַחֲרוֹנָה": { "word": { @@ -929412,7 +935708,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְאַט": { "word": { @@ -929471,7 +935768,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִלָּאוֹת": { "word": { @@ -929894,7 +936192,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְאוֹת": { "word": { @@ -930620,7 +936919,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְאוֹת": { "word": { @@ -931043,7 +937343,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְאָךְ": { "word": { @@ -931104,12 +937405,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rJL*F6Q%L{" + "plurals_guid": "rJL*F6Q%L{", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלָאכוּתִי": { "word": { @@ -931168,7 +937472,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאֹם": { "word": { @@ -931230,7 +937535,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְאִים": { "word": { @@ -931956,7 +938262,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאֻמִּי": { "word": { @@ -932037,7 +938344,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְאָן": { "word": { @@ -932096,7 +938404,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לֵב": { "word": { @@ -932183,12 +938492,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kS/TO3bB`j" + "plurals_guid": "kS/TO3bB`j", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַבֵּב": { "word": { @@ -932913,7 +939225,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָבִיד": { "word": { @@ -932972,12 +939285,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e:/e3qUHC%" + "plurals_guid": "e:/e3qUHC%", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַבֵּט": { "word": { @@ -933425,7 +939741,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְלַבְּטוּת": { "word": { @@ -933496,12 +939813,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zHyIpI){!`" + "plurals_guid": "zHyIpI){!`", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַבּוֹת": { "word": { @@ -934224,7 +940544,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָבִיא": { "word": { @@ -934279,7 +940600,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִבְלוּב": { "word": { @@ -934335,12 +940657,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eWlk6C4BU^" + "plurals_guid": "eWlk6C4BU^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַבְלֵב": { "word": { @@ -935087,7 +941412,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְבֵּן": { "word": { @@ -935153,12 +941479,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NDTAS?.#Ok" + "plurals_guid": "NDTAS?.#Ok", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָבָן": { "word": { @@ -935244,11 +941573,12 @@ "nikkud": "לְבָנוֹת", "ktiv_male": "לבנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבָנָה": { "word": { @@ -935330,12 +941660,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבֵנָה": { "word": { @@ -935413,12 +941746,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iule/d*9JV" + "plurals_guid": "iule/d*9JV", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֹבֶן": { "word": { @@ -935494,12 +941830,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y#J6l?,X^w" + "plurals_guid": "y#J6l?,X^w", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַבֵּן": { "word": { @@ -936229,7 +942568,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְבִּין": { "word": { @@ -936975,7 +943315,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְבֹּשׁ": { "word": { @@ -937428,7 +943769,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַבֵּשׁ": { "word": { @@ -937902,7 +944244,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּלְבֹּשֶׁת": { "word": { @@ -937968,12 +944311,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qXL#Rtv)nZ" + "plurals_guid": "qXL#Rtv)nZ", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַלְבָּשָׁה": { "word": { @@ -938039,12 +944385,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t[KQbZ:~y7" + "plurals_guid": "t[KQbZ:~y7", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְבוּשׁ": { "word": { @@ -938123,12 +944472,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O/Py%]M22s" + "plurals_guid": "O/Py%]M22s", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָבוּשׁ": { "word": { @@ -938201,11 +944553,12 @@ "nikkud": "לְבוּשׁוֹת", "ktiv_male": "לבושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְבִּישׁ": { "word": { @@ -938961,7 +945314,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּבֵשׁ": { "word": { @@ -939381,7 +945735,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְגַבֵּי": { "word": { @@ -939477,7 +945832,8 @@ "ktiv_male": "לגביהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְגֵּז": { "word": { @@ -939538,12 +945894,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m,>JEwW32+" + "plurals_guid": "m,>JEwW32+", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְגֵּזָה": { "word": { @@ -939604,12 +945963,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oG}Ya#s&[@" + "plurals_guid": "oG}Ya#s&[@", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִגְלוּג": { "word": { @@ -939692,12 +946054,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Lo&:K|}^$^" + "plurals_guid": "Lo&:K|}^$^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַגְלֵג": { "word": { @@ -940449,7 +946814,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְגֹּם": { "word": { @@ -940869,7 +947235,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְדִבְרֵי": { "word": { @@ -940960,7 +947327,8 @@ "ktiv_male": "לדבריהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְלַהֲבוּת": { "word": { @@ -941051,12 +947419,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zXTTb6@PzX" + "plurals_guid": "zXTTb6@PzX", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַהֵב": { "word": { @@ -941508,7 +947879,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּהֵב": { "word": { @@ -941950,7 +948322,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְהֹב": { "word": { @@ -942376,7 +948749,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶהָבָה": { "word": { @@ -942457,12 +948831,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e`gAl4B/o6" + "plurals_guid": "e`gAl4B/o6", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְהִיב": { "word": { @@ -943191,7 +949568,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַהֵט": { "word": { @@ -943617,7 +949995,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְהֹט": { "word": { @@ -944069,7 +950448,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַהֵט": { "word": { @@ -944495,7 +950875,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהַט": { "word": { @@ -944554,12 +950935,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ueNK&.=B=-" + "plurals_guid": "ueNK&.=B=-", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְהִיט": { "word": { @@ -945288,7 +951672,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָהִיט": { "word": { @@ -945353,12 +951738,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G.D50<<)fu" + "plurals_guid": "G.D50<<)fu", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְהוֹת": { "word": { @@ -945726,7 +952114,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵפֶךְ": { "word": { @@ -945775,7 +952164,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהַלָּן": { "word": { @@ -945808,7 +952198,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְלַהֵם": { "word": { @@ -946228,7 +952619,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִהוּק": { "word": { @@ -946292,12 +952684,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "el%nb.;hQj" + "plurals_guid": "el%nb.;hQj", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהֲקָה": { "word": { @@ -946387,12 +952782,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JI5?){%];T" + "plurals_guid": "JI5?){%];T", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַהַק": { "word": { @@ -946456,12 +952854,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Cx=XDLBY=p" + "plurals_guid": "Cx=XDLBY=p", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַהֵק": { "word": { @@ -947189,7 +953590,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַהֵק": { "word": { @@ -947614,7 +954016,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַלְוָאָה": { "word": { @@ -947673,12 +954076,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y7x-*Q`jI[" + "plurals_guid": "y7x-*Q`jI[", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִוְיָתָן|Noun|🐳 whale; leviathan, sea monster (biblical)": { "word": { @@ -947741,7 +954147,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִוְיָתָן|Noun|whale; leviathan, sea monster (biblical)": { "word": { @@ -947804,7 +954211,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוּחַ": { "word": { @@ -947885,7 +954293,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוּחִית": { "word": { @@ -947961,7 +954370,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָלִיט": { "word": { @@ -948684,7 +955094,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַלְוָיָה": { "word": { @@ -948752,12 +955163,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hh*hGrJ:b(" + "plurals_guid": "hh*hGrJ:b(", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְווֹת": { "word": { @@ -949189,7 +955603,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַוּוֹת": { "word": { @@ -949634,7 +956049,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַוְיָן": { "word": { @@ -949702,12 +956118,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m+vT;n8syh" + "plurals_guid": "m+vT;n8syh", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִוּוּי": { "word": { @@ -949769,12 +956188,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oTt[A_U:1u" + "plurals_guid": "oTt[A_U:1u", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְווֹת": { "word": { @@ -950506,7 +956928,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּווֹת": { "word": { @@ -950935,7 +957358,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְוַאי": { "word": { @@ -951003,12 +957427,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LpYyzMA`U[" + "plurals_guid": "LpYyzMA`U[", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַוּוֹת": { "word": { @@ -951743,7 +958170,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוּל": { "word": { @@ -951798,7 +958226,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוּלֵא": { "word": { @@ -951847,7 +958276,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לוּלָאָה": { "word": { @@ -951902,7 +958332,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוּלָב": { "word": { @@ -951962,7 +958393,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלוֹנֵן": { "word": { @@ -952416,7 +958848,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָלוֹן": { "word": { @@ -952495,12 +958928,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּלוּנָה": { "word": { @@ -952567,12 +959003,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f,lPIdEycA" + "plurals_guid": "f,lPIdEycA", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלוּנָה": { "word": { @@ -952655,12 +959094,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xr:0!&c%6E" + "plurals_guid": "xr:0!&c%6E", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלִּין": { "word": { @@ -953091,7 +959533,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָלִין": { "word": { @@ -953522,7 +959965,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִינָה": { "word": { @@ -953615,12 +960059,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bvTHB-QL%y" + "plurals_guid": "bvTHB-QL%y", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָלוּן": { "word": { @@ -954074,7 +960521,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָלוּשׁ": { "word": { @@ -954494,7 +960942,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַח": { "word": { @@ -954563,11 +961012,12 @@ "nikkud": "לָחוֹת", "ktiv_male": "לחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶחִי": { "word": { @@ -954642,12 +961092,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mU7*vv|`mV" + "plurals_guid": "mU7*vv|`mV", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחִנָּם": { "word": { @@ -954680,7 +961133,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְלַחֵךְ": { "word": { @@ -955426,7 +961880,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְחֹךְ": { "word": { @@ -955796,7 +962251,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְחֹם": { "word": { @@ -956242,7 +962698,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּחֵם": { "word": { @@ -956698,7 +963155,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְחִימָה": { "word": { @@ -956777,12 +963235,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vmZ}n~Yg+e" + "plurals_guid": "vmZ}n~Yg+e", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶחֶם": { "word": { @@ -956871,12 +963332,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kG]+`F[Ji." + "plurals_guid": "kG]+`F[Ji.", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְחֵם": { "word": { @@ -956945,12 +963409,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A?iVuez!t{" + "plurals_guid": "A?iVuez!t{", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלְחָמָה": { "word": { @@ -957045,12 +963512,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rpTH~FB8:z" + "plurals_guid": "rpTH~FB8:z", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָחְמָה": { "word": { @@ -957119,12 +963589,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pDIB-%SO5t" + "plurals_guid": "pDIB-%SO5t", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְחִים": { "word": { @@ -957857,7 +964330,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחְמָנִיָּה": { "word": { @@ -957926,7 +964400,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוֹחֵם": { "word": { @@ -958021,12 +964496,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eI?YO?G#Mw" + "plurals_guid": "eI?YO?G#Mw", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַחַן": { "word": { @@ -958087,12 +964565,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r3" + "plurals_guid": "tZ2IXkzjk>", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְעֹג": { "word": { @@ -974137,7 +980713,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעַג": { "word": { @@ -974199,12 +980776,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G1#u+M,;`:" + "plurals_guid": "G1#u+M,;`:", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְעִיג": { "word": { @@ -974219,7 +980799,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to mock, to ridicule, to make fun of (על) (lit.)", + "meaning": "to mock, to ridicule, to make fun of (lit.)", "meaning_raw": "to mock, to ridicule, to make fun of (על) (lit.)", "audio_url": "https://audio.pealim.com/v0/uo/uow2rosin6a5.mp3", "audio_file": "להלעיג.mp3", @@ -974627,7 +981207,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְעוֹלָם": { "word": { @@ -974686,7 +981267,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהַלְעִיז": { "word": { @@ -975110,7 +981692,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוֹעֵז": { "word": { @@ -975158,11 +981741,12 @@ "fs": null, "mp": null, "fp": null, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוֹעֲזִי": { "word": { @@ -975223,7 +981807,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לוֹעֲזִיּוּת": { "word": { @@ -975285,7 +981870,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְעִיט": { "word": { @@ -976008,7 +982594,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעִתִּים": { "word": { @@ -976067,7 +982654,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְלַעְלֵעַ": { "word": { @@ -976488,7 +983076,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְעֹס": { "word": { @@ -976934,7 +983523,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֹעַ": { "word": { @@ -977009,12 +983599,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s(fNjLlr6$" + "plurals_guid": "s(fNjLlr6$", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפָחוֹת": { "word": { @@ -977069,7 +983662,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְפִי": { "word": { @@ -977170,7 +983764,8 @@ "ktiv_male": "לפיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפִיכָךְ": { "word": { @@ -977229,7 +983824,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִפְנֵי": { "word": { @@ -977330,7 +983926,8 @@ "ktiv_male": "לפניהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפָנִים": { "word": { @@ -977363,7 +983960,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִפְעָמִים": { "word": { @@ -977422,7 +984020,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְלַפֵּף": { "word": { @@ -978145,7 +984744,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְפֹּת": { "word": { @@ -978586,7 +985186,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפִיתָה": { "word": { @@ -978650,12 +985251,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wxLW!NQ7H?" + "plurals_guid": "wxLW!NQ7H?", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶפֶת": { "word": { @@ -978719,12 +985323,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o-[}}Q}Iw7" + "plurals_guid": "o-[}}Q}Iw7", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּפֵת": { "word": { @@ -979149,7 +985756,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַפֵּת": { "word": { @@ -979877,7 +986485,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפֶתַע": { "word": { @@ -979936,7 +986545,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְלַקֵּחַ": { "word": { @@ -980364,7 +986974,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָקוֹחַ": { "word": { @@ -980452,7 +987063,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָקַחַת": { "word": { @@ -980906,7 +987518,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶקַח": { "word": { @@ -980989,12 +987602,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o+8r9c1`MD" + "plurals_guid": "o+8r9c1`MD", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקִיחָה": { "word": { @@ -981061,12 +987677,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eu/lQUi;ea" + "plurals_guid": "eu/lQUi;ea", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלְקָחַיִם": { "word": { @@ -981127,12 +987746,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BxniUq&f%," + "plurals_guid": "BxniUq&f%,", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלְקַחַת": { "word": { @@ -981199,12 +987821,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K3ZW7xu7a_" + "plurals_guid": "K3ZW7xu7a_", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּקֵחַ": { "word": { @@ -981648,7 +988273,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִלָּקֵט": { "word": { @@ -982075,7 +988701,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַלְקוּט": { "word": { @@ -982141,12 +988768,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bU1>g1Mkq]" + "plurals_guid": "bU1>g1Mkq]", + "mishkal": "yaktul", + "mishkal_hebrew": "יַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְלַקֵּט": { "word": { @@ -982573,7 +989203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַקֵּט": { "word": { @@ -983319,7 +989950,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקּוּט": { "word": { @@ -983385,12 +990017,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ch~zD4``a{" + "plurals_guid": "ch~zD4``a{", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְקֹט": { "word": { @@ -983817,7 +990452,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לֶקֶט": { "word": { @@ -983883,12 +990519,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ac/uDw#lD4" + "plurals_guid": "Ac/uDw#lD4", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִלְקוֹת": { "word": { @@ -983903,7 +990542,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to become ill (with) (ב-)", + "meaning": "to become ill (with)", "meaning_raw": "to become ill (with) (ב-)", "audio_url": "https://audio.pealim.com/v0/4k/4kavm7lvhob7.mp3", "audio_file": "ללקות.mp3", @@ -984312,7 +990951,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לִקּוּי": { "word": { @@ -984375,12 +991015,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h@R:ryi$74" + "plurals_guid": "h@R:ryi$74", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָקוּי": { "word": { @@ -984437,11 +991080,12 @@ "nikkud": "לְקוּיוֹת", "ktiv_male": "לקויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְקוֹת": { "word": { @@ -985168,7 +991812,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְלַקֵּק": { "word": { @@ -985907,7 +992552,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְרַאת": { "word": { @@ -986008,7 +992654,8 @@ "ktiv_male": "לקראתן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרֹחַב": { "word": { @@ -986083,7 +992730,8 @@ "ktiv_male": "לרוחבן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַשָּׁוְא": { "word": { @@ -986116,7 +992764,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִשְׁכָּה": { "word": { @@ -986175,12 +992824,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DiyB]]]Y9>" + "plurals_guid": "DiyB]]]Y9>", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַלְשָׁנָה": { "word": { @@ -986243,12 +992895,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CN*Yy2ph=M" + "plurals_guid": "CN*Yy2ph=M", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשׁוֹן": { "word": { @@ -986327,12 +992982,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e&->=Eh,5}" + "plurals_guid": "e&->=Eh,5}", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בַּלְשָׁן": { "word": { @@ -986395,7 +993053,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַלְשִׁין": { "word": { @@ -986819,7 +993478,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלְתָּחָה": { "word": { @@ -986878,12 +993538,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xtMDl{fJ~#" + "plurals_guid": "xtMDl{fJ~#", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵאָה": { "word": { @@ -986969,7 +993632,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְאֹד": { "word": { @@ -987028,7 +993692,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מֵאָז": { "word": { @@ -987087,7 +993752,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מְאַיִן": { "word": { @@ -987146,7 +993812,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְמָאֵן": { "word": { @@ -987869,7 +994536,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְאֹס": { "word": { @@ -988313,7 +994981,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּאֵס": { "word": { @@ -988736,7 +995405,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְאִיס": { "word": { @@ -988751,7 +995421,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to cause disgust (for something) (על)", + "meaning": "to cause disgust (for something)", "meaning_raw": "to cause disgust (for something) (על)", "audio_url": "https://audio.pealim.com/v0/1x/1xrarzqtdhwcn.mp3", "audio_file": "להמאיס.mp3", @@ -989462,7 +996132,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "מֵאֲשֶׁר": { "word": { @@ -989521,7 +996192,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מָאתַיִם": { "word": { @@ -989575,7 +996247,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מִגְדַּלּוֹר": { "word": { @@ -989635,7 +996308,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְמֻגָּז": { "word": { @@ -989688,11 +996362,12 @@ "nikkud": "מְמֻגָּזוֹת", "ktiv_male": "ממוגזות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְגַמָּה": { "word": { @@ -989747,7 +996422,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַגֵּן": { "word": { @@ -990496,7 +997172,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַגְנֵט": { "word": { @@ -990919,7 +997596,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַגְנֶט": { "word": { @@ -990974,7 +997652,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַגְנֵט": { "word": { @@ -991700,7 +998379,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַגָּף": { "word": { @@ -991775,12 +998455,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "XxU9T2MaH" + "plurals_guid": "XxU9T2MaH", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַגֵּר": { "word": { @@ -992521,7 +999204,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמְגּוּרָה": { "word": { @@ -992587,7 +999271,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדָּתִי": { "word": { @@ -992655,7 +999340,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּדֵד": { "word": { @@ -993086,7 +999772,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדָּה": { "word": { @@ -993172,12 +999859,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "BGK90&*5z}" + "plurals_guid": "BGK90&*5z}", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדִידָה": { "word": { @@ -993247,12 +999937,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oN@@x(5H*R" + "plurals_guid": "oN@@x(5H*R", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדָּד": { "word": { @@ -993322,12 +1000015,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rQ@Nl/kIoA" + "plurals_guid": "rQ@Nl/kIoA", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְמוֹדְדוּת": { "word": { @@ -993397,12 +1000093,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w1J-SscH]>" + "plurals_guid": "w1J-SscH]>", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדִּים": { "word": { @@ -993492,12 +1000191,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ssOM_s9/)-" + "plurals_guid": "ssOM_s9/)-", + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָמֹד": { "word": { @@ -993931,7 +1000633,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמוֹדֵד": { "word": { @@ -993946,7 +1000649,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to compete (with someone), to withstand, to deal with (עם)", + "meaning": "to compete (with someone), to withstand, to deal with", "meaning_raw": "to compete (with someone), to withstand, to deal with (עם)", "audio_url": "https://audio.pealim.com/v0/13/1382fdqvqrumj.mp3", "audio_file": "להתמודד.mp3", @@ -994383,7 +1001086,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם" }, "מֵמַד": { "word": { @@ -994453,7 +1001157,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדָּתִיּוּת": { "word": { @@ -994528,7 +1001233,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶדוּזָה": { "word": { @@ -994588,7 +1001294,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדּוּעַ": { "word": { @@ -994647,7 +1001354,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מַדְחָן": { "word": { @@ -994707,7 +1001415,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶדִיטַצְיָה": { "word": { @@ -994761,7 +1001470,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְדִינִיּוּת": { "word": { @@ -994816,7 +1001526,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדּוּר": { "word": { @@ -994869,12 +1001580,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g5vLkQRd.z" + "plurals_guid": "g5vLkQRd.z", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְרוֹן": { "word": { @@ -994950,7 +1001664,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִדְרוֹנִי": { "word": { @@ -995003,7 +1001718,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַה": { "word": { @@ -995062,7 +1001778,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מַהוּת": { "word": { @@ -995122,7 +1001839,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַהוּתִי": { "word": { @@ -995175,7 +1001893,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהֵימָן|Adjective|credible, reliable, trustworthy": { "word": { @@ -995228,7 +1001947,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְהֹל": { "word": { @@ -995650,7 +1002370,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּהֵל": { "word": { @@ -996072,7 +1002793,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַהְמֵהַּ": { "word": { @@ -996509,7 +1003231,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְהִירוּת": { "word": { @@ -996603,7 +1003326,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָהִיר": { "word": { @@ -996681,11 +1003405,12 @@ "nikkud": "מְהִירוֹת", "ktiv_male": "מהירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַהֵר": { "word": { @@ -997438,7 +1004163,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַהֵר": { "word": { @@ -997505,7 +1004231,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִמּוֹג": { "word": { @@ -997927,7 +1004654,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמוֹגֵג": { "word": { @@ -998365,7 +1005093,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹדֶל": { "word": { @@ -998419,7 +1005148,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹדֶרְנִי": { "word": { @@ -998472,7 +1005202,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּזֵאוֹן": { "word": { @@ -998548,7 +1005279,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּזִיקָה": { "word": { @@ -998628,7 +1005360,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמוֹטֵט": { "word": { @@ -999358,7 +1006091,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמוֹטֵט": { "word": { @@ -999806,7 +1006540,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָמוּט": { "word": { @@ -1000233,7 +1006968,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמּוֹט": { "word": { @@ -1000660,7 +1007396,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְמוֹטְטוּת": { "word": { @@ -1000726,12 +1007463,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e3Y#kU>Y>2" + "plurals_guid": "e3Y#kU>Y>2", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָמִיט": { "word": { @@ -1001158,7 +1007898,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹט": { "word": { @@ -1001229,7 +1007970,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָמוּל": { "word": { @@ -1001652,7 +1008394,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמּוֹל": { "word": { @@ -1002075,7 +1008818,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּל": { "word": { @@ -1002176,7 +1008920,8 @@ "ktiv_male": "מולן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִילָה": { "word": { @@ -1002250,12 +1008995,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bQD]4:R9gK" + "plurals_guid": "bQD]4:R9gK", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּם": { "word": { @@ -1002335,7 +1009083,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹנוֹלוֹג": { "word": { @@ -1002389,7 +1009138,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻסְלְמִי": { "word": { @@ -1002442,7 +1009192,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָמִיר": { "word": { @@ -1003167,7 +1009918,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּמוּרָה": { "word": { @@ -1003254,12 +1010006,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k=Tv]g5BH~" + "plurals_guid": "k=Tv]g5BH~", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֹר": { "word": { @@ -1003313,7 +1010068,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָמוּשׁ": { "word": { @@ -1003733,7 +1010489,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָמוּת": { "word": { @@ -1004183,7 +1010940,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָמִית": { "word": { @@ -1004936,7 +1011694,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָוֶת": { "word": { @@ -1005019,12 +1011778,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D]_r;YDb6c" + "plurals_guid": "D]_r;YDb6c", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּמוּתָה": { "word": { @@ -1005087,12 +1011849,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yUB9TtvNa;" + "plurals_guid": "yUB9TtvNa;", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזּוּג": { "word": { @@ -1005158,12 +1011923,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LY34!UqUV^" + "plurals_guid": "LY34!UqUV^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְזֹג": { "word": { @@ -1005611,7 +1012379,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַזֵּג": { "word": { @@ -1006038,7 +1012807,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶזֶג": { "word": { @@ -1006120,12 +1012890,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ad!Fl%+0Ud" + "plurals_guid": "Ad!Fl%+0Ud", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַזְגָן": { "word": { @@ -1006191,12 +1012964,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h6.S7|mtp5" + "plurals_guid": "h6.S7|mtp5", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַזֵּג|Verb|to air-condition": { "word": { @@ -1006929,7 +1013705,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַזֵּג|Verb|to merge": { "word": { @@ -1007662,7 +1014439,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְזוּזָה": { "word": { @@ -1007738,7 +1014516,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶזַח": { "word": { @@ -1007797,12 +1014576,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K:1Z8xC080" + "plurals_guid": "K:1Z8xC080", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַזָּל": { "word": { @@ -1007888,7 +1014670,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַזֵּל": { "word": { @@ -1007996,7 +1014779,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַזְמֵז": { "word": { @@ -1008419,7 +1015203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַזְמֵז": { "word": { @@ -1009145,7 +1015930,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִזְּמַן": { "word": { @@ -1009204,7 +1015990,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְמַזְעֵר": { "word": { @@ -1009625,7 +1016412,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמְזֵר": { "word": { @@ -1009684,12 +1016472,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m]M[@nf%;0" + "plurals_guid": "m]M[@nf%;0", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְחֹא": { "word": { @@ -1010139,7 +1016930,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחָאָה": { "word": { @@ -1010228,12 +1017020,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H422+URD/0" + "plurals_guid": "H422+URD/0", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַמְחָאָה": { "word": { @@ -1010296,12 +1017091,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NiPPQY)D=%" + "plurals_guid": "NiPPQY)D=%", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחִיאָה": { "word": { @@ -1010390,12 +1017188,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ery={,82nw" + "plurals_guid": "ery={,82nw", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְחִיז": { "word": { @@ -1011118,7 +1017919,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִחְזוּר": { "word": { @@ -1011180,12 +1017982,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BGS/A&6(bv" + "plurals_guid": "BGS/A&6(bv", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַחְזֵר": { "word": { @@ -1011911,7 +1018716,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֹחַ": { "word": { @@ -1011991,12 +1018797,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vph3NT;Aao" + "plurals_guid": "vph3NT;Aao", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְחֹט": { "word": { @@ -1012419,7 +1019228,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִמְחָטָה": { "word": { @@ -1012481,12 +1019291,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k^_4c5KdID" + "plurals_guid": "k^_4c5KdID", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַחַט": { "word": { @@ -1012569,12 +1019382,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n&(r;Hz[4/" + "plurals_guid": "n&(r;Hz[4/", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְחוֹת": { "word": { @@ -1013023,7 +1019839,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּחוֹת": { "word": { @@ -1013450,7 +1020267,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַחוֹת": { "word": { @@ -1013877,7 +1020695,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻמְחֶה": { "word": { @@ -1013969,12 +1020788,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L,`n6=r$4w" + "plurals_guid": "L,`n6=r$4w", + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַחוֹת": { "word": { @@ -1014707,7 +1021529,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְמַחוּת": { "word": { @@ -1014773,12 +1021596,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wMv8O.qq*W" + "plurals_guid": "wMv8O.qq*W", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִתְמַחֶה": { "word": { @@ -1014844,12 +1021670,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k=K~:WW9J+" + "plurals_guid": "k=K~:WW9J+", + "mishkal": "mitkattel", + "mishkal_hebrew": "מִתְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְחֹל": { "word": { @@ -1015271,7 +1022100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְחִילָה": { "word": { @@ -1015344,12 +1022174,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "daUCijZM" + "plurals_guid": "J{?bG>ijZM", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִין|Noun|type, kind; sex; gender (grammar); species (biology)": { "word": { @@ -1021001,23 +1027880,7 @@ ], "confusables_guid": "QeI[j!9F@z", "examples": { - "vetted": [ - { - "text": "מְעַנְיֵן אֵיזוֹ מִין צוּרָה תִּהְיֶה לִי אָז", - "source": "alice_wonderland", - "match_method": "direct" - }, - { - "text": "\" וְהִיא הִתְחִילָה לְדַמְיֵן אֵיזֶה מִין דָּבָר יִקְרֶה: \"'הָעַלְמָה אַלִיס", - "source": "alice_wonderland", - "match_method": "direct" - }, - { - "text": "\"אֵיזֶה מִין אֲנָשִׁים גָּרִים פֹּה בַּסְּבִיבָה", - "source": "alice_wonderland", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -1021050,7 +1027913,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּמוּנָה": { "word": { @@ -1021138,12 +1028002,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gx9SQSDbwT" + "plurals_guid": "Gx9SQSDbwT", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִין|Noun|heretic, apostate": { "word": { @@ -1021225,7 +1028092,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַיֵּן": { "word": { @@ -1021951,7 +1028819,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִקּוּר חוּץ": { "word": { @@ -1021997,7 +1028866,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִיקְרוֹגַל": { "word": { @@ -1022043,7 +1028913,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָמִישׁ": { "word": { @@ -1022463,7 +1029334,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִישֶׁהוּ": { "word": { @@ -1022522,7 +1029394,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מִישֶׁהִי": { "word": { @@ -1022581,7 +1029454,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מִיתוֹס": { "word": { @@ -1022641,7 +1029515,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכָּאן": { "word": { @@ -1022700,7 +1029575,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מְכוֹנַת כְּבִיסָה": { "word": { @@ -1022749,7 +1029625,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִכֵּיוָן": { "word": { @@ -1022803,7 +1029680,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מֶכֶס": { "word": { @@ -1022862,12 +1029740,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ft~DU>XO`!" + "plurals_guid": "ft~DU>XO`!", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְכֹּר": { "word": { @@ -1023323,7 +1030204,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַכֵּר": { "word": { @@ -1023338,7 +1030220,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to become addicted (ל־)", + "meaning": "to become addicted", "meaning_raw": "to become addicted (ל־)", "audio_url": "https://audio.pealim.com/v0/1c/1cz64jpzyq6am.mp3", "audio_file": "להתמכר.mp3", @@ -1023753,7 +1030635,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְהִמָּכֵר": { "word": { @@ -1024183,7 +1031066,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְמַכְּרוּת": { "word": { @@ -1024252,12 +1031136,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sNe=aNX:3p" + "plurals_guid": "sNe=aNX:3p", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכִירָה": { "word": { @@ -1024347,12 +1031234,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QPU~;a2Zjo" + "plurals_guid": "QPU~;a2Zjo", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָכוּר|Adjective|sold; addicted to something (ל־)": { "word": { @@ -1024367,7 +1031257,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "sold; addicted to something (ל־)", + "meaning": "sold; addicted to something", "meaning_raw": "sold; addicted to something (ל־)", "audio_url": "https://audio.pealim.com/v0/1f/1frds0rij9ixp.mp3", "audio_file": "4600-machur.mp3", @@ -1024419,11 +1031309,12 @@ "nikkud": "מְכוּרוֹת", "ktiv_male": "מכורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "מָכוּר|Adjective|sold": { "word": { @@ -1024490,11 +1031381,12 @@ "nikkud": "מְכוּרוֹת", "ktiv_male": "מכורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָכוּר|Adjective|addicted (to something) (ל־)": { "word": { @@ -1024509,7 +1031401,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "addicted (to something) (ל־)", + "meaning": "addicted (to something)", "meaning_raw": "addicted (to something) (ל־)", "audio_url": "https://audio.pealim.com/v0/1f/1frds0rij9ixp.mp3", "audio_file": "8031-machur.mp3", @@ -1024561,11 +1031453,12 @@ "nikkud": "מְכוּרוֹת", "ktiv_male": "מכורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "מֶכֶר": { "word": { @@ -1024650,12 +1031543,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iW9UfGa}Xv" + "plurals_guid": "iW9UfGa}Xv", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְמַכֵּר": { "word": { @@ -1024718,11 +1031614,12 @@ "nikkud": "מְמַכְּרוֹת", "ktiv_male": "ממכרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְכַשֵּׁפָה": { "word": { @@ -1024771,7 +1031668,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַלֵּא": { "word": { @@ -1025226,7 +1032124,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְלֹאת": { "word": { @@ -1025629,7 +1032528,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָלֵא": { "word": { @@ -1025717,11 +1032617,12 @@ "nikkud": "מְלֵאוֹת", "ktiv_male": "מלאות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַלֵּא": { "word": { @@ -1026510,7 +1033411,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלַאי": { "word": { @@ -1026578,12 +1033480,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bWVd8<:W]5" + "plurals_guid": "bWVd8<:W]5", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְמַלְּאוּת": { "word": { @@ -1026645,12 +1033550,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cGHG/fBI~y" + "plurals_guid": "cGHG/fBI~y", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּלֵא": { "word": { @@ -1027095,7 +1034003,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלּוּאִים": { "word": { @@ -1027157,12 +1034066,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dUI_B[9@5y" + "plurals_guid": "dUI_B[9@5y", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלוֹא": { "word": { @@ -1027250,12 +1034162,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lP#!GgDg" + "plurals_guid": "lP#!GgDg", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלָאכָה": { "word": { @@ -1027341,7 +1034256,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלְּבַד": { "word": { @@ -1027400,7 +1034316,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מִלְגָּה": { "word": { @@ -1027461,12 +1034378,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ahx/}21_`/" + "plurals_guid": "Ahx/}21_`/", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּמְלוּגִים": { "word": { @@ -1027521,12 +1034441,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ElcVq~BWU{" + "plurals_guid": "ElcVq~BWU{", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלוֹן": { "word": { @@ -1027589,7 +1034512,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלַח": { "word": { @@ -1027669,12 +1034593,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vL-TOUFtB|" + "plurals_guid": "vL-TOUFtB|", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָלוּחַ": { "word": { @@ -1027748,11 +1034675,12 @@ "nikkud": "מְלוּחוֹת", "ktiv_male": "מלוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלִיחוּת": { "word": { @@ -1027821,7 +1034749,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְלִיחַ": { "word": { @@ -1028549,7 +1035478,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלְחִיָּה": { "word": { @@ -1028618,7 +1035548,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּלֵט": { "word": { @@ -1029070,7 +1036001,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְלִיט": { "word": { @@ -1029496,7 +1036428,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלּוּט": { "word": { @@ -1029561,12 +1036494,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "@L_mcI;SN" + "plurals_guid": "@L_mcI;SN", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְלִיטָה": { "word": { @@ -1029625,12 +1036561,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y#7DW2}yg&" + "plurals_guid": "y#7DW2}yg&", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלֶט": { "word": { @@ -1029689,12 +1036628,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dWK:Z1N%p1" + "plurals_guid": "dWK:Z1N%p1", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַלֵּט": { "word": { @@ -1030423,7 +1037365,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלּוּי": { "word": { @@ -1030498,12 +1037441,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qwyN4H[f~P" + "plurals_guid": "qwyN4H[f~P", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלֶךְ": { "word": { @@ -1030599,12 +1037545,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A}Di2TW@q4" + "plurals_guid": "A}Di2TW@q4", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמְלָכָה": { "word": { @@ -1030690,12 +1037639,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r03HpNN;Op" + "plurals_guid": "r03HpNN;Op", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמְלַכְתִּי": { "word": { @@ -1030763,7 +1037715,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְכוּת": { "word": { @@ -1030854,12 +1037807,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q8LgxP0vs[" + "plurals_guid": "Q8LgxP0vs[", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַלְכָּה": { "word": { @@ -1030950,12 +1037906,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bd|H~iwVda" + "plurals_guid": "bd|H~iwVda", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַמְלָכָה": { "word": { @@ -1031025,12 +1037984,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HgQ!3>x" + "plurals_guid": "Q_+FBV*B>x", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַלְמֵל": { "word": { @@ -1035055,7 +1042040,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִלְּפָנִים": { "word": { @@ -1035088,7 +1042074,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מְלָפְפוֹן": { "word": { @@ -1035164,7 +1042151,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַמְלָצָה": { "word": { @@ -1035225,12 +1042213,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zzdGB]Vq$M" + "plurals_guid": "zzdGB]Vq$M", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְלִיץ": { "word": { @@ -1035976,7 +1042967,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶלְצַר": { "word": { @@ -1036036,7 +1043028,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְלֹק": { "word": { @@ -1036456,7 +1043449,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִמּוּל": { "word": { @@ -1036515,7 +1043509,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מָמוּתָה": { "word": { @@ -1036575,7 +1043570,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִמֵּילָא": { "word": { @@ -1036624,7 +1043620,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מִמּוּן": { "word": { @@ -1036685,12 +1043682,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JZp6y;cI5d" + "plurals_guid": "JZp6y;cI5d", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַמֵּן": { "word": { @@ -1037415,7 +1044415,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַמֵּשׁ": { "word": { @@ -1037842,7 +1044843,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמָּשִׁיּוּת": { "word": { @@ -1037913,7 +1044915,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִמּוּשׁ": { "word": { @@ -1037979,12 +1044982,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JW9R}5Hzty" + "plurals_guid": "JW9R}5Hzty", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַמֵּשׁ": { "word": { @@ -1038714,7 +1045720,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמָּשׁ|Adverb": { "word": { @@ -1038780,7 +1045787,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מַמָּשׁ|Noun": { "word": { @@ -1038868,12 +1045876,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qOcg(yqa5k" + "plurals_guid": "qOcg(yqa5k", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַמָּשִׁי": { "word": { @@ -1038937,7 +1045948,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִן": { "word": { @@ -1039034,7 +1046046,8 @@ "ktiv_male": "מהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָן": { "word": { @@ -1039107,7 +1046120,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַנְגוֹ": { "word": { @@ -1039167,7 +1046181,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַנְגִּינָה": { "word": { @@ -1039243,7 +1046258,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַנְגָּנוֹן": { "word": { @@ -1039314,7 +1046330,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְחָה": { "word": { @@ -1039373,12 +1046390,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QXSlk(RKs`" + "plurals_guid": "QXSlk(RKs`", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְנוֹת": { "word": { @@ -1039812,7 +1046832,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּנוֹת": { "word": { @@ -1040243,7 +1047264,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנּוּי": { "word": { @@ -1040313,12 +1047335,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנָיָה": { "word": { @@ -1040404,12 +1047429,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MTXif{++Cq" + "plurals_guid": "MTXif{++Cq", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָנוּי": { "word": { @@ -1040479,12 +1047507,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "trGY`f*N]{" + "plurals_guid": "trGY`f*N]{", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָנָה": { "word": { @@ -1040554,12 +1047585,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FqwtbxBZ3g" + "plurals_guid": "FqwtbxBZ3g", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַנּוֹת": { "word": { @@ -1041310,7 +1048344,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַנּוֹת": { "word": { @@ -1041741,7 +1048776,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹנֶה": { "word": { @@ -1041811,12 +1048847,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FB#|lF%3(h" + "plurals_guid": "FB#|lF%3(h", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוֹנִית": { "word": { @@ -1041891,7 +1048930,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְיָן": { "word": { @@ -1041969,7 +1049009,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנַּיִן": { "word": { @@ -1042005,7 +1049046,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְמַנֵּן": { "word": { @@ -1042425,7 +1049467,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִמָּנְעוּת": { "word": { @@ -1042488,12 +1049531,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zs;D*D3Pnr" + "plurals_guid": "zs;D*D3Pnr", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְנֹעַ": { "word": { @@ -1042917,7 +1049963,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנִיעָה": { "word": { @@ -1042980,12 +1050027,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i=YSJG%_r&" + "plurals_guid": "i=YSJG%_r&", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּנֵעַ": { "word": { @@ -1043409,7 +1050459,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַנֵּף": { "word": { @@ -1044132,7 +1051183,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶנְתָּה": { "word": { @@ -1044186,7 +1051238,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסָּבִיב": { "word": { @@ -1044197,7 +1051250,7 @@ "root": [], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "all around (ל־)", + "meaning": "all around", "meaning_raw": "all around (ל־)", "audio_url": "https://audio.pealim.com/v0/kc/kct0ygz3x00a.mp3", "audio_file": "מסביב.mp3", @@ -1044245,7 +1051298,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "ל־" }, "לְמַסְגֵּר": { "word": { @@ -1044969,7 +1052023,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִמְסָד": { "word": { @@ -1045031,12 +1052086,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wgk19=nd!=" + "plurals_guid": "wgk19=nd!=", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַסֵּד": { "word": { @@ -1045762,7 +1052820,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַסֵּד": { "word": { @@ -1046185,7 +1053244,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַסְחֵר": { "word": { @@ -1046609,7 +1053669,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְחוּר": { "word": { @@ -1046672,12 +1053733,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lQ01Y-{>[V" + "plurals_guid": "lQ01Y-{>[V", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַסְחֵר": { "word": { @@ -1047404,7 +1054468,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְטִיק": { "word": { @@ -1047464,7 +1054529,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַסְטֵל": { "word": { @@ -1047885,7 +1054951,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסּוּי": { "word": { @@ -1047946,12 +1055013,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b*eLs*)3&Y" + "plurals_guid": "b*eLs*)3&Y", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַסּוֹת": { "word": { @@ -1048676,7 +1055746,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְכֵּן": { "word": { @@ -1048745,7 +1055816,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַסְמֵס": { "word": { @@ -1049166,7 +1056238,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַסְמֵר": { "word": { @@ -1049587,7 +1056660,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמוֹסֵס": { "word": { @@ -1050013,7 +1057087,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּמִסָּה": { "word": { @@ -1050078,12 +1057153,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oPf/bo[Hj#" + "plurals_guid": "oPf/bo[Hj#", + "mishkal": "tkilla", + "mishkal_hebrew": "תְּקִלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַס": { "word": { @@ -1050164,12 +1057242,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ak_Y" + "plurals_guid": "Ak_Y", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָמִיס": { "word": { @@ -1050914,7 +1057995,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמֹּס": { "word": { @@ -1051288,7 +1058370,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמוֹסֵס": { "word": { @@ -1052017,7 +1059100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַסְפֵּר": { "word": { @@ -1052741,7 +1059825,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְסֹר": { "word": { @@ -1053196,7 +1060281,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּסֵר": { "word": { @@ -1053641,7 +1060727,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַסֵּר": { "word": { @@ -1054070,7 +1061157,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְסִירוּת": { "word": { @@ -1054143,7 +1061231,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶסֶר": { "word": { @@ -1054211,12 +1061300,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E!guOinSXD" + "plurals_guid": "E!guOinSXD", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְרוֹן": { "word": { @@ -1054289,7 +1061381,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָסֹרֶת": { "word": { @@ -1054378,7 +1061471,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָסָרְתִּי": { "word": { @@ -1054444,7 +1061538,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָסוּר": { "word": { @@ -1054490,13 +1061585,7 @@ ], "confusables_guid": "j" + "plurals_guid": "Mqb#vK3!y>", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָרוּת": { "word": { @@ -1080404,7 +1087636,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמָרֵחַ": { "word": { @@ -1080828,7 +1088061,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְרֹחַ": { "word": { @@ -1081268,7 +1088502,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּרֵחַ": { "word": { @@ -1081692,7 +1088927,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִמְרָח": { "word": { @@ -1081755,12 +1088991,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": ",$P{:OEqS" + "plurals_guid": ",$P{:OEqS", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְרֹט": { "word": { @@ -1082180,7 +1089419,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַמְרוֹת": { "word": { @@ -1082245,7 +1089485,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהַמְרוֹת": { "word": { @@ -1082970,7 +1090211,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָרִית": { "word": { @@ -1083030,7 +1090272,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְכּוֹל": { "word": { @@ -1083090,7 +1090333,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַרְכֵּז": { "word": { @@ -1083816,7 +1091060,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַרְכֵּז": { "word": { @@ -1084239,7 +1091484,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַרְמֵר": { "word": { @@ -1084981,7 +1092227,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַרְמֵר": { "word": { @@ -1085420,7 +1092667,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַרְפֵּק": { "word": { @@ -1085841,7 +1093089,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַמְרָצָה": { "word": { @@ -1085904,12 +1093153,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KfN:R,J]*B" + "plurals_guid": "KfN:R,J]*B", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶרֶץ": { "word": { @@ -1085982,12 +1093234,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m@k0I=,XGh" + "plurals_guid": "m@k0I=,XGh", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּמְרִיץ": { "word": { @@ -1086050,12 +1093305,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D#+tWSc.b;" + "plurals_guid": "D#+tWSc.b;", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְרִיץ": { "word": { @@ -1086782,7 +1094040,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּמְרוּק": { "word": { @@ -1086844,12 +1094103,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s7f1Ul^)F9" + "plurals_guid": "s7f1Ul^)F9", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָרָק": { "word": { @@ -1086937,12 +1094199,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Es[Q]!_KD(" + "plurals_guid": "Es[Q]!_KD(", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמָרֵק": { "word": { @@ -1087365,7 +1094630,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְקֶר": { "word": { @@ -1087425,7 +1094691,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָרוֹר": { "word": { @@ -1087489,12 +1094756,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J!|58}[XnR" + "plurals_guid": "J!|58}[XnR", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָרִיר": { "word": { @@ -1087552,11 +1094822,12 @@ "nikkud": "מְרִירוֹת", "ktiv_male": "מרירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָמֵר": { "word": { @@ -1087984,7 +1095255,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמָרֵר": { "word": { @@ -1088712,7 +1095984,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַר|Adjective": { "word": { @@ -1088782,11 +1096055,12 @@ "nikkud": "מָרוֹת", "ktiv_male": "מרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשָּׂא": { "word": { @@ -1088847,12 +1096121,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשָּׂאִית": { "word": { @@ -1088918,7 +1096195,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְשִׂיג": { "word": { @@ -1089641,7 +1096919,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשֶּׁהוּ": { "word": { @@ -1089695,7 +1096974,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מְשֻׁפְשָׁף": { "word": { @@ -1089748,7 +1097028,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְשֹׁחַ": { "word": { @@ -1090171,7 +1097452,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁחָה": { "word": { @@ -1090236,12 +1097518,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָשִׁיחַ": { "word": { @@ -1090303,12 +1097588,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f^e9*i`BE}" + "plurals_guid": "f^e9*i`BE}", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְשׁוֹת": { "word": { @@ -1090731,7 +1098019,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶשִׁי": { "word": { @@ -1090803,12 +1098092,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LkG+j9oI)Y" + "plurals_guid": "LkG+j9oI)Y", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּשׁוֹת": { "word": { @@ -1091231,7 +1098523,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְשִׁיכָה": { "word": { @@ -1091298,12 +1098591,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "uNVvAl{g_G" + "plurals_guid": "uNVvAl{g_G", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְשֹׁךְ": { "word": { @@ -1091757,7 +1099053,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְמַשֵּׁךְ": { "word": { @@ -1092185,7 +1099482,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶמְשֵׁךְ": { "word": { @@ -1092262,12 +1099560,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h]JP!IK?ot" + "plurals_guid": "h]JP!IK?ot", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶשֶׁךְ": { "word": { @@ -1092354,12 +1099655,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "PA&v@=8)sv" + "plurals_guid": "PA&v@=8)sv", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִמָּשֵׁךְ": { "word": { @@ -1092813,7 +1100117,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַמְשִׁיךְ": { "word": { @@ -1093570,7 +1100875,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִמָּשְׁכוּת": { "word": { @@ -1093637,12 +1100943,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E}6ypuKZ#3" + "plurals_guid": "E}6ypuKZ#3", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַשְׁכֵּן": { "word": { @@ -1094366,7 +1101675,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִמְשֹׁל": { "word": { @@ -1094796,7 +1102106,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָשָׁל": { "word": { @@ -1094891,12 +1102202,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mbkp1)=QGB>p" + "plurals_guid": "pWum{>GB>p", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַגָּר": { "word": { @@ -1125028,12 +1132551,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b0rC$t%fK6" + "plurals_guid": "b0rC$t%fK6", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּגֵר": { "word": { @@ -1125456,7 +1132982,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַגֵּר": { "word": { @@ -1125879,7 +1133406,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָגֶשֶׁת": { "word": { @@ -1126334,7 +1133862,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַגְּשׁוּת": { "word": { @@ -1126402,12 +1133931,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Mqx<3EdOUF" + "plurals_guid": "Mqx<3EdOUF", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָגִישׁ": { "word": { @@ -1126469,11 +1134001,12 @@ "nikkud": "נְגִישׁוֹת", "ktiv_male": "נגישות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַגִּישׁ": { "word": { @@ -1127226,7 +1134759,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְגִּישׁ": { "word": { @@ -1127958,7 +1135492,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַגָּשָׁה": { "word": { @@ -1128026,12 +1135561,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q4,SiX~XX," + "plurals_guid": "q4,SiX~XX,", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַגֵּשׁ": { "word": { @@ -1128046,7 +1135584,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to collide, to clash; to contradict, to argue (עם)", + "meaning": "to collide, to clash; to contradict, to argue", "meaning_raw": "to collide, to clash; to contradict, to argue (עם)", "audio_url": "https://audio.pealim.com/v0/13/13wih4c4wqd1z.mp3", "audio_file": "להתנגש.mp3", @@ -1128481,7 +1136019,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם" }, "גִּישָׁה": { "word": { @@ -1128565,12 +1136104,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gINpr{57N;" + "plurals_guid": "gINpr{57N;", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַגָּשׁ": { "word": { @@ -1128659,12 +1136201,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O2pA,jIA$s" + "plurals_guid": "O2pA,jIA$s", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַדֵּב": { "word": { @@ -1129118,7 +1136663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְדִיבוּת": { "word": { @@ -1129190,7 +1136736,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְדָבָה": { "word": { @@ -1129257,12 +1136804,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ip_z%8NL0!" + "plurals_guid": "Ip_z%8NL0!", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַדְּבוּת": { "word": { @@ -1129323,12 +1136873,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OJ3*s0kXT(" + "plurals_guid": "OJ3*s0kXT(", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָדִיב": { "word": { @@ -1129389,11 +1136942,12 @@ "nikkud": "נְדִיבוֹת", "ktiv_male": "נדיבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַדְּבוּתִי": { "word": { @@ -1129458,7 +1137012,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַדֵּב": { "word": { @@ -1130205,7 +1137760,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְדֹּב": { "word": { @@ -1130633,7 +1138189,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְדֹּד": { "word": { @@ -1131019,7 +1138576,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָדוּד": { "word": { @@ -1131074,11 +1138632,12 @@ "nikkud": "נְדוּדוֹת", "ktiv_male": "נדודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַדָּחָה": { "word": { @@ -1131142,12 +1138701,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CT_FIv+oZA" + "plurals_guid": "CT_FIv+oZA", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדִּיחַ": { "word": { @@ -1131875,7 +1139437,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַדּוֹת": { "word": { @@ -1132598,7 +1140161,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַדְנֵד": { "word": { @@ -1132614,7 +1140178,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to rock, to sway (transitive); to bother (ל־) (slang)", + "meaning": "to rock, to sway (transitive); to bother (slang)", "meaning_raw": "to rock, to sway (transitive); to bother (ל־) (slang)", "audio_url": "https://audio.pealim.com/v0/jy/jybozkjq4v7k.mp3", "audio_file": "לנדנד.mp3", @@ -1133324,7 +1140888,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְהִתְנַדְנֵד": { "word": { @@ -1133773,7 +1141338,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַדֵּף": { "word": { @@ -1134198,7 +1141764,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַדָּף": { "word": { @@ -1134278,12 +1141845,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y8o~MsCQXg" + "plurals_guid": "y8o~MsCQXg", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדִּיף": { "word": { @@ -1135011,7 +1142581,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּדֵף": { "word": { @@ -1135436,7 +1143007,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְדֹּף": { "word": { @@ -1135861,7 +1143433,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִדֹּר": { "word": { @@ -1136285,7 +1143858,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶדֶר": { "word": { @@ -1136348,12 +1143922,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bZje9Wq0Gs" + "plurals_guid": "bZje9Wq0Gs", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָדִיר": { "word": { @@ -1136436,11 +1144013,12 @@ "nikkud": "נְדִירוֹת", "ktiv_male": "נדירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַדִּיר": { "word": { @@ -1137167,7 +1144745,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַהֵג": { "word": { @@ -1137653,7 +1145232,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְהֹג": { "word": { @@ -1137668,7 +1145248,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to drive (a vehicle) (ב־); to have a manner of doing something, to usually do something", + "meaning": "to drive (a vehicle) ; to have a manner of doing something, to usually do something", "meaning_raw": "to drive (a vehicle) (ב־); to have a manner of doing something, to usually do something", "audio_url": "https://audio.pealim.com/v0/gq/gq7vm6y0fzj9.mp3", "audio_file": "לנהוג.mp3", @@ -1138108,7 +1145688,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "הִתְנַהֲגוּת": { "word": { @@ -1138176,12 +1145757,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sY|B/k}w0T" + "plurals_guid": "sY|B/k}w0T", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶהָג": { "word": { @@ -1138275,12 +1145859,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I!C6JL24a5" + "plurals_guid": "I!C6JL24a5", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְהִיגָה": { "word": { @@ -1138348,12 +1145935,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oTpKn@<=;N" + "plurals_guid": "oTpKn@<=;N", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְהָג": { "word": { @@ -1138447,12 +1146037,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oma$Cj_@3M" + "plurals_guid": "oma$Cj_@3M", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְהִיג": { "word": { @@ -1139184,7 +1146777,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָהוּג": { "word": { @@ -1139267,11 +1146861,12 @@ "nikkud": "נְהוּגוֹת", "ktiv_male": "נהוגות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַנְהִיג": { "word": { @@ -1139339,12 +1146934,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N7kDZHxjvH" + "plurals_guid": "N7kDZHxjvH", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַהֲלוּת": { "word": { @@ -1139411,12 +1147009,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "epSh;U?JVY" + "plurals_guid": "epSh;U?JVY", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְהָל": { "word": { @@ -1139486,12 +1147087,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנַהֵל": { "word": { @@ -1139561,12 +1147165,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G}fQwf{RW}" + "plurals_guid": "G}fQwf{RW}", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֹהַל": { "word": { @@ -1139633,12 +1147240,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I{pZ5ds9$l" + "plurals_guid": "I{pZ5ds9$l", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַהֵל": { "word": { @@ -1140426,7 +1148036,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִהוּל": { "word": { @@ -1140493,12 +1148104,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HRaat>uXv." + "plurals_guid": "HRaat>uXv.", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַהֵל": { "word": { @@ -1140952,7 +1148566,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַנְהָלָה": { "word": { @@ -1141019,12 +1148634,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t!]&*sJiK/" + "plurals_guid": "t!]&*sJiK/", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְהֹם": { "word": { @@ -1141420,7 +1149038,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְהִימָה": { "word": { @@ -1141481,12 +1149100,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nNXvCPty+t" + "plurals_guid": "nNXvCPty+t", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְהֹק": { "word": { @@ -1141906,7 +1149528,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְהֹר": { "word": { @@ -1142329,7 +1149952,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָהָר": { "word": { @@ -1142412,12 +1150036,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Jy#/GWHL#o" + "plurals_guid": "Jy#/GWHL#o", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְהָרָה": { "word": { @@ -1142505,12 +1150132,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G47eMX.{|J" + "plurals_guid": "G47eMX.{|J", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוּ": { "word": { @@ -1142569,7 +1150199,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהָנִיא": { "word": { @@ -1143308,7 +1150939,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיב": { "word": { @@ -1143748,7 +1151380,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָנוּב": { "word": { @@ -1144172,7 +1151805,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִיב": { "word": { @@ -1144266,7 +1151900,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּנוּבָה": { "word": { @@ -1144329,12 +1151964,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i[n~>P,KmZ" + "plurals_guid": "i[n~>P,KmZ", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַוָּד": { "word": { @@ -1144399,12 +1152037,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָנוּד": { "word": { @@ -1144830,7 +1152471,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנוֹדֵד": { "word": { @@ -1145272,7 +1152914,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיד": { "word": { @@ -1145724,7 +1153367,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּנוּדָה": { "word": { @@ -1145789,12 +1153433,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w`M&+Y7J8U" + "plurals_guid": "w`M&+Y7J8U", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹדּ": { "word": { @@ -1145853,12 +1153500,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fo}l,4#*?x" + "plurals_guid": "fo}l,4#*?x", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוּדְנִיק": { "word": { @@ -1145928,7 +1153578,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻנָּח": { "word": { @@ -1146004,7 +1153655,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָנוּחַ": { "word": { @@ -1146462,7 +1154114,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹחוּת": { "word": { @@ -1146538,7 +1154191,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיחַ": { "word": { @@ -1146553,7 +1154207,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to leave alone (ל־); to allow", + "meaning": "to leave alone ; to allow", "meaning_raw": "to leave alone (ל־); to allow", "audio_url": "https://audio.pealim.com/v0/1q/1q33ef0u51hal.mp3", "audio_file": "2428-lehaniach.mp3", @@ -1147295,7 +1154949,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְהַנִּיחַ": { "word": { @@ -1148052,7 +1155707,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּנוּחָה": { "word": { @@ -1148123,12 +1155779,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ujZA6etv3l" + "plurals_guid": "ujZA6etv3l", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנוּחָה": { "word": { @@ -1148220,12 +1155879,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H|#W#6#_KO" + "plurals_guid": "H|#W#6#_KO", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַחַת": { "word": { @@ -1148298,7 +1155960,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹחַ": { "word": { @@ -1148393,7 +1156056,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲנָחָה": { "word": { @@ -1148464,12 +1156128,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tLabDeqiN+" + "plurals_guid": "tLabDeqiN+", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָנוֹחַ": { "word": { @@ -1148554,7 +1156221,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִנּוֹחַ": { "word": { @@ -1148619,11 +1156287,12 @@ "nikkud": "נִנּוֹחוֹת", "ktiv_male": "נינוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַוֵּט": { "word": { @@ -1149348,7 +1157017,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַוָּט": { "word": { @@ -1149409,12 +1157079,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hPK7~xz}VT" + "plurals_guid": "hPK7~xz}VT", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹטַרְיוֹן": { "word": { @@ -1149474,7 +1157147,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹטָרִיקוֹן": { "word": { @@ -1149534,7 +1157208,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְווֹת": { "word": { @@ -1149854,7 +1157529,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָאוֶה": { "word": { @@ -1149989,7 +1157665,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָוֶה|Adjective": { "word": { @@ -1150049,11 +1157726,12 @@ "nikkud": "נָווֹת", "ktiv_male": "נוות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָוֶה|Noun": { "word": { @@ -1150133,12 +1157811,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gqQIF+d[pd" + "plurals_guid": "gqQIF+d[pd", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנֻוָּל": { "word": { @@ -1150191,11 +1157872,12 @@ "nikkud": "מְנֻוָּלוֹת", "ktiv_male": "מנוולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוּל": { "word": { @@ -1150255,7 +1157937,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָנוּם": { "word": { @@ -1150677,7 +1158360,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּנוּמָה": { "word": { @@ -1150738,12 +1158422,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m%rk;:k1,u" + "plurals_guid": "m%rk;:k1,u", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַוֵּן": { "word": { @@ -1151166,7 +1158853,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַוֵּן": { "word": { @@ -1151892,7 +1159580,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנֻוָּן": { "word": { @@ -1151948,11 +1159637,12 @@ "nikkud": "מְנֻוָּנוֹת", "ktiv_male": "מנוונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיס": { "word": { @@ -1152694,7 +1160384,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָנוּס": { "word": { @@ -1153133,7 +1160824,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָנוֹס": { "word": { @@ -1153195,12 +1160887,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dS)?WiQ[y]" + "plurals_guid": "dS)?WiQ[y]", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָנוּעַ": { "word": { @@ -1153651,7 +1161346,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיעַ": { "word": { @@ -1154405,7 +1162101,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנוֹעֵעַ": { "word": { @@ -1154846,7 +1162543,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּנוּעָה": { "word": { @@ -1154936,12 +1162634,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eDNe%Eo9Y2" + "plurals_guid": "eDNe%Eo9Y2", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָנוֹעַ": { "word": { @@ -1155031,12 +1162732,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v5KB&>G3z8" + "plurals_guid": "v5KB&>G3z8", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנוֹפֵף": { "word": { @@ -1155792,7 +1163496,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנוֹפֵף": { "word": { @@ -1156235,7 +1163940,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָנִיף": { "word": { @@ -1156991,7 +1164697,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָנוֹף": { "word": { @@ -1157057,12 +1164764,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ve=X$d,C2L" + "plurals_guid": "ve=X$d,C2L", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנִיפָה": { "word": { @@ -1157144,12 +1164854,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I#;%eK)lBy" + "plurals_guid": "I#;%eK)lBy", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹף": { "word": { @@ -1157231,7 +1164944,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּנוּפָה": { "word": { @@ -1157297,12 +1165011,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o]zfm7;Mi`" + "plurals_guid": "o]zfm7;Mi`", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹצָה": { "word": { @@ -1157362,7 +1165079,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּנּוּר": { "word": { @@ -1157431,7 +1165149,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוּר": { "word": { @@ -1157494,7 +1165213,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנוֹרָה": { "word": { @@ -1157589,7 +1165309,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵר": { "word": { @@ -1157675,7 +1165396,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוּרָה": { "word": { @@ -1157744,7 +1165466,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזּוֹת|Verb|to sprinkle, to spray (archaic)": { "word": { @@ -1158170,7 +1165893,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזּוֹת|Verb|to spray (rare)": { "word": { @@ -1158899,7 +1166623,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְזֹל": { "word": { @@ -1159326,7 +1167051,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַזֶּלֶת": { "word": { @@ -1159386,12 +1167112,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f&Cx5.$jw1" + "plurals_guid": "f&Cx5.$jw1", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָזִיל": { "word": { @@ -1159451,11 +1167180,12 @@ "nikkud": "נְזִילוֹת", "ktiv_male": "נזילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזִּיל": { "word": { @@ -1160185,7 +1167915,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְזִיל": { "word": { @@ -1160915,7 +1168646,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹזְלִי": { "word": { @@ -1160979,7 +1168711,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹזֵל": { "word": { @@ -1161066,12 +1168799,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A7~d;,kG]@" + "plurals_guid": "A7~d;,kG]@", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִזּוּם": { "word": { @@ -1161132,12 +1168868,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k+pfx0sWLd" + "plurals_guid": "k+pfx0sWLd", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶזֶם": { "word": { @@ -1161198,12 +1168937,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FPh8$aOPPQ" + "plurals_guid": "FPh8$aOPPQ", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּזֵף": { "word": { @@ -1161626,7 +1169368,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְזֹף": { "word": { @@ -1162070,7 +1169813,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְזִיפָה": { "word": { @@ -1162132,12 +1169876,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r$#J;KFYG." + "plurals_guid": "r$#J;KFYG.", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְזִיקִין": { "word": { @@ -1162191,7 +1169938,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַזִּיק": { "word": { @@ -1162939,7 +1170687,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּזֵק|Verb|to be damaged": { "word": { @@ -1163363,7 +1171112,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶזֶק": { "word": { @@ -1163442,12 +1171192,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d&H#Dv`#2l" + "plurals_guid": "d&H#Dv`#2l", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְזִירוּת": { "word": { @@ -1163517,7 +1171270,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַזֵּר": { "word": { @@ -1163943,7 +1171697,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵזֶר": { "word": { @@ -1164008,12 +1171763,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B1tl!pu{F=" + "plurals_guid": "B1tl!pu{F=", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָזִיר": { "word": { @@ -1164094,12 +1171852,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u3J,.AR?nV" + "plurals_guid": "u3J,.AR?nV", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְזָר": { "word": { @@ -1164180,12 +1171941,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f2[]>@USK@" + "plurals_guid": "f2[]>@USK@", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּזֵר": { "word": { @@ -1164200,7 +1171964,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to refrain (from something), to deprive oneself (of something) (מן)", + "meaning": "to refrain (from something), to deprive oneself (of something)", "meaning_raw": "to refrain (from something), to deprive oneself (of something) (מן)", "audio_url": "https://audio.pealim.com/v0/1m/1mibvycfoqp7c.mp3", "audio_file": "להינזר.mp3", @@ -1164611,7 +1172375,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מן" }, "הַנְחָיָה": { "word": { @@ -1164672,12 +1172437,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DyoC|/&bV5" + "plurals_guid": "DyoC|/&bV5", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְחוֹת": { "word": { @@ -1165402,7 +1173170,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַחֲלוּת": { "word": { @@ -1165468,12 +1173237,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w-M5OXAbtS" + "plurals_guid": "w-M5OXAbtS", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְחֹל": { "word": { @@ -1165916,7 +1173688,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַחֵל": { "word": { @@ -1166343,7 +1174116,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְחִיל": { "word": { @@ -1166409,12 +1174183,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QPlf(+(Sy-" + "plurals_guid": "QPlf(+(Sy-", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְחִיל": { "word": { @@ -1167144,7 +1174921,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַחֲלָה": { "word": { @@ -1167210,12 +1174988,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cSFkNk&JAJ" + "plurals_guid": "cSFkNk&JAJ", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַחַל": { "word": { @@ -1167297,12 +1175078,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q$9KZm14wL" + "plurals_guid": "q$9KZm14wL", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶחָמָה": { "word": { @@ -1167381,12 +1175165,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m^;,|nqfxF" + "plurals_guid": "m^;,|nqfxF", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַחֵם": { "word": { @@ -1168129,7 +1175916,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּחֵם": { "word": { @@ -1168553,7 +1176341,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַחֵם": { "word": { @@ -1168998,7 +1176787,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַחְמֵד": { "word": { @@ -1169419,7 +1177209,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָחוּץ": { "word": { @@ -1169488,11 +1177279,12 @@ "nikkud": "נְחוּצוֹת", "ktiv_male": "נחוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְחֹר": { "word": { @@ -1169935,7 +1177727,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְחִיר": { "word": { @@ -1170022,12 +1177815,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jFwUknzAa*" + "plurals_guid": "jFwUknzAa*", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְחִישׁוּת": { "word": { @@ -1170112,7 +1177908,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְחֹשֶׁת": { "word": { @@ -1170170,12 +1177967,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b!/VEm;+cf" + "plurals_guid": "b!/VEm;+cf", + "mishkal": "ktolet", + "mishkal_hebrew": "קְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָחָשׁ": { "word": { @@ -1170265,12 +1178065,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sm0qo:qC!&" + "plurals_guid": "sm0qo:qC!&", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָחוּשׁ": { "word": { @@ -1170328,11 +1178131,12 @@ "nikkud": "נְחוּשׁוֹת", "ktiv_male": "נחושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַחֵשׁ": { "word": { @@ -1171086,7 +1178890,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְחֹת": { "word": { @@ -1171536,7 +1179341,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶחָת": { "word": { @@ -1171602,12 +1179408,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m4M/sSI$Zh" + "plurals_guid": "m4M/sSI$Zh", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְחִית": { "word": { @@ -1172360,7 +1180169,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְחִיתָה": { "word": { @@ -1172449,12 +1180259,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eMhqP;|b4l" + "plurals_guid": "eMhqP;|b4l", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְטוֹת": { "word": { @@ -1172898,7 +1180711,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִטָּה": { "word": { @@ -1172981,12 +1180795,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְמַטָּה": { "word": { @@ -1173057,7 +1180874,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "נָטוּי": { "word": { @@ -1173118,11 +1180936,12 @@ "nikkud": "נְטוּיוֹת", "ktiv_male": "נטויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטּוֹת": { "word": { @@ -1173869,7 +1181688,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּטוֹת": { "word": { @@ -1174297,7 +1182117,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטֶּה": { "word": { @@ -1174380,12 +1182201,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k?UPQN65QE" + "plurals_guid": "k?UPQN65QE", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְטִיָּה": { "word": { @@ -1174452,12 +1182276,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L]U>GcEqYy" + "plurals_guid": "L]U>GcEqYy", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְטִילַת יָדַיִם": { "word": { @@ -1174503,7 +1182330,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטָּלָה": { "word": { @@ -1174568,12 +1182396,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CY0;d]ZPos" + "plurals_guid": "CY0;d]ZPos", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִטֹּל": { "word": { @@ -1175025,7 +1182856,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְטִילָה": { "word": { @@ -1175106,12 +1182938,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hsW..v&sj-" + "plurals_guid": "hsW..v&sj-", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵטֶל": { "word": { @@ -1175176,12 +1183011,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h|}}M-]pEu" + "plurals_guid": "h|}}M-]pEu", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָטוּל": { "word": { @@ -1175240,11 +1183078,12 @@ "nikkud": "נְטוּלוֹת", "ktiv_male": "נטולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּטֵל": { "word": { @@ -1175670,7 +1183509,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָטוּעַ": { "word": { @@ -1175728,11 +1183568,12 @@ "nikkud": "נְטוּעוֹת", "ktiv_male": "נטועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְטִיעָה": { "word": { @@ -1175796,12 +1183637,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wv:k4,_?v#" + "plurals_guid": "wv:k4,_?v#", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטָּע": { "word": { @@ -1175865,12 +1183709,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pF]>=~p/_z" + "plurals_guid": "pF]>=~p/_z", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּטֵעַ": { "word": { @@ -1176295,7 +1184142,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָטַעַת": { "word": { @@ -1176720,7 +1184568,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָטִיף": { "word": { @@ -1176784,12 +1184633,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wjqbd?,,>P" + "plurals_guid": "wjqbd?,,>P", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַטָּפָה": { "word": { @@ -1176853,12 +1184705,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N[eV]:!TEg" + "plurals_guid": "N[eV]:!TEg", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְטֹף": { "word": { @@ -1177283,7 +1185138,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַטִּיף": { "word": { @@ -1178027,7 +1185883,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵטֶף": { "word": { @@ -1178091,12 +1185948,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r4wAY-7w{C" + "plurals_guid": "r4wAY-7w{C", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְטֹר": { "word": { @@ -1178520,7 +1186380,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִטּוּר": { "word": { @@ -1178583,12 +1186444,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "MK5.LKlhYt" + "plurals_guid": "MK5.LKlhYt", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַטָּרָה": { "word": { @@ -1178667,12 +1186531,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ec_Np)Yk%[" + "plurals_guid": "Ec_Np)Yk%[", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַטֵּר": { "word": { @@ -1178687,7 +1186554,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to monitor (את)", + "meaning": "to monitor", "meaning_raw": "to monitor (את)", "audio_url": "https://audio.pealim.com/v0/1v/1vgvhr6chjmzo.mp3", "audio_file": "לנטר.mp3", @@ -1179399,7 +1187266,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "לְנַטְרֵל": { "word": { @@ -1180123,7 +1187991,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְטֹשׁ": { "word": { @@ -1180563,7 +1188432,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּטֵשׁ|Verb|to spread, to happen, to take place (of battles)": { "word": { @@ -1180990,7 +1188860,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּטֵשׁ|Verb|to be abandoned": { "word": { @@ -1181417,7 +1189288,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָטוּשׁ": { "word": { @@ -1181495,11 +1189367,12 @@ "nikkud": "נְטוּשׁוֹת", "ktiv_male": "נטושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִבּוּל פֶּה": { "word": { @@ -1181545,7 +1189418,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַיָּד|Noun": { "word": { @@ -1181620,12 +1189494,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i!U3{aS4{," + "plurals_guid": "i!U3{aS4{,", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַיָּד|Adjective": { "word": { @@ -1181694,11 +1189571,12 @@ "nikkud": "נַיָּדוֹת", "ktiv_male": "ניידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַיֶּדֶת": { "word": { @@ -1181777,12 +1189655,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I%$js2yi)U" + "plurals_guid": "I%$js2yi)U", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַיֵּד": { "word": { @@ -1182206,7 +1190087,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַיָּח": { "word": { @@ -1182259,11 +1190141,12 @@ "nikkud": "נַיָּחוֹת", "ktiv_male": "נייחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִיחוֹחַ": { "word": { @@ -1182323,7 +1190206,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵיטְרָלִי": { "word": { @@ -1182376,7 +1190260,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְיָר": { "word": { @@ -1182462,7 +1190347,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִין": { "word": { @@ -1182538,7 +1190424,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִינָה": { "word": { @@ -1182598,7 +1190485,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִירוֹסְטָה": { "word": { @@ -1182649,7 +1190537,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶכֶד": { "word": { @@ -1182726,12 +1190615,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "x5M]+UX)2B" + "plurals_guid": "x5M]+UX)2B", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶכְדָּה": { "word": { @@ -1182792,12 +1190684,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n+hdj#JF/4" + "plurals_guid": "n+hdj#JF/4", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹכְחוּת": { "word": { @@ -1182881,7 +1190776,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְכֹּחַ": { "word": { @@ -1183322,7 +1191218,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹכְחִי": { "word": { @@ -1183384,7 +1191281,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְכִיחַ": { "word": { @@ -1183809,7 +1191707,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹכֵחַ": { "word": { @@ -1183883,11 +1191782,12 @@ "nikkud": "נוֹכְחוֹת", "ktiv_male": "נוכחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָכֶה": { "word": { @@ -1183952,12 +1191852,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mjrJ0^LC>F" + "plurals_guid": "mjrJ0^LC>F", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָכוּת": { "word": { @@ -1184022,12 +1191925,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oaGl!Kg+j<" + "plurals_guid": "oaGl!Kg+j<", + "mishkal": "katut", + "mishkal_hebrew": "קָטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַכָּה": { "word": { @@ -1184113,12 +1192019,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EI)7?0?gR-" + "plurals_guid": "EI)7?0?gR-", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַכּוֹת": { "word": { @@ -1184873,7 +1192782,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַכּוֹת": { "word": { @@ -1185602,7 +1193512,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִכּוּי": { "word": { @@ -1185667,12 +1193578,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pnysWG_L>{" + "plurals_guid": "pnysWG_L>{", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַכֵּל": { "word": { @@ -1186094,7 +1194008,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹכֵל": { "word": { @@ -1186155,12 +1194070,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n?!IkMUu`S" + "plurals_guid": "n?!IkMUu`S", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַכֵס": { "word": { @@ -1186582,7 +1194500,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶכֶס": { "word": { @@ -1186643,12 +1194562,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d1}OJ-z6&E" + "plurals_guid": "d1}OJ-z6&E", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִכּוּר": { "word": { @@ -1186717,12 +1194639,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q/W[7C1]y^" + "plurals_guid": "Q/W[7C1]y^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַכָּרָה": { "word": { @@ -1186807,12 +1194732,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t,~Md~)2DvM,l" + "plurals_guid": "t>)2DvM,l", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסָּחָה": { "word": { @@ -1195681,12 +1203671,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gd|LYq*[Pr" + "plurals_guid": "gd|LYq*[Pr", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסִּיחַ": { "word": { @@ -1196417,7 +1204410,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַסֵּחַ": { "word": { @@ -1197166,7 +1205160,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַסּוּת": { "word": { @@ -1197231,12 +1205226,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "h7y!qhP`@n" + "plurals_guid": "h7y!qhP`@n", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִסּוּי": { "word": { @@ -1197301,12 +1205299,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "szHG?z]t/o" + "plurals_guid": "szHG?z]t/o", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִסָּיוֹן": { "word": { @@ -1197397,12 +1205398,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uiS1UI59(!" + "plurals_guid": "uiS1UI59(!", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְנֻסֶּה": { "word": { @@ -1197461,11 +1205465,12 @@ "nikkud": "מְנֻסּוֹת", "ktiv_male": "מנוסות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַסּוֹת": { "word": { @@ -1198220,7 +1206225,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַסּוֹת": { "word": { @@ -1198667,7 +1206673,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסֵּכָה": { "word": { @@ -1198735,7 +1206742,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְסִיכָה": { "word": { @@ -1198803,7 +1206811,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָסִיךְ": { "word": { @@ -1198892,12 +1206901,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lZuerEvpD4" + "plurals_guid": "lZuerEvpD4", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְסֹךְ": { "word": { @@ -1199321,7 +1207333,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵס": { "word": { @@ -1199398,12 +1207411,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yBD*SOvJPT" + "plurals_guid": "yBD*SOvJPT", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנוֹסֵס": { "word": { @@ -1199846,7 +1207862,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְסִיעָה": { "word": { @@ -1199938,12 +1207955,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xs~zvmH{Ut" + "plurals_guid": "xs~zvmH{Ut", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסָּע": { "word": { @@ -1200030,12 +1208050,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bDA$d(4Ev3" + "plurals_guid": "bDA$d(4Ev3", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסּוֹעַ": { "word": { @@ -1200101,12 +1208124,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kis6ik4ahs" + "plurals_guid": "kis6ik4ahs", + "mishkal": "maktol", + "mishkal_hebrew": "מַקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְסֹעַ": { "word": { @@ -1200559,7 +1208585,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסִּיעַ": { "word": { @@ -1201315,7 +1209342,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסָּעָה": { "word": { @@ -1201381,12 +1209409,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "s9^Td1`xf9" + "plurals_guid": "s9^Td1`xf9", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נוֹסֵעַ": { "word": { @@ -1201473,12 +1209504,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "etq-05_[CO" + "plurals_guid": "etq-05_[CO", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְסֹק": { "word": { @@ -1201920,7 +1209954,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסּוֹק": { "word": { @@ -1201985,12 +1210020,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p)ag(Zw&u{" + "plurals_guid": "p)ag(Zw&u{", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְּקָנָה": { "word": { @@ -1202060,7 +1210098,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסָּקָה": { "word": { @@ -1202141,12 +1210180,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "lyqUz(;pl1" + "plurals_guid": "lyqUz(;pl1", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסִּיק|Verb|to deduce, to infer": { "word": { @@ -1202897,7 +1210939,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסִּיק|Verb|to ignite, to light up, to set on fire": { "word": { @@ -1202940,23 +1210983,7 @@ ], "confusables_guid": "IOKyaXVgR&", "examples": { - "vetted": [ - { - "text": "וְאֵיךְ אַתְּ מַסִּיקָה אֶת הַמַּסְקָנָה הַזֹּאת", - "source": "time_tunnel_63", - "match_method": "conjugated" - }, - { - "text": "כְּבָר הִסַּקְתִּי שֶׁהִיא בִּכְלָל לֹא יוֹדַעַת שֶׁהַמִּנְהָרָה הוֹבִילָה אוֹתָנוּ אָחוֹרָה בַּזְּמַן", - "source": "time_tunnel_70", - "match_method": "conjugated" - }, - { - "text": "הִיא הִסִּיקָה אֶת הַמַּסְקָנוֹת שֶׁלָּהּ עַל פִּי נִחוּשׁ בִּלְבַד", - "source": "time_tunnel_76", - "match_method": "conjugated" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -1203648,7 +1211675,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְסֹרֶת": { "word": { @@ -1203707,12 +1211735,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "z-M=%Txx$+" + "plurals_guid": "z-M=%Txx$+", + "mishkal": "ktolet", + "mishkal_hebrew": "קְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסּוֹר": { "word": { @@ -1203796,12 +1211827,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r:hv$r.:%<" + "plurals_guid": "r:hv$r.:%<", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַסֵּר": { "word": { @@ -1204551,7 +1212585,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְסֹר": { "word": { @@ -1204977,7 +1213012,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְסָרָה|Noun|sawmill": { "word": { @@ -1205045,12 +1213081,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J-1i@0/SI%" + "plurals_guid": "J-1i@0/SI%", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְסָרָה|Noun|prism": { "word": { @@ -1205118,12 +1213157,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K?3n%IwW2=" + "plurals_guid": "K?3n%IwW2=", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְעָד": { "word": { @@ -1205182,12 +1213224,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H[AHVdms7)" + "plurals_guid": "H[AHVdms7)", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְעֹל|Verb|to wear, to put on (shoes, footwear)": { "word": { @@ -1205233,13 +1213278,7 @@ ], "confusables_guid": "C-}{vjZ=%R", "examples": { - "vetted": [ - { - "text": "הוּא נָעַל אֶת כֻּלָּם וְהִשְׁאִיר אֶת שָׁרוֹן וְאוֹתִי בֵּין שְׁתֵּי עֲרֵמוֹת שֶׁל עֵצִים לְהַסָּקָה", - "source": "time_tunnel_78", - "match_method": "conjugated" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -1205628,7 +1213667,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְעֹל|Verb|to lock, to close, to shut": { "word": { @@ -1206069,7 +1214109,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָעוּל": { "word": { @@ -1206147,11 +1214188,12 @@ "nikkud": "נְעוּלוֹת", "ktiv_male": "נעולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּנְעֹלֶת": { "word": { @@ -1206213,12 +1214255,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "m%gdM$Rmdr" + "plurals_guid": "m%gdM$Rmdr", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַעַל": { "word": { @@ -1206302,12 +1214347,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Cl3?S]7uql" + "plurals_guid": "Cl3?S]7uql", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְעִילָה": { "word": { @@ -1206375,12 +1214423,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Li2esa@>hU" + "plurals_guid": "Li2esa@>hU", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּעֵל": { "word": { @@ -1206809,7 +1214860,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַנְעוּל": { "word": { @@ -1206903,12 +1214955,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CP?R:F`>lU" + "plurals_guid": "CP?R:F`>lU", + "mishkal": "maktul", + "mishkal_hebrew": "מַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְעִיל": { "word": { @@ -1207640,7 +1215695,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְעֹם": { "word": { @@ -1208080,7 +1216136,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָעִים": { "word": { @@ -1208163,11 +1216220,12 @@ "nikkud": "נְעִימוֹת", "ktiv_male": "נעימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְעִימָה": { "word": { @@ -1208256,12 +1216314,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e$-~$cWvoo" + "plurals_guid": "e$-~$cWvoo", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְעִים": { "word": { @@ -1208988,7 +1217049,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַעְנֵעַ": { "word": { @@ -1209740,7 +1217802,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַעְנַע": { "word": { @@ -1209791,7 +1217854,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַעְנֵעַ": { "word": { @@ -1210214,7 +1218278,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְעֹץ": { "word": { @@ -1210663,7 +1218728,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָעוּץ": { "word": { @@ -1210745,11 +1218811,12 @@ "nikkud": "נְעוּצוֹת", "ktiv_male": "נעוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּעֵץ": { "word": { @@ -1211193,7 +1219260,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְעוּרִים": { "word": { @@ -1211254,12 +1219322,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G|!:6-LI!:" + "plurals_guid": "G|!:6-LI!:", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַעֵר": { "word": { @@ -1211703,7 +1219774,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּעֵר": { "word": { @@ -1212131,7 +1220203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְעֹר": { "word": { @@ -1212559,7 +1220632,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַעַר": { "word": { @@ -1212652,12 +1220726,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַעֲרָה": { "word": { @@ -1212745,12 +1220822,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "kok)3j(#tw" + "plurals_guid": "kok)3j(#tw", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֹעַר": { "word": { @@ -1212811,12 +1220891,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z-3O=]N1<." + "plurals_guid": "z-3O=]N1<.", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַעֵר": { "word": { @@ -1213573,7 +1221656,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְפֹּחַ": { "word": { @@ -1214017,7 +1222101,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַפֵּחַ": { "word": { @@ -1214748,7 +1222833,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַפֵּחַ": { "word": { @@ -1215176,7 +1223262,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַפָּח": { "word": { @@ -1215246,12 +1223333,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּפּוּחַ": { "word": { @@ -1215334,12 +1223424,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ih:~?X>kmI" + "plurals_guid": "ih:~?X>kmI", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַפּוּחַ": { "word": { @@ -1215406,12 +1223499,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ny+wu2bx+|" + "plurals_guid": "ny+wu2bx+|", + "mishkal": "maktul", + "mishkal_hebrew": "מַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָפוּחַ": { "word": { @@ -1215472,11 +1223568,12 @@ "nikkud": "נְפוּחוֹת", "ktiv_male": "נפוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶפַח": { "word": { @@ -1215546,12 +1223643,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LeoWXB4e]" + "plurals_guid": "LeoWXB4e]", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵפְט": { "word": { @@ -1215631,7 +1223731,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַפּוֹת": { "word": { @@ -1216354,7 +1224455,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְפִיצוּת|Noun|explosiveness, volatility, instability": { "word": { @@ -1216412,7 +1224514,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפֹּל": { "word": { @@ -1216895,7 +1224998,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפָּלָה": { "word": { @@ -1216960,12 +1225064,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tVv0PUydrv" + "plurals_guid": "tVv0PUydrv", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְפִילָה": { "word": { @@ -1217051,12 +1225158,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FnBc@,O[2j" + "plurals_guid": "FnBc@,O[2j", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפִּיל": { "word": { @@ -1217873,7 +1225983,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַפֵּל": { "word": { @@ -1217888,7 +1225999,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to pounce, to attack, to set upon (על)", + "meaning": "to pounce, to attack, to set upon", "meaning_raw": "to pounce, to attack, to set upon (על)", "audio_url": "https://audio.pealim.com/v0/q9/q9hbvelh9mvz.mp3", "audio_file": "להתנפל.mp3", @@ -1218325,7 +1226436,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "מַפָּל": { "word": { @@ -1218390,12 +1226502,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P*%wk1!DCX" + "plurals_guid": "P*%wk1!DCX", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִפְנוּף": { "word": { @@ -1218473,12 +1226588,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G88HN#zV2H" + "plurals_guid": "G88HN#zV2H", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַפְנֵף": { "word": { @@ -1219225,7 +1227343,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַפֵּץ": { "word": { @@ -1219667,7 +1227786,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִפּוּץ": { "word": { @@ -1219732,12 +1227852,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KQ|S6t?WC!" + "plurals_guid": "KQ|S6t?WC!", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַפָּץ": { "word": { @@ -1219802,12 +1227925,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qIs*x:B|<4" + "plurals_guid": "qIs*x:B|<4", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַפָּץ": { "word": { @@ -1219872,12 +1227998,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dQ@V3}{o:~" + "plurals_guid": "dQ@V3}{o:~", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָפִיץ": { "word": { @@ -1219936,11 +1228065,12 @@ "nikkud": "נְפִיצוֹת", "ktiv_male": "נפיצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַפֵּץ": { "word": { @@ -1220669,7 +1228799,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְפִּיק": { "word": { @@ -1221394,7 +1229525,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפִּיק": { "word": { @@ -1222122,7 +1230254,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְפִּישׁ": { "word": { @@ -1222545,7 +1230678,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶפֶשׁ": { "word": { @@ -1222633,12 +1230767,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b.wZwF&m.H" + "plurals_guid": "b.wZwF&m.H", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְפֹּשׁ": { "word": { @@ -1223061,7 +1231198,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְצִיב": { "word": { @@ -1223136,12 +1231274,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pYi%H&Fe&" + "plurals_guid": "pYi%H&Fe&", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְצִיגוּת": { "word": { @@ -1223207,7 +1231348,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָצִיג": { "word": { @@ -1223289,12 +1231431,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v=XO9@48Zm" + "plurals_guid": "v=XO9@48Zm", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַצֵּחַ": { "word": { @@ -1224083,7 +1232228,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַצֵּחַ": { "word": { @@ -1224512,7 +1232658,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְצִיחַ": { "word": { @@ -1225244,7 +1233391,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִצָּחוֹן": { "word": { @@ -1225333,12 +1233481,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LbHdrbJlvd" + "plurals_guid": "LbHdrbJlvd", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַנְצָחָה": { "word": { @@ -1225400,12 +1233551,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qd8QuK{JrS" + "plurals_guid": "qd8QuK{JrS", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִצּוּחַ": { "word": { @@ -1225467,12 +1233621,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E1A}ppm." + "plurals_guid": "MQ>1A}ppm.", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָצְרִי": { "word": { @@ -1231517,7 +1239717,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַצְרוּת": { "word": { @@ -1231592,12 +1239793,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KxnnfC^Bqe" + "plurals_guid": "KxnnfC^Bqe", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵצֶר": { "word": { @@ -1231662,12 +1239866,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kbYJWGzd)~" + "plurals_guid": "kbYJWGzd)~", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְצֹר": { "word": { @@ -1232119,7 +1240326,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְקֹב": { "word": { @@ -1232558,7 +1240766,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְקֵבָה": { "word": { @@ -1232620,12 +1240829,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "d}dAy*i|Vt" + "plurals_guid": "d}dAy*i|Vt", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַנְקֵב": { "word": { @@ -1232687,12 +1240899,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "c!K!_bA^_C" + "plurals_guid": "c!K!_bA^_C", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִקּוּד": { "word": { @@ -1232771,12 +1240986,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Dtg_<z/z|" + "plurals_guid": "O!b1=>z/z|", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַקֵּם": { "word": { @@ -1238233,7 +1246483,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to take revenge (upon someone) (ב-)", + "meaning": "to take revenge (upon someone)", "meaning_raw": "to take revenge (upon someone) (ב-)", "audio_url": "https://audio.pealim.com/v0/1j/1j4cg7dni3bkz.mp3", "audio_file": "להתנקם.mp3", @@ -1238642,7 +1246892,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהִנָּקֵם": { "word": { @@ -1239066,7 +1247317,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַקְנִיק": { "word": { @@ -1239126,7 +1247378,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַקְנִיקִיָּה": { "word": { @@ -1239186,7 +1247439,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְקֹעַ": { "word": { @@ -1239554,7 +1247808,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַקָּף": { "word": { @@ -1239617,12 +1247872,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s~m;.~eYbd" + "plurals_guid": "s~m;.~eYbd", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶקֵּף": { "word": { @@ -1239685,12 +1247943,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n1ON9a#Yn[" + "plurals_guid": "n1ON9a#Yn[", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקִּיף": { "word": { @@ -1240443,7 +1248704,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְקֹף": { "word": { @@ -1240867,7 +1249129,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָקִיק": { "word": { @@ -1240926,12 +1249189,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xfqPWcG%3{" + "plurals_guid": "xfqPWcG%3{", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַקּוֹר": { "word": { @@ -1241005,12 +1249271,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַקָּר": { "word": { @@ -1241072,12 +1249341,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B)Q`$Lo88W" + "plurals_guid": "B)Q`$Lo88W", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַקֵּר": { "word": { @@ -1241803,7 +1250075,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַקְּשׁוּת": { "word": { @@ -1241867,12 +1250140,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KC^SQFq@*]" + "plurals_guid": "KC^SQFq@*]", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְקֹשׁ": { "word": { @@ -1242313,7 +1250589,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַקֵּשׁ": { "word": { @@ -1242738,7 +1251015,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַקָּשׁ": { "word": { @@ -1242802,12 +1251080,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iW*?O{&W:F" + "plurals_guid": "iW*?O{&W:F", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקִּישׁ": { "word": { @@ -1243535,7 +1251816,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַרְמֵל": { "word": { @@ -1244259,7 +1252541,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַרְתִּיק": { "word": { @@ -1244340,7 +1252623,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָשׂוּי": { "word": { @@ -1244400,11 +1252684,12 @@ }, "mp": null, "fp": null, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִשּׂוּאִין": { "word": { @@ -1244470,12 +1252755,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LKkd9L/A]f" + "plurals_guid": "LKkd9L/A]f", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַשֵּׂא": { "word": { @@ -1244908,7 +1253196,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשֵׂאת": { "word": { @@ -1245367,7 +1253656,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּשֵׂא": { "word": { @@ -1245800,7 +1254090,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻשָּׂא": { "word": { @@ -1245872,12 +1254163,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Du^" + "plurals_guid": "kuggRA)I<>", + "mishkal": "yaktul", + "mishkal_hebrew": "יַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַשֵּׁק": { "word": { @@ -1257552,7 +1265898,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשִּׁיק": { "word": { @@ -1257619,12 +1265966,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P*ECS]:fF." + "plurals_guid": "P*ECS]:fF.", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְשִׁיקָה": { "word": { @@ -1257717,12 +1266067,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q@1*Vi3#H|" + "plurals_guid": "Q@1*Vi3#H|", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֵשֶׁק": { "word": { @@ -1257789,12 +1266142,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N-9Zrlp)6@" + "plurals_guid": "N-9Zrlp)6@", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַשֵּׁק": { "word": { @@ -1258525,7 +1266881,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשִּׁיק": { "word": { @@ -1259256,7 +1267613,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְשֹׁק": { "word": { @@ -1259271,7 +1267629,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to kiss (someone / something) (ל־)", + "meaning": "to kiss (someone / something)", "meaning_raw": "to kiss (someone / something) (ל־)", "audio_url": "https://audio.pealim.com/v0/1a/1a4nf2uj5dr2v.mp3", "audio_file": "לנשוק.mp3", @@ -1259684,7 +1268042,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "הַשָּׁקָה": { "word": { @@ -1259751,12 +1268110,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q!yiTl?.-)" + "plurals_guid": "q!yiTl?.-)", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִנְשֹׁר": { "word": { @@ -1260208,7 +1268570,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶשֶׁר": { "word": { @@ -1260289,12 +1268652,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yr4k^]0fx," + "plurals_guid": "yr4k^]0fx,", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַנְשִׁיר": { "word": { @@ -1261023,7 +1269389,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשִּׁיר": { "word": { @@ -1261449,7 +1269816,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְשִׁירָה": { "word": { @@ -1261508,12 +1269876,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xXn_VvRZfB" + "plurals_guid": "xXn_VvRZfB", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִנְשָׁר": { "word": { @@ -1261578,12 +1269949,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j/6gIJarld" + "plurals_guid": "j/6gIJarld", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָתִיב": { "word": { @@ -1261660,12 +1270034,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DFcR,keL3x" + "plurals_guid": "DFcR,keL3x", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַתֵּב": { "word": { @@ -1262390,7 +1270767,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתִּיז": { "word": { @@ -1263136,7 +1271514,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּתֵז": { "word": { @@ -1263558,7 +1271937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַתֵּחַ": { "word": { @@ -1264300,7 +1272680,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִתּוּחַ": { "word": { @@ -1264378,12 +1272759,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xi+_Yn_QF[" + "plurals_guid": "xi+_Yn_QF[", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶתַח": { "word": { @@ -1264445,12 +1272829,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y6x#h-)leP" + "plurals_guid": "y6x#h-)leP", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַתֶּכֶת": { "word": { @@ -1264511,12 +1272898,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c9Xg|GN0#y" + "plurals_guid": "c9Xg|GN0#y", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתִּיךְ": { "word": { @@ -1265257,7 +1273647,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָתֵת": { "word": { @@ -1265709,7 +1274100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָתוּן": { "word": { @@ -1265768,11 +1274160,12 @@ "nikkud": "נְתוּנוֹת", "ktiv_male": "נתונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְתוּנִים": { "word": { @@ -1265847,12 +1274240,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Iy+d@z-rV|" + "plurals_guid": "Iy+d@z-rV|", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַתָּנָה": { "word": { @@ -1265943,12 +1274339,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Jt3&,-:_/I" + "plurals_guid": "Jt3&,-:_/I", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַתָּן": { "word": { @@ -1266030,12 +1274429,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eU$W^32hL&" + "plurals_guid": "eU$W^32hL&", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּתֵן": { "word": { @@ -1266487,7 +1274889,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַתֵּץ": { "word": { @@ -1267210,7 +1275613,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְנַתְּקוּת": { "word": { @@ -1267277,12 +1275681,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mUHr@:A:?a" + "plurals_guid": "mUHr@:A:?a", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתִּיק": { "word": { @@ -1267710,7 +1276117,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִנָּתְקוּת": { "word": { @@ -1267771,12 +1276179,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "l(xD(B^CKE" + "plurals_guid": "l(xD(B^CKE", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִנָּתֵק": { "word": { @@ -1268220,7 +1276631,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְנַתֵּק": { "word": { @@ -1268648,7 +1277060,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַתֵּק": { "word": { @@ -1269405,7 +1277818,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִתּוּק": { "word": { @@ -1269472,12 +1277886,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iiI&VI9g6_" + "plurals_guid": "iiI&VI9g6_", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶתֶק": { "word": { @@ -1269544,12 +1277961,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ik}XJFy59." + "plurals_guid": "ik}XJFy59.", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻתָּר": { "word": { @@ -1269633,11 +1278053,12 @@ "nikkud": "מֻתָּרוֹת", "ktiv_male": "מותרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְנַתֵּר": { "word": { @@ -1270078,7 +1278499,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתִּיר": { "word": { @@ -1270827,7 +1279249,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נֶתֶר": { "word": { @@ -1270885,12 +1279308,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rG=pNh;i.;" + "plurals_guid": "rG=pNh;i.;", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נַתְרָן": { "word": { @@ -1270948,12 +1279374,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F8*0pO;m.y" + "plurals_guid": "F8*0pO;m.y", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתִּישׁ": { "word": { @@ -1271699,7 +1280128,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַתָּשָׁה": { "word": { @@ -1271760,12 +1280190,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A6c[Uc3Y]o" + "plurals_guid": "A6c[Uc3Y]o", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתָּאֵב": { "word": { @@ -1272185,7 +1280618,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְאָה": { "word": { @@ -1272245,7 +1280679,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְאֹן": { "word": { @@ -1272665,7 +1281100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַבָּא": { "word": { @@ -1272740,7 +1281176,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתּוֹבֵב": { "word": { @@ -1273202,7 +1281639,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסֹּב": { "word": { @@ -1273638,7 +1282076,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסוֹבֵב": { "word": { @@ -1274403,7 +1282842,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָסֹב": { "word": { @@ -1274839,7 +1283279,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִבָּה": { "word": { @@ -1274940,12 +1283381,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "onxoNJCeF0" + "plurals_guid": "onxoNJCeF0", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְסִבָּה": { "word": { @@ -1275036,12 +1283480,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jshxL%~Lc)" + "plurals_guid": "jshxL%~Lc)", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵבֶב": { "word": { @@ -1275116,12 +1283563,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i|aPp5Gb(," + "plurals_guid": "i|aPp5Gb(,", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְבִיבָה": { "word": { @@ -1275222,12 +1283672,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "At%XmW62nL" + "plurals_guid": "At%XmW62nL", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְסִבָּתִי": { "word": { @@ -1275300,7 +1283753,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַבֵּב": { "word": { @@ -1276039,7 +1284493,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָסֵב": { "word": { @@ -1276794,7 +1285249,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָבִיב": { "word": { @@ -1276915,7 +1285371,8 @@ "ktiv_male": "סביבן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְבִיבָתִי": { "word": { @@ -1277004,7 +1285461,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְבִיבוֹן": { "word": { @@ -1277100,7 +1285558,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְסִבָּה": { "word": { @@ -1277180,7 +1285639,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִסְתּוֹבְבוּת": { "word": { @@ -1277249,12 +1285709,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hY98{.@JQH" + "plurals_guid": "hY98{.@JQH", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַבּוֹן": { "word": { @@ -1277300,7 +1285763,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּסְבֹּכֶת": { "word": { @@ -1277365,12 +1285829,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i;*)(+P7-Y" + "plurals_guid": "i;*)(+P7-Y", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָבוּךְ": { "word": { @@ -1277429,11 +1285896,12 @@ "nikkud": "סְבוּכוֹת", "ktiv_male": "סבוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָבִיךְ": { "word": { @@ -1277492,11 +1285960,12 @@ "nikkud": "סְבִיכוֹת", "ktiv_male": "סביכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּסְבִּיךְ": { "word": { @@ -1277561,12 +1286030,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LOtF*PFAVS" + "plurals_guid": "LOtF*PFAVS", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַבֵּךְ": { "word": { @@ -1278321,7 +1286793,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּבֵּךְ": { "word": { @@ -1278773,7 +1287246,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְבֹּל": { "word": { @@ -1279224,7 +1287698,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַבְלָנוּת": { "word": { @@ -1279319,7 +1287794,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵבֶל": { "word": { @@ -1279395,12 +1287871,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַבָּל": { "word": { @@ -1279467,12 +1287946,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w,F=(G#o`[" + "plurals_guid": "w,F=(G#o`[", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַבְלָן": { "word": { @@ -1279530,11 +1288012,12 @@ "nikkud": "סַבְלָנִיּוֹת", "ktiv_male": "סבלניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַבְּלֵט": { "word": { @@ -1280258,7 +1288741,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּבֵּן": { "word": { @@ -1280680,7 +1289164,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַבֵּן": { "word": { @@ -1281405,7 +1289890,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַבְסֵד": { "word": { @@ -1282129,7 +1290615,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְבִירוּת": { "word": { @@ -1282203,7 +1290690,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָבוּר": { "word": { @@ -1282218,7 +1290706,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "believing that, holding an opinion that (ש־)", + "meaning": "believing that, holding an opinion that", "meaning_raw": "believing that, holding an opinion that (ש־)", "audio_url": "https://audio.pealim.com/v0/xv/xvbjwd9z4dx5.mp3", "audio_file": "סבור.mp3", @@ -1282266,11 +1290754,12 @@ "nikkud": "סְבוּרוֹת", "ktiv_male": "סבורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ש־" }, "הִסְתַּבְּרוּת": { "word": { @@ -1282339,12 +1290828,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nd&U7KiFL_" + "plurals_guid": "nd&U7KiFL_", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְבָרָה": { "word": { @@ -1282413,12 +1290905,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gIysGMn2|V" + "plurals_guid": "gIysGMn2|V", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶסְבֵּר": { "word": { @@ -1282513,12 +1291008,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JE@F%dQ[]J" + "plurals_guid": "JE@F%dQ[]J", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסְבָּרָה": { "word": { @@ -1282581,12 +1291079,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Omq-K@qb7J4M" + "plurals_guid": "kYxC>b7J4M", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְגֹּד": { "word": { @@ -1284867,7 +1293376,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְסֻגָּל": { "word": { @@ -1284953,11 +1293463,12 @@ "nikkud": "מְסֻגָּלוֹת", "ktiv_male": "מסוגלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִסְתַּגְּלוּת": { "word": { @@ -1285023,12 +1293534,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iX]@+]?4#4" + "plurals_guid": "iX]@+]?4#4", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָגֹל": { "word": { @@ -1285104,11 +1293618,12 @@ "nikkud": "סְגֻלּוֹת", "ktiv_male": "סגולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְתַגְּלָן": { "word": { @@ -1285172,7 +1293687,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַגֵּל": { "word": { @@ -1285928,7 +1294444,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּגֵּל": { "word": { @@ -1286355,7 +1294872,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְגֻלָּה": { "word": { @@ -1286421,12 +1294939,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CaqgD$oV]q" + "plurals_guid": "CaqgD$oV]q", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְגָן": { "word": { @@ -1286485,12 +1295006,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QDi#it4/%1" + "plurals_guid": "QDi#it4/%1", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִגְנוֹן": { "word": { @@ -1286566,7 +1295090,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִגְנוּן": { "word": { @@ -1286628,12 +1295153,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jL>.K$Tyuq" + "plurals_guid": "jL>.K$Tyuq", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַגְנֵן": { "word": { @@ -1287359,7 +1295887,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַגְסֹגֶת": { "word": { @@ -1287421,12 +1295950,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x5WN?dNXc^" + "plurals_guid": "x5WN?dNXc^", + "mishkal": "kattolet", + "mishkal_hebrew": "קַטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַגְסֵג": { "word": { @@ -1288152,7 +1296684,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּגֵּף": { "word": { @@ -1288574,7 +1297107,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַגֵּף": { "word": { @@ -1289299,7 +1297833,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסְגָּרָה": { "word": { @@ -1289369,12 +1297904,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "deKum^T9(/" + "plurals_guid": "deKum^T9(/", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְגֹּר": { "word": { @@ -1289831,7 +1298369,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּגֵר": { "word": { @@ -1290288,7 +1298827,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְגִירָה": { "word": { @@ -1290358,12 +1298898,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f/k.y4%Uzf" + "plurals_guid": "f/k.y4%Uzf", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְגֶּרֶת": { "word": { @@ -1290449,12 +1298992,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N0V~M,8~V_" + "plurals_guid": "N0V~M,8~V_", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְגֵּר": { "word": { @@ -1290524,12 +1299070,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q[?Q#hd>dc" + "plurals_guid": "Q[?Q#hd>dc", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָגוּר": { "word": { @@ -1290619,11 +1299168,12 @@ "nikkud": "סְגוּרוֹת", "ktiv_male": "סגורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְגִּיר": { "word": { @@ -1291373,7 +1299923,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּגֵּר": { "word": { @@ -1291804,7 +1300355,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶסְגֵּר": { "word": { @@ -1291874,12 +1300426,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C^b.h+rK%S" + "plurals_guid": "C^b.h+rK%S", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶגֶר": { "word": { @@ -1291949,12 +1300504,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rum=5{eDs;" + "plurals_guid": "rum=5{eDs;", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָדִין": { "word": { @@ -1292030,7 +1300588,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַדְנָה": { "word": { @@ -1292091,12 +1300650,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B/?/Tm^*[C" + "plurals_guid": "B/?/Tm^*[C", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַדָּן": { "word": { @@ -1292162,7 +1300724,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּדֵק": { "word": { @@ -1292586,7 +1301149,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶדֶק": { "word": { @@ -1292675,12 +1301239,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N#~y`O#KqR" + "plurals_guid": "N#~y`O#KqR", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַדֵּק": { "word": { @@ -1293407,7 +1301974,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְדֹּק": { "word": { @@ -1293831,7 +1302399,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְדְּרוֹן": { "word": { @@ -1293935,7 +1302504,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵדֶר": { "word": { @@ -1294031,12 +1302601,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִדְרָה": { "word": { @@ -1294130,12 +1302703,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "p8@8x]F-6R" + "plurals_guid": "p8@8x]F-6R", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַדָּר": { "word": { @@ -1294212,12 +1302788,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַדְרָן": { "word": { @@ -1294290,12 +1302869,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HI[S[r&A{C" + "plurals_guid": "HI[S[r&A{C", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְדָר": { "word": { @@ -1294372,12 +1302954,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EKi5]d`v(=" + "plurals_guid": "EKi5]d`v(=", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִדּוּרִי": { "word": { @@ -1294448,7 +1303033,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶסְדֵּר": { "word": { @@ -1294521,12 +1303107,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lY49XrH?,L" + "plurals_guid": "lY49XrH?,L", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָדִיר": { "word": { @@ -1294593,11 +1303182,12 @@ "nikkud": "סְדִירוֹת", "ktiv_male": "סדירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִסְתַּדְּרוּת": { "word": { @@ -1294670,12 +1303260,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MKnuf6PJI@" + "plurals_guid": "MKnuf6PJI@", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַדֵּר": { "word": { @@ -1295438,7 +1304031,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְדִּיר": { "word": { @@ -1296175,7 +1304769,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּדֵּר": { "word": { @@ -1296635,7 +1305230,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִדּוּר": { "word": { @@ -1296724,12 +1305320,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F4tF>9m}vQ" + "plurals_guid": "F4tF>9m}vQ", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַהַר": { "word": { @@ -1296786,12 +1305385,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹהֵר": { "word": { @@ -1296857,12 +1305459,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H8pT;O^fTh" + "plurals_guid": "H8pT;O^fTh", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֹהַר": { "word": { @@ -1296928,12 +1305533,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n^vo/utRZz" + "plurals_guid": "n^vo/utRZz", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַהֲרוֹן": { "word": { @@ -1297001,7 +1305609,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסְוָאָה": { "word": { @@ -1297060,12 +1305669,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L6X>S6H}?e" + "plurals_guid": "L6X>S6H}?e", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹבְלָנוּת": { "word": { @@ -1297119,7 +1305731,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָסֶגֶת": { "word": { @@ -1297598,7 +1306211,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַוֵּג": { "word": { @@ -1298323,7 +1306937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוּג": { "word": { @@ -1298409,7 +1307024,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוּגְיָה": { "word": { @@ -1298485,7 +1307101,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹד": { "word": { @@ -1298577,7 +1307194,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתּוֹדֵד": { "word": { @@ -1298999,7 +1307617,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְוֶדֶר": { "word": { @@ -1299053,7 +1307672,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְווֹת": { "word": { @@ -1299792,7 +1308412,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹלָן": { "word": { @@ -1299847,7 +1308468,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוּס": { "word": { @@ -1299933,7 +1308555,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוּסָה": { "word": { @@ -1300019,7 +1308642,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹף": { "word": { @@ -1300105,7 +1308729,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹפִי": { "word": { @@ -1300180,7 +1308805,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוּפָה": { "word": { @@ -1300266,7 +1308892,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָסוּר": { "word": { @@ -1300686,7 +1309313,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָסִית": { "word": { @@ -1301411,7 +1310039,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲסָתָה": { "word": { @@ -1301472,12 +1310101,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K*AVd041K8" + "plurals_guid": "JE>Vd041K8", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְחֹף": { "word": { @@ -1303989,7 +1312636,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְחֹפֶת": { "word": { @@ -1304052,12 +1312700,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L7S50|JK!{" + "plurals_guid": "L7S50|JK!{", + "mishkal": "ktolet", + "mishkal_hebrew": "קְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְחִיפָה": { "word": { @@ -1304141,12 +1312792,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NT4M|>&pJo" + "plurals_guid": "NT4M|>&pJo", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּחֵף": { "word": { @@ -1304596,7 +1313250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְחֹר": { "word": { @@ -1304611,7 +1313266,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to trade (ב-)", + "meaning": "to trade", "meaning_raw": "to trade (ב-)", "audio_url": "https://audio.pealim.com/v0/aq/aq3u7jfcrfga.mp3", "audio_file": "לסחור.mp3", @@ -1305023,7 +1313678,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "סְחַרְחֹרֶת": { "word": { @@ -1305115,12 +1313771,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Pi8:0mH*O;" + "plurals_guid": "Pi8:0mH*O;", + "mishkal": "ktaltolet", + "mishkal_hebrew": "קְטַלְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְחָר": { "word": { @@ -1305186,12 +1313845,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t]DM@B1}/w" + "plurals_guid": "t]DM@B1}/w", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְחוֹרָה": { "word": { @@ -1305257,12 +1313919,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nYa2Id8$+T" + "plurals_guid": "nYa2Id8$+T", + "mishkal": "ktola", + "mishkal_hebrew": "קְטוֹלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּחֵר": { "word": { @@ -1305689,7 +1314354,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַחַר": { "word": { @@ -1305749,12 +1314415,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Js9v0v#03B" + "plurals_guid": "Js9v0v#03B", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹחֵר": { "word": { @@ -1305836,12 +1314505,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jd0aeSm~v/" + "plurals_guid": "jd0aeSm~v/", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּחְרֵר": { "word": { @@ -1306265,7 +1314937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַחְרֵר": { "word": { @@ -1307008,7 +1315681,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִחְרוּר": { "word": { @@ -1307071,12 +1315745,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cQf.x]M($K" + "plurals_guid": "cQf.x]M($K", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶט": { "word": { @@ -1307152,7 +1315829,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְטוּדֶנְט": { "word": { @@ -1307206,7 +1315884,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְטָטִיסְטִיקָה": { "word": { @@ -1307260,7 +1315939,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְטוֹת": { "word": { @@ -1307683,7 +1316363,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹטֶה": { "word": { @@ -1307739,11 +1316420,12 @@ "nikkud": "סוֹטוֹת", "ktiv_male": "סוטות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְטִיָּה": { "word": { @@ -1307805,12 +1316487,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q~sV*twvRk" + "plurals_guid": "Q~sV*twvRk", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְטוּל": { "word": { @@ -1307863,11 +1316548,12 @@ "nikkud": "מַסְטוּלוֹת", "ktiv_male": "מסטולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktul", + "mishkal_hebrew": "מַקְטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְטִירָה": { "word": { @@ -1307944,12 +1316630,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ms/fruvxw#" + "plurals_guid": "ms/fruvxw#", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְטֹר": { "word": { @@ -1308371,7 +1317060,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיב": { "word": { @@ -1308431,7 +1317121,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּיֵּג": { "word": { @@ -1308854,7 +1317545,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַיֵּג": { "word": { @@ -1309580,7 +1318272,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִסְתַּיְּגוּת": { "word": { @@ -1309642,12 +1318335,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "F[R#7Ei5Mm" + "plurals_guid": "F[R#7Ei5Mm", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיגַרְיָה": { "word": { @@ -1309728,7 +1318424,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַיֵּד": { "word": { @@ -1310451,7 +1319148,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָסִיחַ": { "word": { @@ -1311179,7 +1319877,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָסִיחַ": { "word": { @@ -1311622,7 +1320321,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָסִיט": { "word": { @@ -1312363,7 +1321063,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיּוּט": { "word": { @@ -1312424,12 +1321125,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rvo{FD]$<>" + "plurals_guid": "rvo{FD]$<>", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּיֵּם": { "word": { @@ -1312875,7 +1321579,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיֹּמֶת": { "word": { @@ -1312939,12 +1321644,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t28!&R8COT" + "plurals_guid": "t28!&R8COT", + "mishkal": "kittolet", + "mishkal_hebrew": "קִטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיּוּם": { "word": { @@ -1313024,12 +1321732,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hON-7[hIR)" + "plurals_guid": "hON-7[hIR)", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְסֻיָּם": { "word": { @@ -1313113,11 +1321824,12 @@ "nikkud": "מְסֻיָּמוֹת", "ktiv_male": "מסוימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַיֵּם": { "word": { @@ -1313871,7 +1322583,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִימָן": { "word": { @@ -1313952,7 +1322665,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִימָנִיָּה": { "word": { @@ -1314012,7 +1322726,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיס": { "word": { @@ -1314072,7 +1322787,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיסְמָה": { "word": { @@ -1314148,7 +1322864,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַיֵּעַ": { "word": { @@ -1314891,7 +1323608,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּיֵּעַ": { "word": { @@ -1315315,7 +1324033,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַיְעָן": { "word": { @@ -1315378,12 +1324097,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P]#p%~Ft5H" + "plurals_guid": "P]#p%~Ft5H", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיּוּעַ": { "word": { @@ -1315446,12 +1324168,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B80e<9NoW#" + "plurals_guid": "B80e<9NoW#", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַיִף": { "word": { @@ -1315512,12 +1324237,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַיָּף": { "word": { @@ -1315578,12 +1324306,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uRC$kXtWiT" + "plurals_guid": "uRC$kXtWiT", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיפוֹן": { "word": { @@ -1315646,7 +1324377,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָסִיר": { "word": { @@ -1316400,7 +1325132,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַיֵּר": { "word": { @@ -1317128,7 +1325861,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַיֶּרֶת": { "word": { @@ -1317192,12 +1325926,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qx_p}Wrcu8" + "plurals_guid": "qx_p}Wrcu8", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיּוּר": { "word": { @@ -1317282,12 +1326019,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i.N3WJ%I~(" + "plurals_guid": "i.N3WJ%I~(", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲסָרָה": { "word": { @@ -1317351,12 +1326091,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y:t7iQ-Egz" + "plurals_guid": "y:t7iQ-Egz", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִיר": { "word": { @@ -1317442,7 +1326185,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִירָה": { "word": { @@ -1317523,7 +1326267,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָךְ": { "word": { @@ -1317609,7 +1326354,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִכּוּי": { "word": { @@ -1317694,12 +1326440,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sOO(&1[#$p" + "plurals_guid": "sOO(&1[#$p", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְכֹּךְ": { "word": { @@ -1318126,7 +1326875,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסוֹכֵךְ": { "word": { @@ -1318882,7 +1327632,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָסַךְ": { "word": { @@ -1318974,12 +1327725,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mnQ$xB%ho/" + "plurals_guid": "mnQ$xB%ho/", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִכָּה": { "word": { @@ -1319045,12 +1327799,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַכֵּךְ": { "word": { @@ -1319780,7 +1328537,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֻכָּה": { "word": { @@ -1319846,12 +1328604,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "l0(9EEoyDJ" + "plurals_guid": "l0(9EEoyDJ", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּסָךְ": { "word": { @@ -1319917,12 +1328678,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t`7YN/NZ49" + "plurals_guid": "t`7YN/NZ49", + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִסְתַּכְּלוּת": { "word": { @@ -1319985,12 +1328749,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G(@" + "plurals_guid": "v/fHGz+FP>", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַכֵּן": { "word": { @@ -1325143,7 +1333943,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְכִּין": { "word": { @@ -1325572,7 +1334373,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּכֵּן": { "word": { @@ -1326027,7 +1334829,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַכִּין": { "word": { @@ -1326121,12 +1334924,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BJ<[^W~q&8" + "plurals_guid": "BJ<[^W~q&8", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִכְסוּךְ": { "word": { @@ -1326205,12 +1335011,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J[3GV*X#yD" + "plurals_guid": "J[3GV*X#yD", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּכְסֵךְ": { "word": { @@ -1326634,7 +1335443,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַכְסֵךְ": { "word": { @@ -1327058,7 +1335868,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֻכָּרִיָּה": { "word": { @@ -1327147,7 +1335958,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְכֹּר": { "word": { @@ -1327571,7 +1336383,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֻכָּר": { "word": { @@ -1327634,7 +1336447,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶכֶר": { "word": { @@ -1327697,12 +1336511,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DL*3r`s=8F" + "plurals_guid": "DL*3r`s=8F", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְכִּית": { "word": { @@ -1328125,7 +1336942,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶסְכֵּת": { "word": { @@ -1328187,12 +1337005,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zu1i91oU,I" + "plurals_guid": "zu1i91oU,I", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּסְכִּית": { "word": { @@ -1328254,12 +1337075,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H)}0lbty02" + "plurals_guid": "H)}0lbty02", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַל": { "word": { @@ -1328340,7 +1337164,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶלֶבּ": { "word": { @@ -1328394,7 +1337219,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּלְבֵּט": { "word": { @@ -1328410,7 +1337236,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to relax, to chill, to sit around (slang); to make fun of, to mock (על) (slang)", + "meaning": "to relax, to chill, to sit around (slang); to make fun of, to mock (slang)", "meaning_raw": "to relax, to chill, to sit around (slang); to make fun of, to mock (על) (slang)", "audio_url": "https://audio.pealim.com/v0/1v/1vw23c1utuspe.mp3", "audio_file": "להסתלבט.mp3", @@ -1328815,7 +1337641,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לִסְלֹד": { "word": { @@ -1329237,7 +1338064,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְלִידָה": { "word": { @@ -1329292,12 +1338120,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ylWz`ACV,p" + "plurals_guid": "ylWz`ACV,p", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶלוּלָר": { "word": { @@ -1329351,7 +1338182,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶלוּלָרִי": { "word": { @@ -1329404,7 +1338236,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָלוֹן": { "word": { @@ -1329480,7 +1338313,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְלֹחַ": { "word": { @@ -1329929,7 +1338763,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְלִיחָה": { "word": { @@ -1330017,12 +1338852,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tQ|YHRjYBz" + "plurals_guid": "tQ|YHRjYBz", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּלֵחַ": { "word": { @@ -1330445,7 +1339283,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָלָט": { "word": { @@ -1330521,7 +1339360,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹלְלָה": { "word": { @@ -1330611,7 +1339451,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּלֵל": { "word": { @@ -1331036,7 +1339877,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְלֹל": { "word": { @@ -1331461,7 +1340303,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְסִלָּה": { "word": { @@ -1331541,12 +1340384,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Oai62516a5" + "plurals_guid": "Oai62516a5", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְלוּל": { "word": { @@ -1331636,12 +1340482,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p{C5jz2>OC" + "plurals_guid": "p{C5jz2>OC", + "mishkal": "maktul", + "mishkal_hebrew": "מַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסְלָמָה": { "word": { @@ -1331697,12 +1340546,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w/NtxJ/p9#" + "plurals_guid": "w/NtxJ/p9#", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְלִים": { "word": { @@ -1332428,7 +1341280,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֻלָּם": { "word": { @@ -1332511,7 +1341364,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַלְסִלָּה": { "word": { @@ -1332566,7 +1341420,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּלְסֵל": { "word": { @@ -1333015,7 +1341870,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַלְסֵל": { "word": { @@ -1333762,7 +1342618,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶלַע": { "word": { @@ -1333842,12 +1342699,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sYKxvw$wI:" + "plurals_guid": "sYKxvw$wI:", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִלּוּף": { "word": { @@ -1333908,12 +1342768,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dlPPd%}|T{" + "plurals_guid": "dlPPd%}|T{", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַלֵּף": { "word": { @@ -1334638,7 +1343501,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּלֵּק": { "word": { @@ -1335121,7 +1343985,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִלּוּק": { "word": { @@ -1335186,12 +1344051,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qo15p:4?Ft" + "plurals_guid": "qo15p:4?Ft", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶלֶק": { "word": { @@ -1335256,12 +1344124,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kf^Q;hfW7L" + "plurals_guid": "kf^Q;hfW7L", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַלֵּק": { "word": { @@ -1336016,7 +1344887,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְלִיק": { "word": { @@ -1336745,7 +1345617,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְלִיק": { "word": { @@ -1336810,12 +1345683,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dU.v:!R" + "plurals_guid": "i-F[J$x>!R", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּעֵף": { "word": { @@ -1356199,7 +1365186,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְעִיף": { "word": { @@ -1356276,12 +1365264,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HSaq!)ciO%" + "plurals_guid": "HSaq!)ciO%", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִסְתַּעֲרוּת": { "word": { @@ -1356347,12 +1365338,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g3Z$^T+_>4" + "plurals_guid": "g3Z$^T+_>4", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּעֵר": { "word": { @@ -1356805,7 +1365799,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּעֵר": { "word": { @@ -1357232,7 +1366227,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְעִיר": { "word": { @@ -1357659,7 +1366655,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְעָרָה": { "word": { @@ -1357746,12 +1366743,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "s70qy/BCwu" + "plurals_guid": "s70qy/BCwu", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יַסְעוּר": { "word": { @@ -1357817,12 +1366817,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Mpru3x,cAy" + "plurals_guid": "Mpru3x,cAy", + "mishkal": "yaktul", + "mishkal_hebrew": "יַקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְעֹר": { "word": { @@ -1358275,7 +1367278,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְפּוֹא": { "word": { @@ -1358334,12 +1367338,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f1G-`#>7Is" + "plurals_guid": "f1G-`#>7Is", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְפֹּג": { "word": { @@ -1358781,7 +1367788,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּפֵג": { "word": { @@ -1359207,7 +1368215,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפִיגָה": { "word": { @@ -1359272,12 +1368281,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K2WF_I<$T!" + "plurals_guid": "K2WF_I<$T!", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְפִּיג": { "word": { @@ -1359703,7 +1368715,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֻפְגָּנִיָּה": { "word": { @@ -1359768,7 +1368781,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפוֹג": { "word": { @@ -1359833,12 +1368847,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ORwpW}!0p}" + "plurals_guid": "ORwpW}!0p}", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְפֹּד": { "word": { @@ -1360261,7 +1369278,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּפֵד": { "word": { @@ -1360684,7 +1369702,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְפִּיד": { "word": { @@ -1361426,7 +1370445,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַפָּה": { "word": { @@ -1361502,7 +1370522,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפּוֹרְט": { "word": { @@ -1361572,7 +1370593,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפּוֹרְטַאי": { "word": { @@ -1361632,7 +1370654,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַפֵּחַ": { "word": { @@ -1362362,7 +1371385,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְפֹּחַ": { "word": { @@ -1362789,7 +1371813,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּפֵּחַ": { "word": { @@ -1363216,7 +1372241,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפּוּחַ": { "word": { @@ -1363282,12 +1372308,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vX|EiE.(w#" + "plurals_guid": "vX|EiE.(w#", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶפַח": { "word": { @@ -1363353,12 +1372382,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u]6Dy^3YHQ" + "plurals_guid": "u]6Dy^3YHQ", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִסְפָּח": { "word": { @@ -1363424,12 +1372456,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ZmP" + "plurals_guid": "lsu,avxit>", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַפְסָל": { "word": { @@ -1365676,7 +1374731,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַפְסָר": { "word": { @@ -1365738,12 +1374794,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o7O#YJS8i." + "plurals_guid": "o7O#YJS8i.", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַפְסֵר": { "word": { @@ -1366469,7 +1375528,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַף": { "word": { @@ -1366544,12 +1375604,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xY3#%(kHPg" + "plurals_guid": "xY3#%(kHPg", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפֶּצִיפִי": { "word": { @@ -1366602,7 +1375665,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפּוּק": { "word": { @@ -1366672,12 +1375736,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QaW:xfI#on" + "plurals_guid": "QaW:xfI#on", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפִיקָה|Noun|sufficiency (esp. in compound אי־ספיקה: deficiency, failure)": { "word": { @@ -1366750,12 +1375817,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b{-cc?5EI{" + "plurals_guid": "b{-cc?5EI{", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפִיקָה|Noun|flow rate, throughput": { "word": { @@ -1366828,12 +1375898,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e0=z=#RCp2" + "plurals_guid": "e0=z=#RCp2", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּפֵּק": { "word": { @@ -1367280,7 +1376353,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְפִּיק": { "word": { @@ -1367737,7 +1376811,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְפֹּק": { "word": { @@ -1367752,7 +1376827,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to clap (כפיים)", + "meaning": "to clap", "meaning_raw": "to clap (כפיים)", "audio_url": "https://audio.pealim.com/v0/1d/1dniyn6t9uwxe.mp3", "audio_file": "לספוק.mp3", @@ -1368168,7 +1377243,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "כפיים" }, "סַפָּק": { "word": { @@ -1368262,12 +1377338,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָפֵק": { "word": { @@ -1368359,12 +1377438,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fN>a0Ow!k&" + "plurals_guid": "fN>a0Ow!k&", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסְפָּקָה": { "word": { @@ -1368434,12 +1377516,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J5pt5/MPz(" + "plurals_guid": "J5pt5/MPz(", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַסְפָּקָה": { "word": { @@ -1368530,12 +1377615,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "lJ3[Md_xBR" + "plurals_guid": "lJ3[Md_xBR", + "mishkal": "aktala", + "mishkal_hebrew": "אַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַפֵּק": { "word": { @@ -1369290,7 +1378378,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְפֹּר": { "word": { @@ -1369755,7 +1378844,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּפֵּר": { "word": { @@ -1370210,7 +1379300,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפְרִיָּה": { "word": { @@ -1370293,7 +1379384,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּסְפֹּרֶת": { "word": { @@ -1370371,12 +1379463,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r?oaz^?EFr" + "plurals_guid": "r?oaz^?EFr", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפּוּר": { "word": { @@ -1370480,12 +1379575,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M{p>_997L#" + "plurals_guid": "M{p>_997L#", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵפֶר": { "word": { @@ -1370585,12 +1379683,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַפָּר": { "word": { @@ -1370687,12 +1379788,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LYX@+`}XpJ" + "plurals_guid": "LYX@+`}XpJ", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפְרָה": { "word": { @@ -1370786,12 +1379890,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "AuG5&8Y00P" + "plurals_guid": "AuG5&8Y00P", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְפָּרָה": { "word": { @@ -1370869,12 +1379976,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D/]5+.X;5w" + "plurals_guid": "D/]5+.X;5w", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְפָּר": { "word": { @@ -1370978,12 +1380088,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DjM?7Ky^C<" + "plurals_guid": "DjM?7Ky^C<", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּפֵר": { "word": { @@ -1371422,7 +1380535,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפְרוּת": { "word": { @@ -1371505,7 +1380619,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפְרוּתִי": { "word": { @@ -1371597,7 +1380712,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפִירָה": { "word": { @@ -1371675,12 +1380791,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mZ[k51y(6=" + "plurals_guid": "mZ[k51y(6=", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַפְרָן": { "word": { @@ -1371758,12 +1380877,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iER&QoP38R" + "plurals_guid": "iER&QoP38R", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַפֵּר": { "word": { @@ -1372531,7 +1381653,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְפָּרַיִם": { "word": { @@ -1372603,12 +1381726,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lSTE&uo[Y0" + "plurals_guid": "lSTE&uo[Y0", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָפוּר": { "word": { @@ -1372680,11 +1381806,12 @@ "nikkud": "סְפוּרוֹת", "ktiv_male": "ספורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹפֵר": { "word": { @@ -1372778,12 +1381905,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k=*|f6r=(L" + "plurals_guid": "k=*|f6r=(L", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפָרַד": { "word": { @@ -1372860,7 +1381990,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְפָרַדִּי": { "word": { @@ -1372929,7 +1382060,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִפְרוֹן": { "word": { @@ -1372994,7 +1382126,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַפְרֵת": { "word": { @@ -1373718,7 +1382851,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְצֶנָה": { "word": { @@ -1373773,7 +1382907,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְקִילָה": { "word": { @@ -1373836,12 +1382971,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "j5mrwbdj17" + "plurals_guid": "j5mrwbdj17", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּקֵל": { "word": { @@ -1374265,7 +1383403,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְקֹל": { "word": { @@ -1374689,7 +1383828,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַקֵּל": { "word": { @@ -1375416,7 +1384556,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַקְרָן": { "word": { @@ -1375501,11 +1384642,12 @@ "nikkud": "סַקְרָנִיּוֹת", "ktiv_male": "סקרניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְקֹר": { "word": { @@ -1375957,7 +1385099,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּקֵר": { "word": { @@ -1376383,7 +1385526,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶקֶר": { "word": { @@ -1376448,12 +1385592,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B|?yk0|PL$" + "plurals_guid": "B|?yk0|PL$", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְקִירָה": { "word": { @@ -1376518,12 +1385665,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hC[`at<`t." + "plurals_guid": "hC[`at<`t.", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַקֵּר": { "word": { @@ -1377252,7 +1386402,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַקְרֵן": { "word": { @@ -1378004,7 +1387155,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּקְרֵן": { "word": { @@ -1378427,7 +1387579,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵרוּב": { "word": { @@ -1378504,12 +1387657,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "c4jY)yk9x8" + "plurals_guid": "c4jY)yk9x8", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסָרֵב": { "word": { @@ -1379260,7 +1388416,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַרְבֵּל": { "word": { @@ -1379984,7 +1389141,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְרֹג": { "word": { @@ -1380424,7 +1389582,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְרֵגָה": { "word": { @@ -1380487,12 +1389646,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "podffz,aSm" + "plurals_guid": "podffz,aSm", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְרִיגָה": { "word": { @@ -1380549,12 +1389711,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QvrqY%Jg]4" + "plurals_guid": "QvrqY%Jg]4", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּרֵג": { "word": { @@ -1380978,7 +1390143,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַרְגֵּל": { "word": { @@ -1381033,7 +1390199,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְרִיחַ": { "word": { @@ -1381758,7 +1390925,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵרָחוֹן": { "word": { @@ -1381840,12 +1391008,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Lv}?VM/pi;" + "plurals_guid": "Lv}?VM/pi;", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְרֹט": { "word": { @@ -1382275,7 +1391446,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּרֵט": { "word": { @@ -1382705,7 +1391877,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַסְרָטָה": { "word": { @@ -1382768,12 +1391941,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ny_8!kAM?#" + "plurals_guid": "ny_8!kAM?#", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶרֶט": { "word": { @@ -1382868,12 +1392044,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Dt8`uD5(_s" + "plurals_guid": "Dt8`uD5(_s", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְרֵטָה": { "word": { @@ -1382942,12 +1392121,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FLnRR=T!&p" + "plurals_guid": "FLnRR=T!&p", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּסְרִיט": { "word": { @@ -1383016,12 +1392198,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I](L?G0}rN" + "plurals_guid": "I](L?G0}rN", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַרְטָן": { "word": { @@ -1383116,7 +1392301,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְרִיט": { "word": { @@ -1383849,7 +1393035,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּסְרִיטַאי": { "word": { @@ -1383923,7 +1393110,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִרְטוֹן": { "word": { @@ -1383997,7 +1393185,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִרְטוּן": { "word": { @@ -1384057,12 +1393246,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E)cxmhZ5}E" + "plurals_guid": "E)cxmhZ5}E", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶרֶן|Noun|axle": { "word": { @@ -1384126,12 +1393318,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vMINbrqPnD" + "plurals_guid": "vMINbrqPnD", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֶרֶן|Noun|captain (military)": { "word": { @@ -1384195,12 +1393390,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mt)U$AXG@a" + "plurals_guid": "mt)U$AXG@a", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסָרֵס": { "word": { @@ -1384926,7 +1394124,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָרִיס": { "word": { @@ -1384988,12 +1394187,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u[8_s%~S:l" + "plurals_guid": "u[8_s%~S:l", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵרוּס": { "word": { @@ -1385055,12 +1394257,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BM/[||+U2q" + "plurals_guid": "BM/[||+U2q", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סַרְעֶפֶת": { "word": { @@ -1385120,12 +1394325,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fzY(%C}Ba%" + "plurals_guid": "fzY(%C}Ba%", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סִרְפָּד": { "word": { @@ -1385180,7 +1394388,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְרִיקָה": { "word": { @@ -1385246,12 +1394455,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FjO:wMlE|n" + "plurals_guid": "FjO:wMlE|n", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסָרֵק": { "word": { @@ -1385997,7 +1395209,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתָּרֵק": { "word": { @@ -1386440,7 +1395653,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּסְרֹקֶת": { "word": { @@ -1386506,12 +1395720,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gmcO5`O+@5" + "plurals_guid": "gmcO5`O+@5", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַסְרֵק": { "word": { @@ -1386577,12 +1395794,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m64a%3}bRF" + "plurals_guid": "m64a%3}bRF", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּרֵק": { "word": { @@ -1387009,7 +1396229,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְרֹק": { "word": { @@ -1387436,7 +1396657,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְרָק": { "word": { @@ -1387485,7 +1396707,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סוֹרֵר": { "word": { @@ -1387538,11 +1396761,12 @@ "nikkud": "סוֹרְרוֹת", "ktiv_male": "סוררות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְתָו": { "word": { @@ -1387601,7 +1396825,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סָתוּם": { "word": { @@ -1387675,11 +1396900,12 @@ "nikkud": "סְתוּמוֹת", "ktiv_male": "סתומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְתָם": { "word": { @@ -1387738,7 +1396964,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִסָּתֵם": { "word": { @@ -1388163,7 +1397390,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְתֹּם": { "word": { @@ -1388588,7 +1397816,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְתָמִי": { "word": { @@ -1388650,7 +1397879,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְתִימָה": { "word": { @@ -1388714,12 +1397944,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ox+jB:[N~c" + "plurals_guid": "ox+jB:[N~c", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִסְתֹּר": { "word": { @@ -1389147,7 +1398380,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסְתַּתֵּר": { "word": { @@ -1389601,7 +1398835,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִסְתּוֹר": { "word": { @@ -1389668,12 +1398903,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rJ?.t~erNN" + "plurals_guid": "rJ?.t~erNN", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סְתִירָה": { "word": { @@ -1389740,12 +1398978,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HOU,wSDyA>" + "plurals_guid": "HOU,wSDyA>", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "סֵתֶר": { "word": { @@ -1389838,12 +1399079,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yFWdBxU;|J" + "plurals_guid": "yFWdBxU;|J", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִסָּתֵר": { "word": { @@ -1390297,7 +1399541,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַסְתִּיר": { "word": { @@ -1391054,7 +1400299,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִסְתָּר": { "word": { @@ -1391115,11 +1400361,12 @@ "nikkud": "נִסְתָּרוֹת", "ktiv_male": "נסתרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְסַתֵּת": { "word": { @@ -1391842,7 +1401089,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָב|Adjective": { "word": { @@ -1391898,7 +1401146,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲבִיד": { "word": { @@ -1392631,7 +1401880,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֻבְדָּה": { "word": { @@ -1392726,12 +1401976,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G9R^KX!F(VQv]" + "plurals_guid": "s>X!F(VQv]", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַבּוֹת": { "word": { @@ -1395019,7 +1404294,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲבוֹת": { "word": { @@ -1395461,7 +1404737,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַבּוֹת": { "word": { @@ -1396192,7 +1405469,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָבֶה": { "word": { @@ -1396266,11 +1405544,12 @@ "nikkud": "עָבוֹת", "ktiv_male": "עבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֻבָּר": { "word": { @@ -1396352,7 +1405631,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעְבֹּרֶת": { "word": { @@ -1396429,12 +1405709,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ukuuiwgvO=" + "plurals_guid": "ukuuiwgvO=", + "mishkal": "miktolet", + "mishkal_hebrew": "מִקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲבִיר": { "word": { @@ -1397232,7 +1406515,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַבֵּר": { "word": { @@ -1397670,7 +1406954,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲבַרְיָן": { "word": { @@ -1397747,7 +1407032,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲבָר": { "word": { @@ -1397850,12 +1407136,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h#A>&#Ciqu" + "plurals_guid": "h#A>&#Ciqu", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִבְרִי": { "word": { @@ -1397956,7 +1407245,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲבִירָה": { "word": { @@ -1398036,12 +1407326,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xwv8Z7Ud.s" + "plurals_guid": "xwv8Z7Ud.s", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲבֵרָה": { "word": { @@ -1398121,12 +1407414,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HM9}@{B7&Y" + "plurals_guid": "HM9}@{B7&Y", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעְבָּרָה": { "word": { @@ -1398219,12 +1407515,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HcFUaP(s|)" + "plurals_guid": "HcFUaP(s|)", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַעֲבָרָה": { "word": { @@ -1398317,12 +1407616,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x9HAick:X`" + "plurals_guid": "x9HAick:X`", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשֶׁעָבַר": { "word": { @@ -1398393,7 +1407695,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "כַּעֲבֹר": { "word": { @@ -1398474,7 +1407777,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְעַבֵּר": { "word": { @@ -1399241,7 +1408545,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲבֹר": { "word": { @@ -1399705,7 +1409010,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָבָר": { "word": { @@ -1399802,12 +1409108,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fr$xA)h>k~" + "plurals_guid": "fr$xA)h>k~", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּעֲבוּרָה": { "word": { @@ -1399884,12 +1409193,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HF;tkV40:$" + "plurals_guid": "HF;tkV40:$", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲבָרוֹן": { "word": { @@ -1399971,7 +1409283,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַבְרֵת": { "word": { @@ -1400394,7 +1409707,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַבְרֵת": { "word": { @@ -1401120,7 +1410434,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹבֶשׁ": { "word": { @@ -1401181,12 +1410496,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rcT,#MCq*a" + "plurals_guid": "rcT,#MCq*a", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַבֵּשׁ": { "word": { @@ -1401608,7 +1410926,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָבֵשׁ": { "word": { @@ -1401661,7 +1410980,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָבֹת": { "word": { @@ -1401714,11 +1411034,12 @@ "nikkud": "עֲבֻתּוֹת", "ktiv_male": "עבותות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַגְבָנִיָּה|Noun|🍅 tomato": { "word": { @@ -1401785,7 +1411106,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַגֶּבֶת": { "word": { @@ -1401841,12 +1411163,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oKnTRnk=D3" + "plurals_guid": "oKnTRnk=D3", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲגֹב": { "word": { @@ -1401861,7 +1411186,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to court, to seduce someone (על) (dated)", + "meaning": "to court, to seduce someone (dated)", "meaning_raw": "to court, to seduce someone (על) (dated)", "audio_url": "https://audio.pealim.com/v0/ih/ihc2hx7x790a.mp3", "audio_file": "לעגוב.mp3", @@ -1402269,7 +1411594,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "עָגָה": { "word": { @@ -1402329,7 +1411655,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָגוּר": { "word": { @@ -1402384,7 +1411711,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַגֵּל": { "word": { @@ -1402813,7 +1412141,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִגּוּל": { "word": { @@ -1402907,12 +1412236,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C3Vh6AuZWF" + "plurals_guid": "C3Vh6AuZWF", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָגֹל": { "word": { @@ -1402990,11 +1412322,12 @@ "nikkud": "עֲגֻלּוֹת", "ktiv_male": "עגולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶגֶל": { "word": { @@ -1403062,12 +1412395,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I,$oIJgQy," + "plurals_guid": "I,$oIJgQy,", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲגָל": { "word": { @@ -1403135,12 +1412471,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "|O;}vnLY=" + "plurals_guid": "|O;}vnLY=", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַגֵּל": { "word": { @@ -1403872,7 +1413211,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲגַלְגַּל": { "word": { @@ -1403934,11 +1413274,12 @@ "nikkud": "עֲגַלְגַּלּוֹת", "ktiv_male": "עגלגלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲגָלָה": { "word": { @@ -1404018,12 +1413359,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶגְלָה": { "word": { @@ -1404094,12 +1413438,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jqM,XAr~]V" + "plurals_guid": "jqM,XAr~]V", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָגוּם": { "word": { @@ -1404176,11 +1413523,12 @@ "nikkud": "עֲגוּמוֹת", "ktiv_male": "עגומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַגְמוּמִי": { "word": { @@ -1404240,7 +1413588,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲגֹם": { "word": { @@ -1404663,7 +1414012,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִגּוּן": { "word": { @@ -1404726,12 +1414076,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kuD&U2#-B4" + "plurals_guid": "kuD&U2#-B4", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹגֶן": { "word": { @@ -1404794,12 +1414147,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "PuV;SxAYGe" + "plurals_guid": "PuV;SxAYGe", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַגֵּן": { "word": { @@ -1405526,7 +1414882,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲגֹן": { "word": { @@ -1405976,7 +1415333,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַד|Preposition": { "word": { @@ -1406032,7 +1415390,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "עַד|Noun": { "word": { @@ -1406109,7 +1415468,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲדִי": { "word": { @@ -1406168,12 +1415528,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rJn4Mw&J!1" + "plurals_guid": "rJn4Mw&J!1", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲדַיִן": { "word": { @@ -1406232,7 +1415595,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִתְעַדְכֵּן": { "word": { @@ -1406656,7 +1416020,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַדְכֵּן": { "word": { @@ -1407409,7 +1416774,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִדְכּוּן": { "word": { @@ -1407472,12 +1416838,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qH&z~-v{%l" + "plurals_guid": "qH&z~-v{%l", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַדְכָּנִי": { "word": { @@ -1407530,7 +1416899,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַדֵּן": { "word": { @@ -1407953,7 +1417323,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָדִין": { "word": { @@ -1408025,11 +1417396,12 @@ "nikkud": "עֲדִינוֹת", "ktiv_male": "עדינות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַדֵּן": { "word": { @@ -1408755,7 +1418127,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָדִיף": { "word": { @@ -1408839,11 +1418212,12 @@ "nikkud": "עֲדִיפוֹת", "ktiv_male": "עדיפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲדִיף": { "word": { @@ -1409597,7 +1418971,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹדֶף": { "word": { @@ -1409661,12 +1419036,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nA0-y.F`[0" + "plurals_guid": "nA0-y.F`[0", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲדִיפוּת": { "word": { @@ -1409735,7 +1419113,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּעֲדוּף": { "word": { @@ -1409799,12 +1419178,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n-[SP`=|7*" + "plurals_guid": "n-[SP`=|7*", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֵעָדְרוּת": { "word": { @@ -1409868,12 +1419250,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E4D7uom8oE" + "plurals_guid": "E4D7uom8oE", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲדֹר": { "word": { @@ -1410298,7 +1419683,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵדֶר": { "word": { @@ -1410383,12 +1419769,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hCC?#a*:;B" + "plurals_guid": "hCC?#a*:;B", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָדֵר": { "word": { @@ -1410813,7 +1420202,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲדֵר": { "word": { @@ -1410877,12 +1420267,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o=2Ft*FB(N" + "plurals_guid": "o=2Ft*FB(N", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲדָשָׁה|Noun|lentil": { "word": { @@ -1410946,12 +1420339,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "by[pe0O1?G" + "plurals_guid": "by[pe0O1?G", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲדָשָׁה|Noun|lens": { "word": { @@ -1411029,12 +1420425,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yTMDnYY&44" + "plurals_guid": "yTMDnYY&44", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָעִיב": { "word": { @@ -1411049,7 +1420448,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to cloud, to overshadow (על) (lit.)", + "meaning": "to cloud, to overshadow (lit.)", "meaning_raw": "to cloud, to overshadow (על) (lit.)", "audio_url": "https://audio.pealim.com/v0/ks/ksfz1iv1dbli.mp3", "audio_file": "להעיב.mp3", @@ -1411759,7 +1421158,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "עָב|Noun": { "word": { @@ -1411828,7 +1421228,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָעוּג": { "word": { @@ -1412248,7 +1421649,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עוּגָה": { "word": { @@ -1412329,7 +1421731,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עוּגִיָּה": { "word": { @@ -1412415,7 +1421818,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵד": { "word": { @@ -1412505,7 +1421909,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעוֹדֵד": { "word": { @@ -1412933,7 +1422338,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָעִיד": { "word": { @@ -1413690,7 +1423096,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעוֹדֵד": { "word": { @@ -1414447,7 +1423854,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּעוּדָה": { "word": { @@ -1414540,12 +1423948,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E-ne.?*o*>" + "plurals_guid": "E-ne.?*o*>", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵדָה": { "word": { @@ -1414638,7 +1424049,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵדוּת": { "word": { @@ -1414710,7 +1424122,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עוֹד": { "word": { @@ -1414769,7 +1424182,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "עִידוּד": { "word": { @@ -1414841,7 +1424255,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָעִיז": { "word": { @@ -1415261,7 +1424676,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָעוּט": { "word": { @@ -1415681,7 +1425097,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָווֹן": { "word": { @@ -1415743,12 +1425160,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h5~Y8diW|:" + "plurals_guid": "h5~Y8diW|:", + "mishkal": "katon", + "mishkal_hebrew": "קָטוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲווֹת": { "word": { @@ -1416171,7 +1425591,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַוּוֹת": { "word": { @@ -1416900,7 +1426321,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲוִיל": { "word": { @@ -1416961,12 +1426383,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Nx:Pj`XYK?" + "plurals_guid": "Nx:Pj`XYK?", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָוֶל": { "word": { @@ -1417021,12 +1426446,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h,Hb_s;5L_" + "plurals_guid": "k>Hb_s;5L_", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַטֵּשׁ": { "word": { @@ -1433794,7 +1443307,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִדָן": { "word": { @@ -1433854,7 +1443368,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַיִט": { "word": { @@ -1433929,12 +1443444,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "siW!t-.-az" + "plurals_guid": "siW!t-.-az", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַיֵּן": { "word": { @@ -1434680,7 +1444198,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִיּוּן": { "word": { @@ -1434746,12 +1444265,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ds3K>wrg/+" + "plurals_guid": "ds3K>wrg/+", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַיִן": { "word": { @@ -1434843,12 +1444365,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gZs~-7%Zw~" + "plurals_guid": "gZs~-7%Zw~", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עוֹיֵן": { "word": { @@ -1434908,11 +1444433,12 @@ "nikkud": "עוֹיְנוֹת", "ktiv_male": "עוינות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְעֻיָּן": { "word": { @@ -1434978,12 +1444504,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲיֹן": { "word": { @@ -1435358,7 +1444887,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲיָן": { "word": { @@ -1435424,12 +1444954,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yzS-UDvXY?" + "plurals_guid": "yzS-UDvXY?", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵנָב": { "word": { @@ -1435515,7 +1445048,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָיֵף|Verb": { "word": { @@ -1435894,7 +1445428,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַיֵּף": { "word": { @@ -1436335,7 +1445870,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָיֵפוּת": { "word": { @@ -1436398,7 +1445934,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַיֵּף": { "word": { @@ -1437126,7 +1446663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָיֵף|Adjective": { "word": { @@ -1437206,11 +1446744,12 @@ "nikkud": "עֲיֵפוֹת", "ktiv_male": "עייפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵעִיק": { "word": { @@ -1437263,11 +1446802,12 @@ "nikkud": "מְעִיקוֹת", "ktiv_male": "מעיקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲיָרָה": { "word": { @@ -1437330,12 +1446870,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DhbZ-DMWC." + "plurals_guid": "DhbZ-DMWC.", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִירִיָּה": { "word": { @@ -1437403,7 +1446946,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַיִר": { "word": { @@ -1437485,12 +1447029,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִיר": { "word": { @@ -1437562,7 +1447109,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַיֵּר": { "word": { @@ -1437986,7 +1447534,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵירֹם": { "word": { @@ -1438039,7 +1447588,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִירוֹנִי": { "word": { @@ -1438092,7 +1447642,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַכֵּב": { "word": { @@ -1438541,7 +1448092,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַכֵּב": { "word": { @@ -1439283,7 +1448835,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִכּוּב": { "word": { @@ -1439345,12 +1448898,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F6H3O4F*`p" + "plurals_guid": "F6H3O4F*`p", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲכָּבִישׁ": { "word": { @@ -1439410,7 +1448966,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַכְבָּר": { "word": { @@ -1439496,7 +1449053,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַכֵּל": { "word": { @@ -1439920,7 +1449478,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָכֵל": { "word": { @@ -1440344,7 +1449903,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַכֵּל": { "word": { @@ -1441092,7 +1450652,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִכּוּל": { "word": { @@ -1441171,12 +1450732,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v^sD;{M-<{" + "plurals_guid": "v^sD;{M-<{", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲכִיר": { "word": { @@ -1441599,7 +1451163,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָכֵר": { "word": { @@ -1442022,7 +1451587,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲכֹר": { "word": { @@ -1442445,7 +1452011,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַכְשָׁו": { "word": { @@ -1442504,7 +1452071,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "עַל": { "word": { @@ -1442605,7 +1452173,8 @@ "ktiv_male": "עליהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַל גַּב": { "word": { @@ -1442680,7 +1452249,8 @@ "ktiv_male": "על גבן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַל גַּבֵּי": { "word": { @@ -1442755,7 +1452325,8 @@ "ktiv_male": "על גביהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַל יַד": { "word": { @@ -1442830,7 +1452401,8 @@ "ktiv_male": "על ידן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַל יְדֵי": { "word": { @@ -1442905,7 +1452477,8 @@ "ktiv_male": "על ידיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַל פִּי": { "word": { @@ -1442980,7 +1452553,8 @@ "ktiv_male": "על פיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַל פְּנֵי": { "word": { @@ -1443055,7 +1452629,8 @@ "ktiv_male": "על פניהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַעֲלָאָה": { "word": { @@ -1443108,12 +1452683,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PVGJ_&@iE[" + "plurals_guid": "PVGJ_&@iE[", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶלְבּוֹן": { "word": { @@ -1443204,12 +1452782,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q2:" + "plurals_guid": "j-GDbB?_8>", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַלֵּל": { "word": { @@ -1448935,7 +1458555,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעוֹלֵל": { "word": { @@ -1449668,7 +1459289,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲלִילָה|Noun|libel": { "word": { @@ -1449740,12 +1459362,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u}:G3w]v%3" + "plurals_guid": "u}:G3w]v%3", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲלִילָה|Noun|plot, story": { "word": { @@ -1449817,12 +1459442,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x*?[)C[E}{" + "plurals_guid": "x*?[)C[E}{", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעַלְּלוּת": { "word": { @@ -1449885,12 +1459513,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eTF[ZwOEkR" + "plurals_guid": "eTF[ZwOEkR", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָלוּל": { "word": { @@ -1449979,11 +1459610,12 @@ "nikkud": "עֲלוּלוֹת", "ktiv_male": "עלולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲלִיל": { "word": { @@ -1449998,7 +1459630,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to libel, to insinuate, to falsely accuse (על)", + "meaning": "to libel, to insinuate, to falsely accuse", "meaning_raw": "to libel, to insinuate, to falsely accuse (על)", "audio_url": "https://audio.pealim.com/v0/oe/oejtzruc7sq3.mp3", "audio_file": "להעליל.mp3", @@ -1450413,7 +1460045,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "מַעֲלָלִים": { "word": { @@ -1450476,12 +1460109,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gxDb`4NtQ?" + "plurals_guid": "gxDb`4NtQ?", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּעֲלוּל": { "word": { @@ -1450566,12 +1460202,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J)u.C-FQ>W" + "plurals_guid": "J)u.C-FQ>W", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַלְמָה": { "word": { @@ -1450659,12 +1460298,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K:,#$X#:6+" + "plurals_guid": "I7:N_2>:6+", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַלֵּס": { "word": { @@ -1453512,7 +1463180,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲלֹס": { "word": { @@ -1453934,7 +1463603,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַלְעֵל": { "word": { @@ -1454658,7 +1464328,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַלֵּף": { "word": { @@ -1455107,7 +1464778,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַלֵּף": { "word": { @@ -1455833,7 +1465505,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעַלְּפוּת": { "word": { @@ -1455895,12 +1465568,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gfY&=s+K96" + "plurals_guid": "gfY&=s+K96", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲלֹץ": { "word": { @@ -1456323,7 +1465999,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶלְצוֹן": { "word": { @@ -1456379,12 +1466056,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P3#%>`ekyK" + "plurals_guid": "P3#%>`ekyK", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶלְצָה": { "word": { @@ -1456440,12 +1466120,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GnA$3rq/jE" + "plurals_guid": "GnA$3rq/jE", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַלֵּק": { "word": { @@ -1456460,7 +1466143,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to bother, to cling (to someone) (על) (slang)", + "meaning": "to bother, to cling (to someone) (slang)", "meaning_raw": "to bother, to cling (to someone) (על) (slang)", "audio_url": "https://audio.pealim.com/v0/um/umd5jb0zjzlf.mp3", "audio_file": "להתעלק.mp3", @@ -1456881,7 +1466564,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "עִם": { "word": { @@ -1456978,7 +1466662,8 @@ "ktiv_male": "איתן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲמֹד": { "word": { @@ -1457437,7 +1467122,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲמִיד": { "word": { @@ -1458199,7 +1467885,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָעֳמָד": { "word": { @@ -1458271,12 +1467958,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַמֵּד": { "word": { @@ -1458730,7 +1468420,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִמּוּד": { "word": { @@ -1458796,12 +1468487,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַמּוּד": { "word": { @@ -1458899,12 +1468593,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r;}oZ*|G!q" + "plurals_guid": "r;}oZ*|G!q", + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲמָד": { "word": { @@ -1459002,12 +1468699,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E$7J=c!@>U" + "plurals_guid": "E$7J=c!@>U", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמִידוּת": { "word": { @@ -1459078,7 +1468778,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲמִידָה": { "word": { @@ -1459166,12 +1468867,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D@^51K]V4b" + "plurals_guid": "D@^51K]V4b", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמִיד": { "word": { @@ -1459237,11 +1468941,12 @@ "nikkud": "עֲמִידוֹת", "ktiv_male": "עמידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶמְדָּה": { "word": { @@ -1459329,12 +1469034,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gf/{e$Pwy0" + "plurals_guid": "Gf/{e$Pwy0", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָמֵד": { "word": { @@ -1459793,7 +1469501,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָעֳמָדוּת": { "word": { @@ -1459870,7 +1469579,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַמֵּל": { "word": { @@ -1460318,7 +1470028,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעַמְּלוּת": { "word": { @@ -1460378,12 +1470089,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IsKKj8#zJA" + "plurals_guid": "IsKKj8#zJA", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמֵל": { "word": { @@ -1460452,12 +1470166,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמָל": { "word": { @@ -1460520,12 +1470237,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f{-$IEwe*s" + "plurals_guid": "f{-$IEwe*s", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַמְלָה": { "word": { @@ -1460591,12 +1470311,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I3axuiWd/I" + "plurals_guid": "I3axuiWd/I", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲמֹל": { "word": { @@ -1461023,7 +1470746,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּעֲמוּלָה": { "word": { @@ -1461089,12 +1470813,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bP1tX,Wv4#" + "plurals_guid": "bP1tX,Wv4#", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַם": { "word": { @@ -1461179,12 +1470906,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m]tNkkDIX[" + "plurals_guid": "m]tNkkDIX[", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּעָם": { "word": { @@ -1461540,7 +1471270,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַמֵּם": { "word": { @@ -1462267,7 +1471998,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲמֹם": { "word": { @@ -1462691,7 +1472423,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמוּס": { "word": { @@ -1462748,11 +1472481,12 @@ "nikkud": "עֲמוּסוֹת", "ktiv_male": "עמוסות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹמֶס": { "word": { @@ -1462815,12 +1472549,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mTHOkFA0]K" + "plurals_guid": "mTHOkFA0]K", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲמִיס": { "word": { @@ -1463563,7 +1473300,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲמֹס": { "word": { @@ -1463987,7 +1473725,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַמְעֵם": { "word": { @@ -1464713,7 +1474452,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַמְעֵם": { "word": { @@ -1465152,7 +1474892,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲמֹק": { "word": { @@ -1465604,7 +1475345,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲמִיק": { "word": { @@ -1466349,7 +1476091,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַמֵּק": { "word": { @@ -1466801,7 +1476544,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹמֶק": { "word": { @@ -1466882,12 +1476626,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמֹק": { "word": { @@ -1466972,11 +1476719,12 @@ "nikkud": "עֲמֻקּוֹת", "ktiv_male": "עמוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵמֶק": { "word": { @@ -1467062,12 +1476810,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ESUgDbB&7s" + "plurals_guid": "ESUgDbB&7s", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹמֶר": { "word": { @@ -1467144,12 +1476895,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ME[+Q@cfJ]" + "plurals_guid": "ME[+Q@cfJ]", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַמֵּר": { "word": { @@ -1467571,7 +1477325,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַמֵּת": { "word": { @@ -1467998,7 +1477753,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲמֻתָּה": { "word": { @@ -1468064,12 +1477820,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k>BGfrxnZx" + "plurals_guid": "k>BGfrxnZx", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִמּוּת": { "word": { @@ -1468135,12 +1477894,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yD`Mt$RBxt" + "plurals_guid": "yD`Mt$RBxt", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַמֵּת": { "word": { @@ -1468583,7 +1478345,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעֻמַּת": { "word": { @@ -1468695,7 +1478458,8 @@ "ktiv_male": "לעומתן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲמָת": { "word": { @@ -1468761,12 +1478525,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G;<_yJNYni" + "plurals_guid": "G;<_yJNYni", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָמִית": { "word": { @@ -1468832,12 +1478599,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e/.adu6*,=)" + "plurals_guid": "t>adu6*,=)", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲסִיסִי": { "word": { @@ -1479796,7 +1489644,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַסֵּק": { "word": { @@ -1479811,7 +1489660,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to occupy oneself, to be involved with, to fiddle with (ב-)", + "meaning": "to occupy oneself, to be involved with, to fiddle with", "meaning_raw": "to occupy oneself, to be involved with, to fiddle with (ב-)", "audio_url": "https://audio.pealim.com/v0/7i/7i0n3evla1a9.mp3", "audio_file": "להתעסק.mp3", @@ -1480251,7 +1490100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "לְהַעֲסִיק": { "word": { @@ -1481014,7 +1490864,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִסְקָה": { "word": { @@ -1481098,12 +1490949,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "q*/O33{pN$" + "plurals_guid": "q*/O33{pN$", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִסְקִי": { "word": { @@ -1481169,7 +1491023,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּעֲסוּקָה": { "word": { @@ -1481253,12 +1491108,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D/sEKWM`l+" + "plurals_guid": "D/sEKWM`l+", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲסֹק": { "word": { @@ -1481273,7 +1491131,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to deal (with something), to work at (ב-)", + "meaning": "to deal (with something), to work at", "meaning_raw": "to deal (with something), to work at (ב-)", "audio_url": "https://audio.pealim.com/v0/ld/ldqizeos5kou.mp3", "audio_file": "לעסוק.mp3", @@ -1481713,7 +1491571,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "עִסּוּק": { "word": { @@ -1481797,12 +1491656,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i;9Z^eXf3n" + "plurals_guid": "i;9Z^eXf3n", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָסוּק": { "word": { @@ -1481890,11 +1491752,12 @@ "nikkud": "עֲסוּקוֹת", "ktiv_male": "עסוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵסֶק": { "word": { @@ -1481988,12 +1491851,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b{s#VGU$a/" + "plurals_guid": "b{s#VGU$a/", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַעְפָּלָה": { "word": { @@ -1482054,12 +1491920,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P(Bp3k@hBD" + "plurals_guid": "P(Bp3k@hBD", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעְפִּיל": { "word": { @@ -1482507,7 +1492376,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַפְעֵף": { "word": { @@ -1483233,7 +1493103,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַפְעַַף": { "word": { @@ -1483295,7 +1493166,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲפִיפוֹן": { "word": { @@ -1483359,7 +1493231,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲפִיצוּת": { "word": { @@ -1483419,7 +1493292,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָפִיץ": { "word": { @@ -1483474,11 +1493348,12 @@ "nikkud": "עֲפִיצוֹת", "ktiv_male": "עפיצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִפָּרוֹן": { "word": { @@ -1483560,12 +1493435,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N7O%%O3IQ" + "plurals_guid": "c34VK>O3IQ", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַצֵּב": { "word": { @@ -1485992,7 +1495888,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֻצְבָּה": { "word": { @@ -1486063,12 +1495960,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ulmJYP__1w" + "plurals_guid": "ulmJYP__1w", + "mishkal": "kutla", + "mishkal_hebrew": "קֻטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַצֵּב": { "word": { @@ -1486516,7 +1496416,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְעַצֵּב": { "word": { @@ -1486587,12 +1496488,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rEk+X8&N1g" + "plurals_guid": "rEk+X8&N1g", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְבָּנוּת": { "word": { @@ -1486657,7 +1496561,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַצְבֵּב": { "word": { @@ -1487381,7 +1497286,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַצְבֵּן": { "word": { @@ -1487830,7 +1497736,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַצְבֵּן": { "word": { @@ -1488582,7 +1498489,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵץ": { "word": { @@ -1488672,7 +1498580,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַצֵּל": { "word": { @@ -1489097,7 +1499006,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצֵל": { "word": { @@ -1489155,11 +1499065,12 @@ "nikkud": "עֲצֵלוֹת", "ktiv_male": "עצלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְלָן|Adjective": { "word": { @@ -1489229,11 +1499140,12 @@ "nikkud": "עַצְלָנִיּוֹת", "ktiv_male": "עצלניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְלָן|Noun": { "word": { @@ -1489309,12 +1499221,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nRvRK:u]/e" + "plurals_guid": "nRvRK:u]/e", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְלוּת": { "word": { @@ -1489372,12 +1499287,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H;SW>Wx:AA" + "plurals_guid": "H;SW>Wx:AA", + "mishkal": "katlut", + "mishkal_hebrew": "קַטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעַצְּמוּת": { "word": { @@ -1489453,12 +1499371,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y@45@*447Q" + "plurals_guid": "y@45@*447Q", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲצָמָה": { "word": { @@ -1489534,12 +1499455,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vhPtt5a9C}" + "plurals_guid": "vhPtt5a9C}", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְמָאוּת": { "word": { @@ -1489641,7 +1499565,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲצֹם": { "word": { @@ -1490104,7 +1500029,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַצֵּם": { "word": { @@ -1490567,7 +1500493,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצְמָה": { "word": { @@ -1490653,12 +1500580,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ccb*GOWv3?" + "plurals_guid": "ccb*GOWv3?", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶצֶם|Noun|bone": { "word": { @@ -1490746,12 +1500676,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Lz%-af$fg3" + "plurals_guid": "Lz%-af$fg3", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶצֶם|Noun|essence, substance, gist; object; -self (in pronominal forms)": { "word": { @@ -1490849,12 +1500782,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OFMi)vD%uU" + "plurals_guid": "OFMi)vD%uU", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲצוּמָה": { "word": { @@ -1490956,12 +1500892,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iNg@_!fl_d" + "plurals_guid": "iNg@_!fl_d", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְמִי": { "word": { @@ -1491061,7 +1501000,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצוּם|Adjective|tremendous, enormous; great, excellent, wonderful (coll.)": { "word": { @@ -1491115,18 +1501055,7 @@ ], "confusables_guid": "GC]53sF,52", "examples": { - "vetted": [ - { - "text": "\" שָׁאֲלָה אַלִיס, שֶׁתָּמִיד גִּלְּתָה עִנְיָן עָצוּם בְּסוּגְיוֹת שֶׁל אֲכִילָה וּשְׁתִיָּה", - "source": "alice_wonderland", - "match_method": "direct" - }, - { - "text": "לְפֶתַע־פִּתְאֹם גָּבְרָה הָרוּחַ וְגַל עָצוּם עָלָה עַל הַסִּירָה וַהֲפָכָהּ עַל פִּיהָ", - "source": "gulliver", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": null, @@ -1491148,11 +1501077,12 @@ "nikkud": "עֲצוּמוֹת", "ktiv_male": "עצומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצוּם|Adjective|shut, closed (eyes)": { "word": { @@ -1491239,11 +1501169,12 @@ "nikkud": "עֲצוּמוֹת", "ktiv_male": "עצומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצְמָתִי": { "word": { @@ -1491317,7 +1501248,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַצְמָאִי": { "word": { @@ -1491391,7 +1501323,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָצֵם": { "word": { @@ -1491844,7 +1501777,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִצּוּם": { "word": { @@ -1491920,12 +1501854,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m41QlpHF0/" + "plurals_guid": "m41QlpHF0/", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲצִים": { "word": { @@ -1492681,7 +1502618,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצִיץ": { "word": { @@ -1492756,12 +1502694,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L`6Rc[zr@4" + "plurals_guid": "L`6Rc[zr@4", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲצִירוּת": { "word": { @@ -1492833,7 +1502774,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲצֹר": { "word": { @@ -1493287,7 +1503229,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצִיר": { "word": { @@ -1493348,11 +1503291,12 @@ "nikkud": "עֲצִירוֹת", "ktiv_male": "עצירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲצָר": { "word": { @@ -1493435,12 +1503379,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ttQI6;ooYf" + "plurals_guid": "ttQI6;ooYf", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶצֶר": { "word": { @@ -1493507,12 +1503454,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j9c@#_ouoU" + "plurals_guid": "j9c@#_ouoU", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָצֵר": { "word": { @@ -1493966,7 +1503916,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲצֶרֶת": { "word": { @@ -1494033,12 +1503984,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OqZ|g~4dkj" + "plurals_guid": "OqZ|g~4dkj", + "mishkal": "ktelet", + "mishkal_hebrew": "קְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָצוּר": { "word": { @@ -1494115,11 +1504069,12 @@ "nikkud": "עֲצוּרוֹת", "ktiv_male": "עצורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָקֹב": { "word": { @@ -1494178,11 +1504133,12 @@ "nikkud": "עֲקֻבּוֹת", "ktiv_male": "עקובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָקֵב|Noun|footprint, trace": { "word": { @@ -1494260,12 +1504216,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E*`e<_t|XS" + "plurals_guid": "E*`e<_t|XS", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָקֵב|Noun|heel": { "word": { @@ -1494343,12 +1504302,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LNh/LV6yLT" + "plurals_guid": "LNh/LV6yLT", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵקֶב": { "word": { @@ -1494395,7 +1504357,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "מַעֲקָב": { "word": { @@ -1494460,12 +1504423,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FheT)uj^t-" + "plurals_guid": "FheT)uj^t-", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲקֹב": { "word": { @@ -1494917,7 +1504883,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲקֹד": { "word": { @@ -1495337,7 +1505304,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲקֶה": { "word": { @@ -1495417,12 +1505385,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P*C~,,K}F3" + "plurals_guid": "P*C~,,K}F3", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקּוּל|Noun|seizure, confiscation, foreclosure": { "word": { @@ -1495488,12 +1505459,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HjilJ$|LPH" + "plurals_guid": "HjilJ$|LPH", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַקֵּל": { "word": { @@ -1495917,7 +1505891,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַקֵּל": { "word": { @@ -1496644,7 +1506619,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקּוּל|Noun|bend, curve": { "word": { @@ -1496710,12 +1506686,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xpf,ub;]#R" + "plurals_guid": "xpf,ub;]#R", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַקֵּם": { "word": { @@ -1497456,7 +1507435,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַקֵּם": { "word": { @@ -1497899,7 +1507879,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲקִיפָה": { "word": { @@ -1497961,12 +1507942,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eAM.EUuZvl" + "plurals_guid": "eAM.EUuZvl", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָקֵף": { "word": { @@ -1498389,7 +1508373,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲקֹף": { "word": { @@ -1498838,7 +1508823,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲקֹץ": { "word": { @@ -1499261,7 +1509247,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָקֵץ": { "word": { @@ -1499710,7 +1509697,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲקִיצָה": { "word": { @@ -1499772,12 +1509760,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b|Lx@=$TIe" + "plurals_guid": "b|Lx@=$TIe", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקְצוּץ": { "word": { @@ -1499839,12 +1509830,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Gz>!?vcWRs" + "plurals_guid": "Gz>!?vcWRs", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַקְצֵץ": { "word": { @@ -1500267,7 +1510261,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶקְרוֹנִי": { "word": { @@ -1500336,7 +1510331,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקָּרוֹן": { "word": { @@ -1500428,12 +1510424,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lB!]TZMDT8" + "plurals_guid": "lB!]TZMDT8", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקָרִי": { "word": { @@ -1500502,7 +1510501,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲקִירָה": { "word": { @@ -1500589,12 +1510589,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JrsmH4<;tX" + "plurals_guid": "JrsmH4<;tX", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָקָר": { "word": { @@ -1500659,11 +1510662,12 @@ "nikkud": "עֲקָרוֹת", "ktiv_male": "עקרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲקָרוּת": { "word": { @@ -1500733,7 +1510737,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָקֵר": { "word": { @@ -1501165,7 +1511170,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַקֵּר": { "word": { @@ -1501900,7 +1511906,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקָר": { "word": { @@ -1501976,7 +1511983,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲקֹר": { "word": { @@ -1502424,7 +1512432,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָקוּר|Noun": { "word": { @@ -1502498,12 +1512507,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d(yrd7B[%A" + "plurals_guid": "d(yrd7B[%A", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָקוּר|Adjective": { "word": { @@ -1502571,11 +1512583,12 @@ "nikkud": "עֲקוּרוֹת", "ktiv_male": "עקורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַקְרָב": { "word": { @@ -1502630,7 +1512643,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַקְרַבּוּת": { "word": { @@ -1502690,7 +1512704,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעַקְּשׁוּת": { "word": { @@ -1502753,12 +1512768,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JEq4W6R=]`" + "plurals_guid": "JEq4W6R=]`", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַקֵּשׁ": { "word": { @@ -1503208,7 +1513226,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִקֵּשׁ": { "word": { @@ -1503265,11 +1513284,12 @@ "nikkud": "עִקְּשׁוֹת", "ktiv_male": "עיקשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַקְשָׁן": { "word": { @@ -1503326,11 +1513346,12 @@ "nikkud": "עַקְשָׁנִיּוֹת", "ktiv_male": "עקשניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעָרְבוּת|Noun|bet": { "word": { @@ -1503408,12 +1513429,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E9^vbJ4wm$" + "plurals_guid": "E9^vbJ4wm$", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְעָרְבוּת|Noun|interfering, interference; intervention": { "word": { @@ -1503491,12 +1513515,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y`br%;AlP[" + "plurals_guid": "y`br%;AlP[", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲרֻבָּה": { "word": { @@ -1503592,12 +1513619,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲרֹב": { "word": { @@ -1504033,7 +1514063,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַרְבוּת": { "word": { @@ -1504108,12 +1514139,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w89$z}" + "plurals_guid": "Gv#dws>$z}", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲרוֹךְ": { "word": { @@ -1512924,12 +1523019,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LRFWKNQ>-)" + "plurals_guid": "LRFWKNQ>-)", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲרִיכָה": { "word": { @@ -1513019,12 +1523117,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wxjg(7/_^O" + "plurals_guid": "wxjg(7/_^O", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָרֵךְ": { "word": { @@ -1513480,7 +1523581,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֶרְכָּה": { "word": { @@ -1513554,12 +1523656,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e|H-{n.`F/" + "plurals_guid": "e|H-{n.`F/", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּעֲרוּכָה": { "word": { @@ -1513633,12 +1523738,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y#;^zmm6b+" + "plurals_guid": "y#;^zmm6b+", + "mishkal": "taktula", + "mishkal_hebrew": "תַּקְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲרִיךְ": { "word": { @@ -1513712,12 +1523820,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "h^5K#K$CGg" + "plurals_guid": "h^5K#K$CGg", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַעֲרִיכִי": { "word": { @@ -1513789,7 +1523900,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָרְלָה": { "word": { @@ -1513848,12 +1523960,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gj]qRCVh!m" + "plurals_guid": "Gj]qRCVh!m", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲרֵמָה": { "word": { @@ -1513946,12 +1524061,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yf$pn4SIw)" + "plurals_guid": "yf$pn4SIw)", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲרֹם": { "word": { @@ -1514379,7 +1524497,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָרֵם": { "word": { @@ -1514807,7 +1524926,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲרִים": { "word": { @@ -1515554,7 +1525674,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָרֹם": { "word": { @@ -1515618,11 +1525739,12 @@ "nikkud": "עֲרֻמּוֹת", "ktiv_male": "ערומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָרְמָה": { "word": { @@ -1515683,12 +1525805,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C/U$ppd6{P" + "plurals_guid": "C/U$ppd6{P", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָרוּם": { "word": { @@ -1515752,11 +1525877,12 @@ "nikkud": "עֲרוּמוֹת", "ktiv_male": "ערומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲרִימָה": { "word": { @@ -1515823,12 +1525949,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "z5]-jqKHhT" + "plurals_guid": "z5]-jqKHhT", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַרְמוּמִי": { "word": { @@ -1515881,7 +1526010,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַרְמוֹן": { "word": { @@ -1515941,7 +1526071,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲרִיסָה": { "word": { @@ -1516000,12 +1526131,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E(;_CrB,BU" + "plurals_guid": "E(;_CrB,BU", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַרְסָל": { "word": { @@ -1516081,7 +1526215,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַרְסֵל": { "word": { @@ -1516805,7 +1526940,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַרְעֵר": { "word": { @@ -1517532,7 +1527668,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְעַרְעֵר": { "word": { @@ -1517956,7 +1528093,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִרְעוּר": { "word": { @@ -1518019,12 +1528157,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ygxicc_(08" + "plurals_guid": "ygxicc_(08", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲרֹף": { "word": { @@ -1518462,7 +1528603,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֹרֶף": { "word": { @@ -1518539,12 +1528681,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gL9vGcvXq;" + "plurals_guid": "gL9vGcvXq;", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְעַרְפֵּל": { "word": { @@ -1519270,7 +1529415,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֲרָפֶל": { "word": { @@ -1519358,7 +1529504,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲרִיץ": { "word": { @@ -1520112,7 +1530259,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עָרִיץ": { "word": { @@ -1520176,12 +1530324,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hgbJ-6OXc/" + "plurals_guid": "hgbJ-6OXc/", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַעֲרָצָה": { "word": { @@ -1520239,12 +1530390,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bt-aG" + "plurals_guid": "o4KeW#>-aG", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לַעֲתֹר": { "word": { @@ -1531765,7 +1542012,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵעָתֵר": { "word": { @@ -1532191,7 +1542439,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲתִיר|Verb|to pray, to implore (archaic)": { "word": { @@ -1532620,7 +1542869,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַעֲתִיר|Verb|to give in abundance, to present something (את) to someone (על) (lit.)": { "word": { @@ -1532635,7 +1542885,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to give in abundance, to present something (את) to someone (על) (lit.)", + "meaning": "to give in abundance, to present something to someone (lit.)", "meaning_raw": "to give in abundance, to present something (את) to someone (על) (lit.)", "audio_url": "https://audio.pealim.com/v0/18/18nd2x8kupaz9.mp3", "audio_file": "5782-lehaatir.mp3", @@ -1533049,7 +1543299,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את על" }, "עֲתִירָה": { "word": { @@ -1533114,12 +1543365,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B[w/|@T!28" + "plurals_guid": "B[w/|@T!28", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִתּוֹנוּת": { "word": { @@ -1533205,7 +1543459,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִתּוֹנַאי": { "word": { @@ -1533291,7 +1543546,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִתּוֹן": { "word": { @@ -1533387,7 +1543643,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עֵת": { "word": { @@ -1533473,12 +1543730,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ya(!elWN]D" + "plurals_guid": "ya(!elWN]D", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עִתּוֹנָאוּת": { "word": { @@ -1533542,7 +1543802,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "עַתָּה": { "word": { @@ -1533611,7 +1543872,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "פֵּאָה": { "word": { @@ -1533697,7 +1543959,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפָאֵר": { "word": { @@ -1534441,7 +1544704,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפָּאֵר": { "word": { @@ -1534882,7 +1545146,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּפְאֶרֶת": { "word": { @@ -1534940,12 +1545205,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "M~p#A5Ap>s" + "plurals_guid": "M~p#A5Ap>s", + "mishkal": "tiktelet", + "mishkal_hebrew": "תִּקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּאֵר": { "word": { @@ -1535003,12 +1545271,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zq(a*v0M|h" + "plurals_guid": "zq(a*v0M|h", + "mishkal": "ktel", + "mishkal_hebrew": "קְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפֹאָר": { "word": { @@ -1535082,11 +1545353,12 @@ "nikkud": "מְפֹאָרוֹת", "ktiv_male": "מפוארות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּארְק": { "word": { @@ -1535146,7 +1545418,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפֻבְּרָק": { "word": { @@ -1535202,11 +1545475,12 @@ "nikkud": "מְפֻבְּרָקוֹת", "ktiv_male": "מפוברקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַבְּרֵק": { "word": { @@ -1535932,7 +1546206,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּגָז": { "word": { @@ -1536019,12 +1546294,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "[E:i`x=ny" + "plurals_guid": "[E:i`x=ny", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְגִּיז": { "word": { @@ -1536765,7 +1547043,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּגּוּל": { "word": { @@ -1536824,12 +1547103,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b0[AO71*]." + "plurals_guid": "b0[AO71*].", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּגִימָה": { "word": { @@ -1536894,12 +1547176,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u$u1EF?lI8" + "plurals_guid": "u$u1EF?lI8", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּגוּם": { "word": { @@ -1536958,11 +1547243,12 @@ "nikkud": "פְּגוּמוֹת", "ktiv_male": "פגומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּגֵם": { "word": { @@ -1537388,7 +1547674,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּגּוּם": { "word": { @@ -1537453,12 +1547740,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yK;&w8ln9Z" + "plurals_guid": "yK;&w8ln9Z", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּגָם": { "word": { @@ -1537523,12 +1547813,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "my,S~.{<6I" + "plurals_guid": "my,S~.{<6I", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְגֹּם": { "word": { @@ -1537954,7 +1548247,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְגָּנָה": { "word": { @@ -1538031,12 +1548325,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ix$sCx)dC+" + "plurals_guid": "Ix$sCx)dC+", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְגִּין": { "word": { @@ -1538782,7 +1549079,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּגּוּעַ": { "word": { @@ -1538847,12 +1549145,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NK=I~~#MCa" + "plurals_guid": "NK=I~~#MCa", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּגִיעָה": { "word": { @@ -1538933,12 +1549234,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QD&KCQ&[;l" + "plurals_guid": "QD&KCQ&[;l", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּגִיעַ": { "word": { @@ -1538997,11 +1549301,12 @@ "nikkud": "פְּגִיעוֹת", "ktiv_male": "פגיעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּגֵעַ": { "word": { @@ -1539484,7 +1549789,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְגֹּעַ": { "word": { @@ -1539499,7 +1549805,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to strike, to harm (ב־); to insult, to hurt (emotionally)", + "meaning": "to strike, to harm ; to insult, to hurt (emotionally)", "meaning_raw": "to strike, to harm (ב־); to insult, to hurt (emotionally)", "audio_url": "https://audio.pealim.com/v0/in/intfn12aasgl.mp3", "audio_file": "לפגוע.mp3", @@ -1539936,7 +1550242,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "לְהַפְגִּיעַ": { "word": { @@ -1540362,7 +1550669,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְגֹּר": { "word": { @@ -1540788,7 +1551096,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּגּוּר": { "word": { @@ -1540853,12 +1551162,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kUl1xEl2&P" + "plurals_guid": "kUl1xEl2&P", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּגֶר": { "word": { @@ -1540923,12 +1551235,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Jc]sfbYwo:" + "plurals_guid": "Jc]sfbYwo:", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפַגֵּר": { "word": { @@ -1540993,12 +1551308,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p5R+l78Ic~" + "plurals_guid": "p5R+l78Ic~", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַגֵּר": { "word": { @@ -1541727,7 +1552045,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּגֵּר": { "word": { @@ -1542153,7 +1552472,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְגֹּשׁ": { "word": { @@ -1542605,7 +1552925,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּגֵשׁ": { "word": { @@ -1543057,7 +1553378,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּגִישָׁה": { "word": { @@ -1543138,12 +1553460,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K>)*Yyy]M3" + "plurals_guid": "K>)*Yyy]M3", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּגוֹשׁ": { "word": { @@ -1543208,12 +1553533,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k+bpPwDoj." + "plurals_guid": "k+bpPwDoj.", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְגָּשׁ": { "word": { @@ -1543294,12 +1553622,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C=^s@EikHE" + "plurals_guid": "C=^s@EikHE", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְגִּישׁ": { "word": { @@ -1544054,7 +1554385,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַדֵּחַ": { "word": { @@ -1544490,7 +1554822,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּדָּיוֹן": { "word": { @@ -1544554,12 +1554887,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GNri~$`S,8" + "plurals_guid": "GNri~$`S,8", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּדוּי": { "word": { @@ -1544617,11 +1554953,12 @@ "nikkud": "פְּדוּיוֹת", "ktiv_male": "פדויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּדוֹת": { "word": { @@ -1545046,7 +1555383,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְדּוֹת": { "word": { @@ -1545487,7 +1555825,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּדוּת": { "word": { @@ -1545551,12 +1555890,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NtiZa(jJLq" + "plurals_guid": "NtiZa(jJLq", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַדֵּר": { "word": { @@ -1546281,7 +1556623,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּדֵּר": { "word": { @@ -1546703,7 +1557046,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּה": { "word": { @@ -1546785,7 +1557129,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֹּה": { "word": { @@ -1546840,7 +1557185,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְפַהֵק": { "word": { @@ -1547288,7 +1557634,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּהוּק": { "word": { @@ -1547375,12 +1557722,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hkQxago&{+" + "plurals_guid": "hkQxago&{+", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָפוּג": { "word": { @@ -1547805,7 +1558155,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָפִיג": { "word": { @@ -1548533,7 +1558884,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפּוֹגֵג": { "word": { @@ -1548979,7 +1559331,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲפוּגָה": { "word": { @@ -1549048,7 +1559401,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּפוּגָה": { "word": { @@ -1549112,12 +1559466,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nSlf_iwHEM" + "plurals_guid": "nSlf_iwHEM", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָפִיחַ": { "word": { @@ -1549856,7 +1560213,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוֹל": { "word": { @@ -1549942,7 +1560300,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוֹלִיטִיקָה": { "word": { @@ -1550012,7 +1560371,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֻּמְבִּי": { "word": { @@ -1550068,7 +1560428,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֻּמְבֵּי": { "word": { @@ -1550122,7 +1560483,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֻּמְבִּיּוּת": { "word": { @@ -1550176,7 +1560538,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוּנְדָּק": { "word": { @@ -1550236,7 +1560599,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוּנְדְּקָאוּת": { "word": { @@ -1550296,7 +1560660,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוּנְדְּקַאי": { "word": { @@ -1550356,7 +1560721,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוּנְדְּקָאִית": { "word": { @@ -1550416,7 +1560782,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נְפִיצוּת|Noun|prevalence": { "word": { @@ -1550490,7 +1560857,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָפִיץ": { "word": { @@ -1551220,7 +1561588,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נָפוֹץ": { "word": { @@ -1551280,11 +1561649,12 @@ "nikkud": "נְפוֹצוֹת", "ktiv_male": "נפוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲפָצָה": { "word": { @@ -1551350,12 +1561720,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "z1ApfoW,Ui" + "plurals_guid": "z1ApfoW,Ui", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפֵּץ": { "word": { @@ -1551782,7 +1562155,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפּוֹץ": { "word": { @@ -1552209,7 +1562583,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָפוּץ": { "word": { @@ -1552636,7 +1563011,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָפִיק": { "word": { @@ -1553373,7 +1563749,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּפוּקָה": { "word": { @@ -1553434,12 +1563811,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tK}cVRq=18" + "plurals_guid": "tK}cVRq=18", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפוֹרֵר": { "word": { @@ -1554162,7 +1564542,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוּר": { "word": { @@ -1554222,7 +1564603,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּז": { "word": { @@ -1554287,7 +1564669,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּזִיזוּת": { "word": { @@ -1554348,7 +1564731,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּזִיז": { "word": { @@ -1554404,11 +1564788,12 @@ "nikkud": "פְּזִיזוֹת", "ktiv_male": "פזיזות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַזֵּז": { "word": { @@ -1554847,7 +1565232,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְזֹל": { "word": { @@ -1555295,7 +1565681,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּזִילָה": { "word": { @@ -1555356,12 +1565743,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "sCZFw}?Z-G" + "plurals_guid": "sCZFw}?Z-G", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּזְמוֹן": { "word": { @@ -1555422,12 +1565812,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ii*v8k@rbG" + "plurals_guid": "Ii*v8k@rbG", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַזֵּם": { "word": { @@ -1556152,7 +1566545,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּזֵּר": { "word": { @@ -1556602,7 +1566996,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּזוּר": { "word": { @@ -1556659,11 +1567054,12 @@ "nikkud": "פְּזוּרוֹת", "ktiv_male": "פזורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּזּוּר": { "word": { @@ -1556726,12 +1567122,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ofdf&dQP$9" + "plurals_guid": "Ofdf&dQP$9", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַזֵּר": { "word": { @@ -1557484,7 +1567883,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְחֹד": { "word": { @@ -1557935,7 +1568335,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַחֵד": { "word": { @@ -1558386,7 +1568787,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּחַד": { "word": { @@ -1558476,12 +1568878,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ha_1>*&zhI" + "plurals_guid": "Ha_1>*&zhI", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּחְדָן": { "word": { @@ -1558555,11 +1568960,12 @@ "nikkud": "פַּחְדָנִיּוֹת", "ktiv_male": "פחדניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְחִיד": { "word": { @@ -1559313,7 +1569719,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְחֹז": { "word": { @@ -1559733,7 +1570140,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּח": { "word": { @@ -1559810,12 +1570218,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gBW`q-A!LK" + "plurals_guid": "gBW`q-A!LK", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּחוֹן": { "word": { @@ -1559881,7 +1570292,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַחֵם": { "word": { @@ -1560606,7 +1571018,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּחֵם": { "word": { @@ -1561028,7 +1571441,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּחְמֵימָה": { "word": { @@ -1561088,7 +1571502,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְחֹס": { "word": { @@ -1561508,7 +1571923,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּחִיתוּת": { "word": { @@ -1561573,7 +1571989,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְחֹת": { "word": { @@ -1562021,7 +1572438,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּחוֹת": { "word": { @@ -1562036,7 +1572454,7 @@ ], "pos": "Adverb", "pos_hebrew": "תֹּאַר הַפֹּעַל", - "meaning": "less, less than (מ־); minus", + "meaning": "less, less than ; minus", "meaning_raw": "less, less than (מ־); minus", "audio_url": "https://audio.pealim.com/v0/1h/1huqkysxmzbmx.mp3", "audio_file": "פחות.mp3", @@ -1562090,7 +1572508,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": "מ־" }, "לְהַפְחִית": { "word": { @@ -1562819,7 +1573238,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּחוּת": { "word": { @@ -1562884,12 +1573304,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mh.g`0rl_p" + "plurals_guid": "mh.g`0rl_p", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְחָתָה": { "word": { @@ -1562954,12 +1573377,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Op[iJ|uD}q" + "plurals_guid": "Op[iJ|uD}q", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּטֵּם": { "word": { @@ -1563382,7 +1573808,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּטְמָה": { "word": { @@ -1563444,12 +1573871,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "pA=eVTQ(rZ" + "plurals_guid": "pA=eVTQ(rZ", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַטֵּם": { "word": { @@ -1564175,7 +1574605,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַטְפֵּט": { "word": { @@ -1564901,7 +1575332,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּטְפּוּט": { "word": { @@ -1564963,12 +1575395,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y3}2(+L2:%" + "plurals_guid": "y3}2(+L2:%", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּטוּר": { "word": { @@ -1564983,7 +1575418,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "exempt (מ־)", + "meaning": "exempt", "meaning_raw": "exempt (מ־)", "audio_url": "https://audio.pealim.com/v0/1h/1huihjmqyvch8.mp3", "audio_file": "4303-patur.mp3", @@ -1565034,11 +1575469,12 @@ "nikkud": "פְּטוּרוֹת", "ktiv_male": "פטורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מ־" }, "פְּטוֹר": { "word": { @@ -1565053,7 +1575489,7 @@ ], "pos": "Noun", "pos_hebrew": "שֵׁם עֶצֶם", - "meaning": "exemption (מ־)", + "meaning": "exemption", "meaning_raw": "exemption (מ־)", "audio_url": "https://audio.pealim.com/v0/fc/fcl86xh91408.mp3", "audio_file": "4304-ptor.mp3", @@ -1565104,12 +1575540,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oG-y^?Vkmx" + "plurals_guid": "oG-y^?Vkmx", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "מ־" }, "לְהִפָּטֵר": { "word": { @@ -1565565,7 +1576004,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַטֵּר": { "word": { @@ -1566314,7 +1576754,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּטּוּרִים": { "word": { @@ -1566377,12 +1576818,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q7cEMZa}TP" + "plurals_guid": "q7cEMZa}TP", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפַּטְּרוּת": { "word": { @@ -1566451,12 +1576895,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "}c5OF`PP@" + "plurals_guid": "}c5OF`PP@", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּטֵּר": { "word": { @@ -1566886,7 +1577333,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְטֹר": { "word": { @@ -1567316,7 +1577764,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְטִיר": { "word": { @@ -1568049,7 +1578498,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּטִירָה": { "word": { @@ -1568118,12 +1578568,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bL{r.~T,((" + "plurals_guid": "bL{r.~T,((", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּטְרוֹזִילְיָה": { "word": { @@ -1568177,7 +1578630,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּטְרִיָּה": { "word": { @@ -1568253,7 +1578707,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּטִּישׁ": { "word": { @@ -1568338,12 +1578793,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JPX-8ki=Py" + "plurals_guid": "JPX-8ki=Py", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַיֵּחַ": { "word": { @@ -1569066,7 +1579524,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּיט": { "word": { @@ -1569112,7 +1579571,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּיל": { "word": { @@ -1569198,7 +1579658,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִילוֹסוֹפְיָה": { "word": { @@ -1569252,7 +1579713,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּינִגְּוִין": { "word": { @@ -1569306,7 +1579768,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּיֵּס": { "word": { @@ -1569730,7 +1580193,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַיֵּס": { "word": { @@ -1570473,7 +1580937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפַּיְּסוּת": { "word": { @@ -1570530,12 +1580995,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "v2xd=R2^I@" + "plurals_guid": "v2xd=R2^I@", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּיּוּס": { "word": { @@ -1570598,12 +1581066,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b)6WGO8GPZ" + "plurals_guid": "b)6WGO8GPZ", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲפָקָה": { "word": { @@ -1570664,12 +1581135,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ld)]V.>zm<" + "plurals_guid": "Ld)]V.>zm<", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵפִיק": { "word": { @@ -1570730,12 +1581204,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Bb,VNO;/VZ" + "plurals_guid": "Bb,VNO;/VZ", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּכֵּחַ": { "word": { @@ -1571157,7 +1581634,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּכֵּחַ": { "word": { @@ -1571212,11 +1581690,12 @@ "nikkud": "פִּכְּחוֹת", "ktiv_male": "פיכחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַכּוֹת": { "word": { @@ -1571636,7 +1582115,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְכֹּר": { "word": { @@ -1572056,7 +1582536,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּלֵּא": { "word": { @@ -1572538,7 +1583019,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּלֵא": { "word": { @@ -1572989,7 +1583471,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִפְלָא": { "word": { @@ -1573073,11 +1583556,12 @@ "nikkud": "נִפְלָאוֹת", "ktiv_male": "נפלאות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּלֶא": { "word": { @@ -1573157,12 +1583641,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t*Yv#VQVi-" + "plurals_guid": "t*Yv#VQVi-", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְלִיא": { "word": { @@ -1573911,7 +1584398,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָלָאפֶל": { "word": { @@ -1573965,7 +1584453,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּלְגָנוּת": { "word": { @@ -1574040,7 +1584529,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּלּוּג": { "word": { @@ -1574110,12 +1584600,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Doa3-O@mzm" + "plurals_guid": "Doa3-O@mzm", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפַּלְּגוּת": { "word": { @@ -1574185,12 +1584678,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qZoGitjhgq" + "plurals_guid": "qZoGitjhgq", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּלֵּג": { "word": { @@ -1574621,7 +1585117,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּלֻגָּה": { "word": { @@ -1574717,12 +1585214,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KtR+9/}B?P" + "plurals_guid": "KtR+9/}B?P", + "mishkal": "ktulla", + "mishkal_hebrew": "קְטֻלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְלָגָה": { "word": { @@ -1574808,12 +1585308,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G?rj=$,1KB" + "plurals_guid": "G?rj=$,1KB", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּלְגָן": { "word": { @@ -1574877,11 +1585380,12 @@ "nikkud": "פַּלְגָנִיּוֹת", "ktiv_male": "פלגניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּלֶג": { "word": { @@ -1574954,12 +1585458,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַלֵּג": { "word": { @@ -1575693,7 +1586200,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְלִיג": { "word": { @@ -1576453,7 +1586961,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּלֵג": { "word": { @@ -1576884,7 +1587393,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּלָג": { "word": { @@ -1576941,7 +1587451,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּלָדָה": { "word": { @@ -1577000,12 +1587511,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o0)t{!^MJB" + "plurals_guid": "o0)t{!^MJB", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּלַח": { "word": { @@ -1577068,12 +1587582,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M+stP!HTwm" + "plurals_guid": "M+stP!HTwm", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֻּלְחָן": { "word": { @@ -1577136,7 +1587653,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַלֵּחַ": { "word": { @@ -1577560,7 +1588078,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְלֹחַ": { "word": { @@ -1577984,7 +1588503,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּלִיט": { "word": { @@ -1578064,12 +1588584,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qVx2+wg(3O" + "plurals_guid": "qVx2+wg(3O", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּלֵט": { "word": { @@ -1578520,7 +1589043,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְלֹט": { "word": { @@ -1578966,7 +1589490,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְלִיט": { "word": { @@ -1579391,7 +1589916,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּלֶט": { "word": { @@ -1579455,12 +1589981,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oDi}n(/]qR" + "plurals_guid": "oDi}n(/]qR", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַפְלָיָה": { "word": { @@ -1579523,12 +1590052,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DD5Xo&-SIe" + "plurals_guid": "DD5Xo&-SIe", + "mishkal": "aktala", + "mishkal_hebrew": "אַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְלָיָה": { "word": { @@ -1579585,12 +1590117,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J9hL#I#DTv" + "plurals_guid": "J9hL#I#DTv", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְלוֹת": { "word": { @@ -1580014,7 +1590549,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְלוֹת": { "word": { @@ -1580741,7 +1591277,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּלֶךְ": { "word": { @@ -1580800,12 +1591337,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ll2ybm%N5[" + "plurals_guid": "ll2ybm%N5[", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּפִלָּה": { "word": { @@ -1580890,12 +1591430,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Jk4l*&{WJh" + "plurals_guid": "Jk4l*&{WJh", + "mishkal": "tkilla", + "mishkal_hebrew": "תְּקִלָּה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּלֵּל": { "word": { @@ -1581346,7 +1591889,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּלִילִי": { "word": { @@ -1581404,11 +1591948,12 @@ "nikkud": "פְּלִילִיּוֹת", "ktiv_male": "פליליות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְלִיל": { "word": { @@ -1582136,7 +1592681,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַלֵּל": { "word": { @@ -1582880,7 +1593426,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְלָס": { "word": { @@ -1582941,12 +1593488,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s+ruOUo[G{" + "plurals_guid": "s+ruOUo[G{", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַלֵּס": { "word": { @@ -1583697,7 +1594247,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּלַסְטֶלִינָה": { "word": { @@ -1583746,7 +1594297,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּלְסֵף": { "word": { @@ -1584167,7 +1594719,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּלְפֵּל|Noun|🌶️ pepper": { "word": { @@ -1584248,7 +1594801,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַלְפֵּל": { "word": { @@ -1584975,7 +1595529,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּלְפֵּל": { "word": { @@ -1585399,7 +1595954,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּלְפֵּל|Noun|pepper": { "word": { @@ -1585483,12 +1596039,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LNyT%]S4[_K" + "plurals_guid": "qr<2Ow>[_K", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּפְנִית": { "word": { @@ -1593012,12 +1603616,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e7PjSp6C^A" + "plurals_guid": "e7PjSp6C^A", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְנֶה": { "word": { @@ -1593115,12 +1603722,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M#tAFLf!P1" + "plurals_guid": "M#tAFLf!P1", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּנִים": { "word": { @@ -1593196,7 +1603806,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּנִים|Noun|interior, inside": { "word": { @@ -1593277,12 +1603888,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d,2~2->0tw" + "plurals_guid": "d,2~2->0tw", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּנִימִי": { "word": { @@ -1593339,11 +1603953,12 @@ "nikkud": "פְּנִימִיּוֹת", "ktiv_male": "פנימיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְנִים": { "word": { @@ -1594086,7 +1604701,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּנִימָה": { "word": { @@ -1594153,7 +1604769,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "פְּנִינָה": { "word": { @@ -1594238,7 +1604855,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּנָס": { "word": { @@ -1594324,7 +1604942,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּנּוּק": { "word": { @@ -1594386,12 +1605005,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "of{}WP3:?#" + "plurals_guid": "of{}WP3:?#", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּנֵּק": { "word": { @@ -1594830,7 +1605452,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַנֵּק": { "word": { @@ -1595556,7 +1606179,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּנְקָס": { "word": { @@ -1595632,7 +1606256,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּסְגָּה": { "word": { @@ -1595691,12 +1606316,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Bw5DQZi45P" + "plurals_guid": "Bw5DQZi45P", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶפְסֵד": { "word": { @@ -1595758,12 +1606386,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "go2)`CjDB2" + "plurals_guid": "go2)`CjDB2", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִפְסָד": { "word": { @@ -1595819,11 +1606450,12 @@ "nikkud": "נִפְסָדוֹת", "ktiv_male": "נפסדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְסִיד": { "word": { @@ -1596565,7 +1607197,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְסֹחַ": { "word": { @@ -1596580,7 +1607213,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to skip, to pass over (על)", + "meaning": "to skip, to pass over", "meaning_raw": "to skip, to pass over (על)", "audio_url": "https://audio.pealim.com/v0/1n/1nznejpu57a4.mp3", "audio_file": "לפסוח.mp3", @@ -1597004,7 +1607637,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "פֶּסַח": { "word": { @@ -1597057,12 +1607691,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FVj,2u&1yG" + "plurals_guid": "FVj,2u&1yG", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּסֵחַ": { "word": { @@ -1597077,7 +1607714,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be skipped, passed over (על)", + "meaning": "to be skipped, passed over", "meaning_raw": "to be skipped, passed over (על)", "audio_url": "https://audio.pealim.com/v0/pv/pvc6fs6dpnbk.mp3", "audio_file": "להיפסח.mp3", @@ -1597485,7 +1608122,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "פַּסְטָה": { "word": { @@ -1597539,7 +1608177,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפֻסְטָר": { "word": { @@ -1597595,11 +1608234,12 @@ "nikkud": "מְפֻסְטָרוֹת", "ktiv_male": "מפוסטרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַסְטֵר": { "word": { @@ -1598325,7 +1608965,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסִיכוֹלוֹגְיָה": { "word": { @@ -1598379,7 +1609020,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּסִימִי": { "word": { @@ -1598432,7 +1609074,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּסִימִיּוּת": { "word": { @@ -1598486,7 +1609129,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסֵיפָס": { "word": { @@ -1598541,7 +1609185,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּסּוּל": { "word": { @@ -1598609,12 +1609254,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ha]&Dpu^h]" + "plurals_guid": "Ha]&Dpu^h]", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּסֶל": { "word": { @@ -1598694,12 +1609342,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסֹלֶת": { "word": { @@ -1598761,12 +1609412,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hT4?-,VbUy" + "plurals_guid": "hT4?-,VbUy", + "mishkal": "ktolet", + "mishkal_hebrew": "קְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַפְסֶלֶת": { "word": { @@ -1598834,12 +1609488,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hClo<&:nU0" + "plurals_guid": "hClo<&:nU0", + "mishkal": "maktelet", + "mishkal_hebrew": "מַקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּסָּל": { "word": { @@ -1598910,12 +1609567,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LSS=y`lXjV" + "plurals_guid": "LSS=y`lXjV", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּסוּל": { "word": { @@ -1598977,11 +1609637,12 @@ "nikkud": "פְּסוּלוֹת", "ktiv_male": "פסולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַסֵּל": { "word": { @@ -1599713,7 +1610374,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּסֵל": { "word": { @@ -1600158,7 +1610820,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְסֹל": { "word": { @@ -1600587,7 +1611250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסַנְתֵּר": { "word": { @@ -1600647,7 +1611311,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּס|Noun": { "word": { @@ -1600711,12 +1611376,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mV/O&Thvt0" + "plurals_guid": "mV/O&Thvt0", + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּס|Verb": { "word": { @@ -1600813,7 +1611481,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְסֹעַ": { "word": { @@ -1601261,7 +1611930,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסִיעָה": { "word": { @@ -1601322,12 +1611992,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r`v]FjE[Du" + "plurals_guid": "r`v]FjE[Du", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִסְפוּס": { "word": { @@ -1601390,12 +1612063,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yO*v6#y)X6" + "plurals_guid": "yO*v6#y)X6", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַסְפֵס": { "word": { @@ -1602143,7 +1612819,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַסְפֵס": { "word": { @@ -1602567,7 +1613244,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְסָקָה": { "word": { @@ -1602638,12 +1613316,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c&~6wc`?vi" + "plurals_guid": "c&~6wc`?vi", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶפְסֵק": { "word": { @@ -1602730,12 +1613411,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "AZk]W&72U!" + "plurals_guid": "AZk]W&72U!", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסִיק": { "word": { @@ -1602806,12 +1613490,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Btg;v6A(o#" + "plurals_guid": "Btg;v6A(o#", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּסָק": { "word": { @@ -1602904,12 +1613591,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּסֶק": { "word": { @@ -1602999,12 +1613689,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hysaI*5`-b" + "plurals_guid": "hysaI*5`-b", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַפְסֵק": { "word": { @@ -1603075,12 +1613768,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yn_3g;PVKV" + "plurals_guid": "yn_3g;PVKV", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַפְסִיק": { "word": { @@ -1603161,11 +1613857,12 @@ "nikkud": "מַפְסִיקוֹת", "ktiv_male": "מפסיקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּסוּק": { "word": { @@ -1603257,12 +1613954,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bf?;RrP4Pq" + "plurals_guid": "bf?;RrP4Pq", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּסֵק": { "word": { @@ -1603694,7 +1614394,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְסִיק": { "word": { @@ -1604455,7 +1615156,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְסֹק": { "word": { @@ -1604913,7 +1615615,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּסְקָה": { "word": { @@ -1604984,12 +1615687,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "baq5u.t^ni" + "plurals_guid": "baq5u.t^ni", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּעוֹט": { "word": { @@ -1605048,12 +1615754,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NYo[jGc{%r" + "plurals_guid": "NYo[jGc{%r", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְעוֹת": { "word": { @@ -1605473,7 +1616182,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפַּעֲלוּת": { "word": { @@ -1605544,12 +1616254,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Rip99JzjkV" + "plurals_guid": "Rip99JzjkV", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּעִילוּת": { "word": { @@ -1605625,7 +1616338,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְעֹל": { "word": { @@ -1606083,7 +1616797,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֹּעַל": { "word": { @@ -1606171,12 +1616886,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t_VA4w-!g_" + "plurals_guid": "L6}p>w-!g_", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַצּוֹת": { "word": { @@ -1615787,7 +1626556,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּצּוּל": { "word": { @@ -1615849,12 +1626619,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l6+i{6tlrC" + "plurals_guid": "l6+i{6tlrC", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַצֵּל": { "word": { @@ -1616601,7 +1627374,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּצֵּל": { "word": { @@ -1617045,7 +1627819,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְצֹעַ": { "word": { @@ -1617487,7 +1628262,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּצוּעַ": { "word": { @@ -1617572,11 +1628348,12 @@ "nikkud": "פְּצוּעוֹת", "ktiv_male": "פצועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּצַע": { "word": { @@ -1617657,12 +1628434,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q)8a|xclz<" + "plurals_guid": "q)8a|xclz<", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּצֵעַ": { "word": { @@ -1618109,7 +1628889,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְצִיעַ": { "word": { @@ -1618838,7 +1629619,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּצִיעָה": { "word": { @@ -1618924,12 +1629706,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "lB73A#.[7v" + "plurals_guid": "lB73A#.[7v", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּצְפֵּץ": { "word": { @@ -1619352,7 +1630137,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַצְפֵּץ": { "word": { @@ -1620078,7 +1630864,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּצּוּץ": { "word": { @@ -1620142,12 +1630929,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "A(+QtlB+m{" + "plurals_guid": "A(+QtlB+m{", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפוֹצֵץ": { "word": { @@ -1620891,7 +1631681,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּצָצָה": { "word": { @@ -1620976,12 +1631767,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "6xE#*74Gc" + "plurals_guid": "6xE#*74Gc", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְצִיץ": { "word": { @@ -1621709,7 +1632503,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפּוֹצֵץ": { "word": { @@ -1622160,7 +1632955,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְצֹר": { "word": { @@ -1622582,7 +1633378,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְצִיר": { "word": { @@ -1623328,7 +1634125,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּקִידוּת": { "word": { @@ -1623403,7 +1634201,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְקֹד": { "word": { @@ -1623860,7 +1634659,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּקֻדָּה": { "word": { @@ -1623956,12 +1634756,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wY2>,Ku,Ku)N" + "plurals_guid": "A!xn&(h>)N", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּקֵד": { "word": { @@ -1624558,7 +1635367,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַקֵּד": { "word": { @@ -1625318,7 +1636128,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְקִיד": { "word": { @@ -1626078,7 +1636889,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּקֵּד": { "word": { @@ -1626509,7 +1637321,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּקִיד": { "word": { @@ -1626595,12 +1637408,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F6.VM2>p&R" + "plurals_guid": "F6.VM2>p&R", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְקָד": { "word": { @@ -1626686,12 +1637502,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ar-zUp.MG8" + "plurals_guid": "Ar-zUp.MG8", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָקוּלְטָה": { "word": { @@ -1626751,7 +1637570,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּקּוּחַ": { "word": { @@ -1626818,12 +1637638,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gP$.=.`6J_" + "plurals_guid": "gP$.=.`6J_", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְקֹחַ": { "word": { @@ -1627277,7 +1638100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַקֵּחַ": { "word": { @@ -1628024,7 +1638848,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּקֵּחַ": { "word": { @@ -1628452,7 +1639277,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּקוּחַ": { "word": { @@ -1628513,11 +1639339,12 @@ "nikkud": "פְּקוּחוֹת", "ktiv_male": "פקוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּקֵּחַ": { "word": { @@ -1628578,11 +1639405,12 @@ "nikkud": "פִּקְּחוֹת", "ktiv_male": "פיקחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּקֵחַ": { "word": { @@ -1629026,7 +1639854,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפַקֵּחַ": { "word": { @@ -1629093,12 +1639922,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B+H|!" + "plurals_guid": "p8IxJy(~~>", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַקְפֵּק": { "word": { @@ -1631964,7 +1642804,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּקְפּוּק": { "word": { @@ -1632026,12 +1642867,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LUxaPOjOn+" + "plurals_guid": "LUxaPOjOn+", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּקָּה": { "word": { @@ -1632093,12 +1642937,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MYmQRzH<%N" + "plurals_guid": "MYmQRzH<%N", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּקֶּקֶת": { "word": { @@ -1632154,12 +1643001,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QwiXmJ70xv" + "plurals_guid": "QwiXmJ70xv", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּקָק": { "word": { @@ -1632221,12 +1643071,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DMY5t%Gd{C" + "plurals_guid": "DMY5t%Gd{C", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְקִיר": { "word": { @@ -1632975,7 +1643828,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַקְשֵׁשׁ": { "word": { @@ -1633396,7 +1644250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּר": { "word": { @@ -1633472,7 +1644327,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרֶא": { "word": { @@ -1633533,12 +1644389,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p*}04OD5Ji" + "plurals_guid": "p*}04OD5Ji", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּרְאִי": { "word": { @@ -1633597,7 +1644456,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרָג": { "word": { @@ -1633672,12 +1644532,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q?44R4b#tx" + "plurals_guid": "Q?44R4b#tx", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרְגּוֹלָה": { "word": { @@ -1633732,7 +1644595,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַרְגֵּן": { "word": { @@ -1634456,7 +1645320,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרוּד": { "word": { @@ -1634518,11 +1645383,12 @@ "nikkud": "פְּרוּדוֹת", "ktiv_male": "פרודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֵּרוּד": { "word": { @@ -1634590,12 +1645456,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fn@Ss&Xp^)" + "plurals_guid": "fn@Ss&Xp^)", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵד": { "word": { @@ -1635050,7 +1645919,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרֵדָה": { "word": { @@ -1635134,12 +1646004,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "d>QF6Ma#q)" + "plurals_guid": "d>QF6Ma#q)", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְרָדָה": { "word": { @@ -1635217,12 +1646090,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cXTp[%68t]" + "plurals_guid": "cXTp[%68t]", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְרִיד": { "word": { @@ -1635980,7 +1646856,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִפָּרְדוּת": { "word": { @@ -1636048,12 +1646925,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vAHz]WhKpk" + "plurals_guid": "vAHz]WhKpk", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִפְרָד": { "word": { @@ -1636115,11 +1646995,12 @@ "nikkud": "נִפְרָדוֹת", "ktiv_male": "נפרדות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרֶד": { "word": { @@ -1636213,12 +1647094,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DL|}acu#p6" + "plurals_guid": "DL|}acu#p6", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְדֵּס": { "word": { @@ -1636273,7 +1647157,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרָה": { "word": { @@ -1636354,7 +1647239,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְוָה": { "word": { @@ -1636430,7 +1647316,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְוָר": { "word": { @@ -1636490,7 +1647377,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְוָתִי": { "word": { @@ -1636550,7 +1647438,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרוֹזְדּוֹר": { "word": { @@ -1636610,7 +1647499,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרוֹטֶקְצְיָה": { "word": { @@ -1636665,7 +1647555,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרוֹיֶקְט": { "word": { @@ -1636725,7 +1647616,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֵּרוּק|Noun|dismantling, disassembly": { "word": { @@ -1636780,12 +1647672,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bGgp(DF-Px" + "plurals_guid": "bGgp(DF-Px", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפָרֵז": { "word": { @@ -1637510,7 +1648405,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְרִיז": { "word": { @@ -1638235,7 +1649131,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּרְזוּל": { "word": { @@ -1638295,12 +1649192,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u-%f74yIj@" + "plurals_guid": "u-%f74yIj@", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹחַ": { "word": { @@ -1638751,7 +1649651,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרַח": { "word": { @@ -1638841,12 +1649742,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ApUmA7X`P=" + "plurals_guid": "ApUmA7X`P=", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִיחָה": { "word": { @@ -1638926,12 +1649830,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t,7.bzzpbP" + "plurals_guid": "t,7.bzzpbP", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְרִיחַ": { "word": { @@ -1639675,7 +1650582,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶפְרוֹחַ": { "word": { @@ -1639755,7 +1650663,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּפְרִיט": { "word": { @@ -1639826,12 +1650735,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O,:OLA(qSM" + "plurals_guid": "O,:OLA(qSM", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִיט": { "word": { @@ -1639902,12 +1650814,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Dp!^Om*Wlm" + "plurals_guid": "Dp!^Om*Wlm", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֵּרוּט": { "word": { @@ -1639978,12 +1650893,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Mzki)H,:la" + "plurals_guid": "L}gm1u>:la", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְרִיךְ": { "word": { @@ -1645443,7 +1656393,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַרְכֵּס": { "word": { @@ -1646169,7 +1657120,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּרְכֵּס": { "word": { @@ -1646592,7 +1657544,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרֶם": { "word": { @@ -1646654,12 +1657607,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i&bUkm&;ww" + "plurals_guid": "i&bUkm&;ww", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵם": { "word": { @@ -1647082,7 +1658038,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹם": { "word": { @@ -1647097,7 +1658054,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to unravel (sewing, knitting), to unknit (את)", + "meaning": "to unravel (sewing, knitting), to unknit", "meaning_raw": "to unravel (sewing, knitting), to unknit (את)", "audio_url": "https://audio.pealim.com/v0/7c/7c0705s8ocaa.mp3", "audio_file": "לפרום.mp3", @@ -1647505,7 +1658462,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "את" }, "לְפַרְמֵט": { "word": { @@ -1648229,7 +1659187,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְנָסָה": { "word": { @@ -1648309,12 +1659268,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C76t/`pmTs" + "plurals_guid": "C76t/`pmTs", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְנָס": { "word": { @@ -1648378,12 +1659340,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qDbTC1so9" + "plurals_guid": "qTOjE>1so9", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵס": { "word": { @@ -1651017,7 +1661992,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִיסָה": { "word": { @@ -1651084,12 +1662060,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E6*KI9%N+o" + "plurals_guid": "E6*KI9%N+o", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרוּסָה": { "word": { @@ -1651182,12 +1662161,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jQfO#B1s[&" + "plurals_guid": "jQfO#B1s[&", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרוּס": { "word": { @@ -1651248,11 +1662230,12 @@ "nikkud": "פְּרוּסוֹת", "ktiv_male": "פרוסות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּרְסֵם": { "word": { @@ -1651678,7 +1662661,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַרְסֵם": { "word": { @@ -1652454,7 +1663438,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּרְסוּם": { "word": { @@ -1652519,12 +1663504,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OlJm?Mrhf2" + "plurals_guid": "OlJm?Mrhf2", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּרְסֹמֶת": { "word": { @@ -1652589,12 +1663577,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vZe/Bxge6c" + "plurals_guid": "vZe/Bxge6c", + "mishkal": "kittolet", + "mishkal_hebrew": "קִטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפֻרְסָם": { "word": { @@ -1652674,11 +1663665,12 @@ "nikkud": "מְפֻרְסָמוֹת", "ktiv_male": "מפורסמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפָּרְעוּת": { "word": { @@ -1652746,12 +1663738,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "py6c2)X)p@" + "plurals_guid": "py6c2)X)p@", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפָּרֵעַ": { "word": { @@ -1653180,7 +1664175,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרוּעַ": { "word": { @@ -1653242,11 +1664238,12 @@ "nikkud": "פְּרוּעוֹת", "ktiv_male": "פרועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְרָעָה": { "word": { @@ -1653314,12 +1664311,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E:W,fgWNy+" + "plurals_guid": "E:W,fgWNy+", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְרִיעַ": { "word": { @@ -1654077,7 +1665077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹעַ": { "word": { @@ -1654527,7 +1665528,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵעַ": { "word": { @@ -1654956,7 +1665958,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרָעוֹת": { "word": { @@ -1655044,12 +1666047,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FftueD|Y;K" + "plurals_guid": "FftueD|Y;K", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוֹרֵעַ": { "word": { @@ -1655133,12 +1666139,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M**%g[^Et3" + "plurals_guid": "M**%g[^Et3", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְעוֹשׁ": { "word": { @@ -1655198,7 +1666207,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹף": { "word": { @@ -1655618,7 +1666628,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּרְפֵּר": { "word": { @@ -1656042,7 +1667053,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַרְפֵּר": { "word": { @@ -1656769,7 +1667781,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְפָּר": { "word": { @@ -1656853,12 +1667866,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G3QJ0pku~w" + "plurals_guid": "G3QJ0pku~w", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹץ": { "word": { @@ -1657312,7 +1668328,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְרָץ": { "word": { @@ -1657379,12 +1668396,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LjfYWtuxoE" + "plurals_guid": "LjfYWtuxoE", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִיצָה": { "word": { @@ -1657467,12 +1668487,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KMF7)$K@h6" + "plurals_guid": "KMF7)$K@h6", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרֶץ": { "word": { @@ -1657565,12 +1668588,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gdXvjfgUvl" + "plurals_guid": "gdXvjfgUvl", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפָּרְצוּת": { "word": { @@ -1657637,12 +1668663,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QCex*ZeXr2" + "plurals_guid": "QCex*ZeXr2", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵץ": { "word": { @@ -1658086,7 +1669115,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפָּרֵץ": { "word": { @@ -1658530,7 +1669560,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרוּץ": { "word": { @@ -1658591,11 +1669622,12 @@ "nikkud": "פְּרוּצוֹת", "ktiv_male": "פרוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְצוּף": { "word": { @@ -1658671,7 +1669703,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפָרֵק": { "word": { @@ -1659428,7 +1670461,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפָּרֵק": { "word": { @@ -1659856,7 +1670890,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרֶק": { "word": { @@ -1659949,12 +1670984,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ECaGf8/yks" + "plurals_guid": "ECaGf8/yks", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְרָק": { "word": { @@ -1660021,12 +1671059,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q/%LPY[u|A" + "plurals_guid": "q/%LPY[u|A", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹק": { "word": { @@ -1660454,7 +1671495,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵק": { "word": { @@ -1660882,7 +1671924,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִיקָה": { "word": { @@ -1660949,12 +1671992,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K?+].|C_V[" + "plurals_guid": "K?+].|C_V[", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרִיק": { "word": { @@ -1661015,11 +1672061,12 @@ "nikkud": "פְּרִיקוֹת", "ktiv_male": "פריקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַרְקֵד": { "word": { @@ -1661743,7 +1672790,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרַקְלִיט": { "word": { @@ -1661803,7 +1672851,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרַקְלִיטוּת": { "word": { @@ -1661863,7 +1672912,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפּוֹרֵר": { "word": { @@ -1662315,7 +1673365,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפּוֹרְרוּת": { "word": { @@ -1662380,12 +1673431,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fpP#JT}RgM" + "plurals_guid": "fpP#JT}RgM", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְפוֹרָר": { "word": { @@ -1662444,11 +1673498,12 @@ "nikkud": "מְפוֹרָרוֹת", "ktiv_male": "מפוררות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲפָרָה": { "word": { @@ -1662513,12 +1673568,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vYK7FDxjC9" + "plurals_guid": "vYK7FDxjC9", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָפֵר": { "word": { @@ -1663273,7 +1674331,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֵּרוּר": { "word": { @@ -1663354,12 +1674413,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "olNc#,Mgp4" + "plurals_guid": "olNc#,Mgp4", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִישׁוּת": { "word": { @@ -1663438,7 +1674500,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֵּרוּשׁ": { "word": { @@ -1663538,12 +1674601,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I>e9)S]Nn&" + "plurals_guid": "I>e9)S]Nn&", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפָרֵשׁ": { "word": { @@ -1664302,7 +1675368,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרָשׁ": { "word": { @@ -1664388,12 +1675455,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶפְרֵשׁ": { "word": { @@ -1664467,12 +1675537,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G@WA;+E.Ub" + "plurals_guid": "G@WA;+E.Ub", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִפְרָשׂ": { "word": { @@ -1664550,12 +1675623,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p>D5RzN|U;" + "plurals_guid": "p>D5RzN|U;", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרוּשׁ": { "word": { @@ -1664639,11 +1675715,12 @@ "nikkud": "פְּרוּשׁוֹת", "ktiv_male": "פרושות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְשָׁנוּת": { "word": { @@ -1664722,7 +1675799,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְרָשָׁה": { "word": { @@ -1664796,12 +1675874,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "dS3C4QH47S" + "plurals_guid": "dS3C4QH47S", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּרִישָׁה": { "word": { @@ -1664875,12 +1675956,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bNV5(yleSz" + "plurals_guid": "bNV5(yleSz", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּרָשָׁה": { "word": { @@ -1664954,12 +1676038,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "AZ2`zwx,?+" + "plurals_guid": "AZ2`zwx,?+", + "mishkal": "kattala", + "mishkal_hebrew": "קַטָּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּרֶשׁ": { "word": { @@ -1665030,12 +1676117,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tWGk2[bDIu" + "plurals_guid": "tWGk2[bDIu", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְרִישׁ": { "word": { @@ -1665773,7 +1676863,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּרֵשׂ": { "word": { @@ -1666222,7 +1677313,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפָּרֵשׁ": { "word": { @@ -1666657,7 +1677749,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹשׁ": { "word": { @@ -1667109,7 +1678202,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְרֹשׂ": { "word": { @@ -1667554,7 +1678648,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּרְשָׁן": { "word": { @@ -1667628,12 +1678723,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e2`;AKMYfe" + "plurals_guid": "e2`;AKMYfe", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַרְשֵׁן": { "word": { @@ -1668054,7 +1679152,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּשׁוּט": { "word": { @@ -1668142,11 +1679241,12 @@ "nikkud": "פְּשׁוּטוֹת", "ktiv_male": "פשוטות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְשָׁטָה": { "word": { @@ -1668214,12 +1679314,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "HF?ipJ^=aO" + "plurals_guid": "HF?ipJ^=aO", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפַּשְּׁטוּת": { "word": { @@ -1668287,12 +1679390,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zP{&A3-XC&" + "plurals_guid": "zP{&A3-XC&", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְשֹׁט": { "word": { @@ -1668737,7 +1679843,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּשִׁיטָה": { "word": { @@ -1668805,12 +1679912,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GFAUq!RQ{W" + "plurals_guid": "GFAUq!RQ{W", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַשֵּׁט": { "word": { @@ -1669542,7 +1680652,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְשִׁיט": { "word": { @@ -1670274,7 +1681385,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּשֵׁט": { "word": { @@ -1670703,7 +1681815,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּשֵּׁט": { "word": { @@ -1671132,7 +1682245,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְשׂוֹת": { "word": { @@ -1671552,7 +1682666,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַשֵּׁל": { "word": { @@ -1671975,7 +1683090,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְשִׁיל": { "word": { @@ -1672701,7 +1683817,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַשֵּׁל": { "word": { @@ -1673124,7 +1684241,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְשֹׁעַ": { "word": { @@ -1673547,7 +1684665,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּשַׁע": { "word": { @@ -1673609,12 +1684728,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "O7m^S7SLlx" + "plurals_guid": "O7m^S7SLlx", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּשִׁיעָה": { "word": { @@ -1673676,12 +1684798,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I{^VWPvK2N" + "plurals_guid": "I{^VWPvK2N", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַשְׁפֵּשׁ": { "word": { @@ -1674407,7 +1685532,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּשְׁפֵּשׁ": { "word": { @@ -1674469,12 +1685595,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o%.|}<4A`5" + "plurals_guid": "o%.|}<4A`5", + "mishkal": "kittel", + "mishkal_hebrew": "קִטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַשֵּׂק": { "word": { @@ -1675200,7 +1686329,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּשּׂוּק": { "word": { @@ -1675262,12 +1686392,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DVmqH`O3bL" + "plurals_guid": "DVmqH`O3bL", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְשֹׁק": { "word": { @@ -1675690,7 +1686823,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְשֹׂק": { "word": { @@ -1676116,7 +1687250,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּשֵּׁר": { "word": { @@ -1676542,7 +1687677,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּשָׁרָה": { "word": { @@ -1676607,12 +1687743,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mq(euuj1{x" + "plurals_guid": "mq(euuj1{x", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פּוֹשֵׁר": { "word": { @@ -1676687,11 +1687826,12 @@ "nikkud": "פּוֹשְׁרוֹת", "ktiv_male": "פושרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַשֵּׁר": { "word": { @@ -1677420,7 +1688560,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְשִׁיר": { "word": { @@ -1678149,7 +1689290,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֵּשֶׁר": { "word": { @@ -1678230,12 +1689372,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v;oQW#j4wk" + "plurals_guid": "v;oQW#j4wk", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּשְׁתָּה": { "word": { @@ -1678295,7 +1689440,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּשְׁתָּן": { "word": { @@ -1678349,7 +1689495,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתְאוֹם": { "word": { @@ -1678408,7 +1689555,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "פִּתְאוֹמִי": { "word": { @@ -1678477,7 +1689625,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתְגָּם": { "word": { @@ -1678548,7 +1689697,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְפַּתְּחוּת": { "word": { @@ -1678617,12 +1689767,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OA8Plnp.^j" + "plurals_guid": "OA8Plnp.^j", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתּוּחַ": { "word": { @@ -1678691,12 +1689844,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v7cAxO@TBj" + "plurals_guid": "v7cAxO@TBj", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַתֵּחַ": { "word": { @@ -1679455,7 +1690611,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּתֵּחַ": { "word": { @@ -1679901,7 +1691058,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּתַח": { "word": { @@ -1679996,12 +1691154,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rD6QXMzg}O" + "plurals_guid": "rD6QXMzg}O", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּתִיחָה": { "word": { @@ -1680086,12 +1691247,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Mr3QXGD_a7" + "plurals_guid": "Mr3QXGD_a7", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַפְתֵּחַ": { "word": { @@ -1680176,12 +1691340,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tkKBkm$6Pr" + "plurals_guid": "tkKBkm$6Pr", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פָּתוּחַ": { "word": { @@ -1680270,11 +1691437,12 @@ "nikkud": "פְּתוּחוֹת", "ktiv_male": "פתוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּתֵחַ": { "word": { @@ -1680730,7 +1691898,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְתֹּחַ": { "word": { @@ -1681186,7 +1692355,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתּוּי": { "word": { @@ -1681266,12 +1692436,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m@yeo,.DVK" + "plurals_guid": "m@yeo,.DVK", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּתְיָן": { "word": { @@ -1681329,11 +1692502,12 @@ "nikkud": "פַּתְיָנִיּוֹת", "ktiv_male": "פתייניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַתּוֹת": { "word": { @@ -1682082,7 +1693256,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּתּוֹת": { "word": { @@ -1682507,7 +1693682,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתָּיוֹן": { "word": { @@ -1682571,12 +1693747,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "As9.e0rtSO" + "plurals_guid": "As9.e0rtSO", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְפַּתֵּל": { "word": { @@ -1683026,7 +1694205,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתּוּל": { "word": { @@ -1683105,12 +1694285,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J[T~h;@z0w" + "plurals_guid": "J[T~h;@z0w", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פְּתִיל": { "word": { @@ -1683173,12 +1694356,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Fw(EfmHN52" + "plurals_guid": "Fw(EfmHN52", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְפַתֵּל": { "word": { @@ -1683926,7 +1695112,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַפְתָּעָה": { "word": { @@ -1684009,12 +1695196,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G!gur@3/C/" + "plurals_guid": "G!gur@3/C/", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַפְתִּיעַ": { "word": { @@ -1684766,7 +1695956,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּתַע": { "word": { @@ -1684828,12 +1696019,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DYbQ9Z?m|M" + "plurals_guid": "DYbQ9Z?m|M", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתְקִית": { "word": { @@ -1684899,7 +1696093,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פֶּתֶק": { "word": { @@ -1684981,12 +1696176,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BEPO@f,2w5" + "plurals_guid": "BEPO@f,2w5", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִפְתֹּר": { "word": { @@ -1685435,7 +1696633,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִפָּתֵר": { "word": { @@ -1685858,7 +1697057,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתְרוֹן": { "word": { @@ -1685946,12 +1697146,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zs~,WSirdn" + "plurals_guid": "zs~,WSirdn", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פִּתָּה": { "word": { @@ -1686028,12 +1697231,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Fpka+^&kGM" + "plurals_guid": "Fpka+^&kGM", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "פַּת": { "word": { @@ -1686115,12 +1697321,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fnAGl}!u?6" + "plurals_guid": "fnAGl}!u?6", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֹאן": { "word": { @@ -1686169,7 +1697378,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֶאֱצָא": { "word": { @@ -1686234,7 +1697444,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָבָא": { "word": { @@ -1686321,12 +1697532,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f64@<&(j+u" + "plurals_guid": "f64@<&(j+u", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְבִּיא": { "word": { @@ -1687067,7 +1698281,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְבָאִי": { "word": { @@ -1687146,7 +1698361,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָב": { "word": { @@ -1687231,12 +1698447,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cSgC>|/=Z9T" + "plurals_guid": "j8>>|/=Z9T", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְבֹּר": { "word": { @@ -1691633,7 +1702886,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצָּבֵר": { "word": { @@ -1692060,7 +1703314,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַבֵּר": { "word": { @@ -1692487,7 +1703742,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִבּוּר": { "word": { @@ -1692569,12 +1703825,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F2pf3%RL+M" + "plurals_guid": "F2pf3%RL+M", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצְבֵּר": { "word": { @@ -1692640,12 +1703899,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n.im+r@hiq" + "plurals_guid": "n.im+r@hiq", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִבּוּרִי": { "word": { @@ -1692709,7 +1703971,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצֻבְרָח": { "word": { @@ -1692763,11 +1704026,12 @@ "nikkud": "מְצֻבְרָחוֹת", "ktiv_male": "מצוברחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְבָת": { "word": { @@ -1692826,12 +1704090,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NxHP>io6qJ" + "plurals_guid": "NxHP>io6qJ", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַד": { "word": { @@ -1692919,12 +1704186,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l_H7v7upDA" + "plurals_guid": "l_H7v7upDA", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצוֹדֵד": { "word": { @@ -1693666,7 +1704936,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַדֵּד": { "word": { @@ -1694392,7 +1705663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצְדָּעָה": { "word": { @@ -1694453,12 +1705725,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fD,ZYAMG;`" + "plurals_guid": "fD,ZYAMG;`", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְדִּיעַ": { "word": { @@ -1695204,7 +1706479,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֶדֶף": { "word": { @@ -1695279,12 +1706555,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CqO0p,4%^?" + "plurals_guid": "CqO0p,4%^?", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַדֵּק": { "word": { @@ -1695714,7 +1706993,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְדֹּק": { "word": { @@ -1696170,7 +1707450,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְדָקָה": { "word": { @@ -1696239,12 +1707520,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i+m{F:v)57" + "plurals_guid": "i+m{F:v)57", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצְדָּקָה": { "word": { @@ -1696313,12 +1707597,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J^KVnWCTbT" + "plurals_guid": "J^KVnWCTbT", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֶדֶק": { "word": { @@ -1696402,12 +1707689,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e8^.h`4*3Y" + "plurals_guid": "e8^.h`4*3Y", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַדִּיק|Adjective": { "word": { @@ -1696473,11 +1707763,12 @@ "nikkud": "צַדִּיקוֹת", "ktiv_male": "צדיקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַדִּיק|Noun": { "word": { @@ -1696558,12 +1707849,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g$wC`|969e" + "plurals_guid": "g$wC`|969e", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַדֵּק": { "word": { @@ -1696993,7 +1708287,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְדִּיק": { "word": { @@ -1697742,7 +1709037,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻצְדָּק": { "word": { @@ -1697805,11 +1709101,12 @@ "nikkud": "מֻצְדָּקוֹת", "ktiv_male": "מוצדקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְהַבְהַב": { "word": { @@ -1697866,11 +1709163,12 @@ "nikkud": "צְהַבְהַבּוֹת", "ktiv_male": "צהבהבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָהֹב": { "word": { @@ -1697943,11 +1709241,12 @@ "nikkud": "צְהֻבּוֹת", "ktiv_male": "צהובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַהֶבֶת": { "word": { @@ -1698010,12 +1709309,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iyvFjZ`%m[" + "plurals_guid": "iyvFjZ`%m[", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְהִיב": { "word": { @@ -1698742,7 +1710044,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְהֹל": { "word": { @@ -1699188,7 +1710491,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצְהָרָה": { "word": { @@ -1699251,12 +1710555,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w{|^Q_ENIW" + "plurals_guid": "w{|^Q_ENIW", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְהִיר": { "word": { @@ -1699271,7 +1710578,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to declare, to announce (ב-)", + "meaning": "to declare, to announce", "meaning_raw": "to declare, to announce (ב-)", "audio_url": "https://audio.pealim.com/v0/t1/t1sb6v54oymb.mp3", "audio_file": "להצהיר.mp3", @@ -1699983,7 +1711290,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "צֹהַר": { "word": { @@ -1700067,12 +1711375,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JxpEniHZ2:" + "plurals_guid": "JxpEniHZ2:", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָהֳרַיִם": { "word": { @@ -1700147,12 +1711458,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oP:?2iZs=W" + "plurals_guid": "oP:?2iZs=W", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְוָאָה": { "word": { @@ -1700211,12 +1711525,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "BNb/%G75j9" + "plurals_guid": "BNb/%G75j9", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָצוּד": { "word": { @@ -1700661,7 +1711978,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצּוֹד": { "word": { @@ -1701085,7 +1712403,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצוּדָה": { "word": { @@ -1701148,12 +1712467,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ot5xZM,o_s" + "plurals_guid": "ot5xZM,o_s", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָצוֹד": { "word": { @@ -1701216,12 +1712538,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "nwRiz1[Yy<" + "plurals_guid": "nwRiz1[Yy<", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָוָאר": { "word": { @@ -1701281,7 +1712606,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָוָארוֹן": { "word": { @@ -1701341,7 +1712667,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְוֹחַ": { "word": { @@ -1701775,7 +1713102,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַוֵּחַ": { "word": { @@ -1702200,7 +1713528,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַו": { "word": { @@ -1702295,7 +1713624,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַוּוֹת": { "word": { @@ -1702720,7 +1714050,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְוָה": { "word": { @@ -1702800,12 +1714131,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QJWOr5@JlA" + "plurals_guid": "QJWOr5@JlA", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַוּוֹת": { "word": { @@ -1703554,7 +1714888,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִוּוּי": { "word": { @@ -1703618,12 +1714953,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lKvLlGta1A" + "plurals_guid": "lKvLlGta1A", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צוֹל": { "word": { @@ -1703669,7 +1715007,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצוּלָה": { "word": { @@ -1703728,12 +1715067,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ak.o,*crdf" + "plurals_guid": "Ak.o,*crdf", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָצוּם": { "word": { @@ -1704155,7 +1715497,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צוֹם": { "word": { @@ -1704216,7 +1715559,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָצוּף": { "word": { @@ -1704640,7 +1715984,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָצִיף": { "word": { @@ -1705393,7 +1716738,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲצָפָה": { "word": { @@ -1705456,12 +1716802,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "p{q]g!w5{J" + "plurals_guid": "p{q]g!w5{J", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָצוֹף": { "word": { @@ -1705524,12 +1716873,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C|WmX~=r)(" + "plurals_guid": "C|WmX~=r)(", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָצִיץ": { "word": { @@ -1706281,7 +1717633,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲצָצָה": { "word": { @@ -1706364,12 +1717717,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gw{_LKT}XL" + "plurals_guid": "Gw{_LKT}XL", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָצוּץ": { "word": { @@ -1706818,7 +1718174,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָצִיק": { "word": { @@ -1707570,7 +1718927,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצוּקָה": { "word": { @@ -1707632,12 +1718990,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tF,8Q<}z]4" + "plurals_guid": "tF,8Q<}z]4", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲצָקָה": { "word": { @@ -1707699,12 +1719060,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E@<3uG4A8I" + "plurals_guid": "E@<3uG4A8I", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צוּק": { "word": { @@ -1707780,7 +1719144,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָצוֹר": { "word": { @@ -1707836,12 +1719201,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hlP|3MF1!K" + "plurals_guid": "hlP|3MF1!K", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צוּרָה": { "word": { @@ -1707934,7 +1719302,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צוּר": { "word": { @@ -1707994,7 +1719363,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָצוּר": { "word": { @@ -1708417,7 +1719787,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִוְתִּי": { "word": { @@ -1708476,7 +1719847,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֶוֶת": { "word": { @@ -1708553,12 +1719925,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r@Z;K;6]/;" + "plurals_guid": "r@Z;K;6]/;", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַח": { "word": { @@ -1708639,11 +1720014,12 @@ "nikkud": "צָחוֹת", "ktiv_male": "צחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָחִיחַ": { "word": { @@ -1708714,11 +1720090,12 @@ "nikkud": "צְחִיחוֹת", "ktiv_male": "צחיחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַחְצֵחַ": { "word": { @@ -1709460,7 +1720837,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַחְצֵחַ": { "word": { @@ -1709883,7 +1721261,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְחֹק": { "word": { @@ -1710336,7 +1721715,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְחוֹק": { "word": { @@ -1710417,12 +1721797,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l(^vrIO02s" + "plurals_guid": "l(^vrIO02s", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַחְקָן": { "word": { @@ -1710482,11 +1721865,12 @@ "nikkud": "צַחְקָנִיּוֹת", "ktiv_male": "צחקניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצְחִיק": { "word": { @@ -1710572,11 +1721956,12 @@ "nikkud": "מַצְחִיקוֹת", "ktiv_male": "מצחיקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְחִיק": { "word": { @@ -1711327,7 +1722712,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַחֵק": { "word": { @@ -1711780,7 +1723166,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַחֵק": { "word": { @@ -1712207,7 +1723594,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַחְקֵק": { "word": { @@ -1712644,7 +1724032,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָחֹר": { "word": { @@ -1712702,11 +1724091,12 @@ "nikkud": "צְחֹרוֹת", "ktiv_male": "צחורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְחוֹר": { "word": { @@ -1712764,12 +1724154,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kyMU1MKLh]" + "plurals_guid": "kyMU1MKLh]", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַטֵּט": { "word": { @@ -1713492,7 +1724885,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִי": { "word": { @@ -1713573,7 +1724967,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַיָּד": { "word": { @@ -1713658,12 +1725053,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַיֵּד": { "word": { @@ -1714417,7 +1725815,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַיֵּד": { "word": { @@ -1714858,7 +1726257,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִיּוּד": { "word": { @@ -1714937,12 +1726337,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zkP7fU]?RV" + "plurals_guid": "zkP7fU]?RV", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַיִד": { "word": { @@ -1715016,12 +1726419,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o~!JP.ggIa" + "plurals_guid": "o~!JP.ggIa", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצֻיָּן": { "word": { @@ -1715094,11 +1726500,12 @@ "nikkud": "מְצֻיָּנוֹת", "ktiv_male": "מצוינות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַיֵּן": { "word": { @@ -1715851,7 +1727258,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַיֵּן": { "word": { @@ -1716275,7 +1727683,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִיּוּן": { "word": { @@ -1716338,12 +1727747,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cGujgcJvD6" + "plurals_guid": "cGujgcJvD6", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִנָּה": { "word": { @@ -1716403,7 +1727815,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִינוֹק": { "word": { @@ -1716457,7 +1727870,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִנּוֹר": { "word": { @@ -1716517,7 +1727931,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִינִי": { "word": { @@ -1716570,7 +1727985,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִינִיּוּת": { "word": { @@ -1716624,7 +1728040,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִפֹּרֶן|Noun|carnation (flower)": { "word": { @@ -1716688,7 +1728105,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִפֹּרֶן|Noun|pen tip": { "word": { @@ -1716752,7 +1728170,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִפֹּרֶן|Noun|fingernail, toenail, nail; claw, talon": { "word": { @@ -1716816,7 +1728235,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַיֵּץ": { "word": { @@ -1717557,7 +1728977,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִיּוּץ": { "word": { @@ -1717618,12 +1729039,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q-(Z.)`EB)" + "plurals_guid": "Q-(Z.)`EB)", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַיָּר": { "word": { @@ -1717702,12 +1729126,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u;0)-s%X2L" + "plurals_guid": "u;0)-s%X2L", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַיֵּר": { "word": { @@ -1718460,7 +1729887,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִיּוּר": { "word": { @@ -1718549,12 +1729977,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j)}bdL6jt)" + "plurals_guid": "j)}bdL6jt)", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַיֵּר": { "word": { @@ -1718978,7 +1730409,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַיְתָן": { "word": { @@ -1719034,11 +1730466,12 @@ "nikkud": "צַיְתָנִיּוֹת", "ktiv_male": "צייתניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִיּוּת": { "word": { @@ -1719100,12 +1730533,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KH?rWvx7wH" + "plurals_guid": "KH?rWvx7wH", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַיֵּת": { "word": { @@ -1719857,7 +1731293,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִיתוּת": { "word": { @@ -1719917,12 +1731354,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iKVqy|VFA$" + "plurals_guid": "iKVqy|VFA$", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַלְבָן": { "word": { @@ -1719987,12 +1731427,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e^*0r2E`;$" + "plurals_guid": "e^*0r2E`;$", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְלָב": { "word": { @@ -1720073,12 +1731516,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s=QKTyp93X" + "plurals_guid": "s=QKTyp93X", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַלֵּב": { "word": { @@ -1720504,7 +1731950,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָלוּב": { "word": { @@ -1720563,11 +1732010,12 @@ "nikkud": "צְלוּבוֹת", "ktiv_male": "צלובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְלִיב": { "word": { @@ -1720993,7 +1732441,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִצְטַלְּבוּת": { "word": { @@ -1721058,12 +1732507,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IX2nnn}l]{" + "plurals_guid": "IX2nnn}l]{", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצְלָחָה": { "word": { @@ -1721154,12 +1732606,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GK.V.N$Od?" + "plurals_guid": "GK.V.N$Od?", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻצְלָח": { "word": { @@ -1721239,11 +1732694,12 @@ "nikkud": "מֻצְלָחוֹת", "ktiv_male": "מוצלחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְלֹחַ": { "word": { @@ -1721669,7 +1733125,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְלוֹחִית": { "word": { @@ -1721755,7 +1733212,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְלִיחַ": { "word": { @@ -1722510,7 +1733968,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַלַּחַת": { "word": { @@ -1722601,12 +1734060,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y|ws|j&L/R" + "plurals_guid": "y|ws|j&L/R", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצָּלוֹת": { "word": { @@ -1723030,7 +1734492,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְלוֹת": { "word": { @@ -1723454,7 +1734917,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָלוּי": { "word": { @@ -1723511,11 +1734975,12 @@ "nikkud": "צְלוּיוֹת", "ktiv_male": "צלויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְלִיָּה": { "word": { @@ -1723572,12 +1735037,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FeMBe1~9u-" + "plurals_guid": "FeMBe1~9u-", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַלְיָן": { "word": { @@ -1723637,7 +1735105,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִלּוֹן": { "word": { @@ -1723712,7 +1735181,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְלֹל": { "word": { @@ -1724159,7 +1735629,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְלִיל": { "word": { @@ -1724255,12 +1735726,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BYiq5_|ilV" + "plurals_guid": "BYiq5_|ilV", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֵל": { "word": { @@ -1724351,12 +1735825,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lI$%y&{*3K" + "plurals_guid": "lI$%y&{*3K", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָלוּל": { "word": { @@ -1724446,11 +1735923,12 @@ "nikkud": "צְלוּלוֹת", "ktiv_male": "צלולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְלִילָה": { "word": { @@ -1724520,12 +1735998,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K2_4|pR%+g" + "plurals_guid": "K2_4|pR%+g", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָצֵל": { "word": { @@ -1725275,7 +1736756,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַלֵּל": { "word": { @@ -1725706,7 +1737188,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְלָלִית": { "word": { @@ -1725797,7 +1737280,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲצָלָה": { "word": { @@ -1725870,12 +1737354,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JXa^@cj%o(" + "plurals_guid": "JXa^@cj%o(", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַצְלָלָה": { "word": { @@ -1725945,12 +1737432,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tOAKQae:2h" + "plurals_guid": "tOAKQae:2h", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַלֵּם": { "word": { @@ -1726424,7 +1737914,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִלּוּם": { "word": { @@ -1726490,12 +1737981,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "MRI*l-;]a1u9" + "plurals_guid": "FwTI>]a1u9", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִמְצוּם": { "word": { @@ -1734147,12 +1745704,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e0hZaE0Ugk" + "plurals_guid": "e0hZaE0Ugk", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַמְצֵם": { "word": { @@ -1734603,7 +1746163,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַמְצָם": { "word": { @@ -1734667,12 +1746228,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lNnl)d;+o]" + "plurals_guid": "lNnl)d;+o]", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַמְצֵם": { "word": { @@ -1735421,7 +1746985,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָמוּק": { "word": { @@ -1735480,11 +1747045,12 @@ "nikkud": "צְמוּקוֹת", "ktiv_male": "צמוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַמֵּק": { "word": { @@ -1735910,7 +1747476,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְמֹק": { "word": { @@ -1736284,7 +1747851,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצֻמָּק": { "word": { @@ -1736343,11 +1747911,12 @@ "nikkud": "מְצֻמָּקוֹת", "ktiv_male": "מצומקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַמֵּק": { "word": { @@ -1737076,7 +1748645,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִמּוּק": { "word": { @@ -1737141,12 +1748711,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D>Qo.6lko-" + "plurals_guid": "D>Qo.6lko-", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֶמֶר": { "word": { @@ -1737203,12 +1748776,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tKuTyR>Onx" + "plurals_guid": "tKuTyR>Onx", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַמְרִי": { "word": { @@ -1737269,7 +1748845,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְמַרְמֹרֶת": { "word": { @@ -1737358,12 +1748935,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bDP#].y;&d" + "plurals_guid": "bDP#].y;&d", + "mishkal": "ktaltolet", + "mishkal_hebrew": "קְטַלְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַמֶּרֶת": { "word": { @@ -1737426,12 +1749006,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o)rkaqPk}6" + "plurals_guid": "o)rkaqPk}6", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַמְרֵר": { "word": { @@ -1737855,7 +1749438,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצַמְרֵר": { "word": { @@ -1737912,11 +1749496,12 @@ "nikkud": "מְצַמְרְרוֹת", "ktiv_male": "מצמררות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַמְרֵר": { "word": { @@ -1738340,7 +1749925,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֹמֶת": { "word": { @@ -1738418,12 +1750004,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "PFuG3o}]II" + "plurals_guid": "PFuG3o}]II", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְמִית": { "word": { @@ -1739149,7 +1750738,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְמֹת": { "word": { @@ -1739572,7 +1751162,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְנוֹבָר": { "word": { @@ -1739632,7 +1751223,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְנוֹן": { "word": { @@ -1739692,7 +1751284,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְנוֹנִית": { "word": { @@ -1739752,7 +1751345,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַנְזֵר": { "word": { @@ -1740476,7 +1752070,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְנֹחַ": { "word": { @@ -1740927,7 +1752522,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַנְחָן": { "word": { @@ -1741017,12 +1752613,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "y?`:n`.DD." + "plurals_guid": "y?`:n`.DD.", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְנָח": { "word": { @@ -1741089,12 +1752688,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצְנֵחַ": { "word": { @@ -1741170,12 +1752772,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q/lV=be`o%" + "plurals_guid": "q/lV=be`o%", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְנִיחַ": { "word": { @@ -1741919,7 +1753524,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַצְנֵם": { "word": { @@ -1741978,12 +1753584,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eO=mvxX^+<" + "plurals_guid": "eO=mvxX^+<", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִנּוּן": { "word": { @@ -1742048,12 +1753657,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qFg{_|Wb.1" + "plurals_guid": "qFg{_|Wb.1", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִצְטַנְּנוּת": { "word": { @@ -1742118,12 +1753730,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "qu%5Q`e.pU" + "plurals_guid": "qu%5Q`e.pU", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצֻנָּן": { "word": { @@ -1742182,11 +1753797,12 @@ "nikkud": "מְצֻנָּנוֹת", "ktiv_male": "מצוננות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַנֵּן": { "word": { @@ -1742612,7 +1754228,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַנֵּן": { "word": { @@ -1743367,7 +1754984,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָצֵן": { "word": { @@ -1744096,7 +1755714,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַנֵּעַ": { "word": { @@ -1744522,7 +1756141,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְנִיעוּת": { "word": { @@ -1744592,7 +1756212,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָנוּעַ": { "word": { @@ -1744667,11 +1756288,12 @@ "nikkud": "צְנוּעוֹת", "ktiv_male": "צנועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְנִיעַ": { "word": { @@ -1745400,7 +1757022,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֶנַע": { "word": { @@ -1745459,12 +1757082,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Bz]W3c4uQ9" + "plurals_guid": "Bz]W3c4uQ9", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֻצְנָע": { "word": { @@ -1745523,11 +1757149,12 @@ "nikkud": "מֻצְנָעוֹת", "ktiv_male": "מוצנעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְנֶפֶת": { "word": { @@ -1745592,12 +1757219,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P{Zq{0yeq6" + "plurals_guid": "P{Zq{0yeq6", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָנִיף": { "word": { @@ -1745662,12 +1757292,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gJ07YoS@B4" + "plurals_guid": "gJ07YoS@B4", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַנֵּף": { "word": { @@ -1746093,7 +1757726,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְנִיף": { "word": { @@ -1746822,7 +1758456,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְנֹף": { "word": { @@ -1747248,7 +1758883,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצֻנָּף": { "word": { @@ -1747307,11 +1758943,12 @@ "nikkud": "מְצֻנָּפוֹת", "ktiv_male": "מצונפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִנְצֶנֶת": { "word": { @@ -1747371,12 +1759008,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g7I?d8_}_n" + "plurals_guid": "g7I?d8_}_n", + "mishkal": "kittelet", + "mishkal_hebrew": "קִטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִנְרוּר": { "word": { @@ -1747438,12 +1759078,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K`jCtHRx[7" + "plurals_guid": "K`jCtHRx[7", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַנְרֵר": { "word": { @@ -1748169,7 +1759812,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַנְתָּר": { "word": { @@ -1748237,7 +1759881,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַנְתֵּר": { "word": { @@ -1748661,7 +1760306,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִנְתּוּר": { "word": { @@ -1748724,12 +1760370,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yv5,}h(39:" + "plurals_guid": "yv5,}h(39:", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְעֹד": { "word": { @@ -1749181,7 +1760830,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְעָד": { "word": { @@ -1749246,12 +1760896,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HC.*t5ZlXt" + "plurals_guid": "HC.*t5ZlXt", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַעַד": { "word": { @@ -1749342,12 +1760995,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GUr#*Pu:,$" + "plurals_guid": "GUr#*Pu:,$", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְעִידָה": { "word": { @@ -1749412,12 +1761068,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l%GJx{)xqb" + "plurals_guid": "l%GJx{)xqb", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְעִיד": { "word": { @@ -1750146,7 +1761805,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַעֲדָה": { "word": { @@ -1750211,12 +1761871,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OnJ5pa5q$e" + "plurals_guid": "OnJ5pa5q$e", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְעוֹת": { "word": { @@ -1750636,7 +1762299,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְעֹן": { "word": { @@ -1751056,7 +1762720,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָעִיף": { "word": { @@ -1751131,12 +1762796,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E56+<2OXm" + "plurals_guid": "E56+<2OXm", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַעֲצוּעַ": { "word": { @@ -1751212,12 +1762880,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HYilj2`$Q%" + "plurals_guid": "HYilj2`$Q%", + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְעֹק": { "word": { @@ -1751666,7 +1763337,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְעָקָה": { "word": { @@ -1751754,12 +1763426,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "RaxQ;yz<}b" + "plurals_guid": "RaxQ;yz<}b", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַעֵק": { "word": { @@ -1752182,7 +1763857,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטַעֵר": { "word": { @@ -1752634,7 +1764310,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָעִיר": { "word": { @@ -1752719,11 +1764396,12 @@ "nikkud": "צְעִירוֹת", "ktiv_male": "צעירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְעִיר": { "word": { @@ -1753149,7 +1764827,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַעֵר": { "word": { @@ -1753894,7 +1765573,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַעַר": { "word": { @@ -1753975,12 +1765655,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iXNB[*7hZ_" + "plurals_guid": "iXNB[*7hZ_", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְעָר": { "word": { @@ -1754045,12 +1765728,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w[b4AhuZ0b" + "plurals_guid": "w[b4AhuZ0b", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָפִיד": { "word": { @@ -1754103,11 +1765789,12 @@ "nikkud": "צְפִידוֹת", "ktiv_male": "צפידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַפַּחַת": { "word": { @@ -1754166,12 +1765853,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "t4{~wxzC~q" + "plurals_guid": "t4{~wxzC~q", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְפֶּה": { "word": { @@ -1754268,12 +1765958,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "mzIvL97@)l]N" + "plurals_guid": "hl>97@)l]N", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְפַרְדֵּעַ": { "word": { @@ -1761785,7 +1773536,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַקְצֵק": { "word": { @@ -1762206,7 +1773958,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְרֹב": { "word": { @@ -1762651,7 +1774404,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרוּב": { "word": { @@ -1762708,11 +1774462,12 @@ "nikkud": "צְרוּבוֹת", "ktiv_male": "צרובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרֶבֶת": { "word": { @@ -1762775,12 +1774530,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w+[di;8].|" + "plurals_guid": "w+[di;8].|", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצָּרֵב": { "word": { @@ -1763204,7 +1774962,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטָרֵד": { "word": { @@ -1763642,7 +1775401,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרוּד": { "word": { @@ -1763723,11 +1775483,12 @@ "nikkud": "צְרוּדוֹת", "ktiv_male": "צרודות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְרֹחַ": { "word": { @@ -1764176,7 +1775937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַרְחָן": { "word": { @@ -1764232,11 +1775994,12 @@ "nikkud": "צַרְחָנִיּוֹת", "ktiv_male": "צרחניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְרָחָה": { "word": { @@ -1764314,12 +1776077,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zM]c([oWy8" + "plurals_guid": "zM]c([oWy8", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְרִיחַ": { "word": { @@ -1764379,7 +1776145,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְרֹךְ": { "word": { @@ -1764809,7 +1776576,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטָרֵךְ": { "word": { @@ -1765265,7 +1777033,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֹרֶךְ": { "word": { @@ -1765360,12 +1777129,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rO5D~Y@FUn" + "plurals_guid": "rO5D~Y@FUn", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרִיךְ": { "word": { @@ -1765454,11 +1777226,12 @@ "nikkud": "צְרִיכוֹת", "ktiv_male": "צריכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַרְכָן": { "word": { @@ -1765527,12 +1777300,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Be]VvRb[o%" + "plurals_guid": "Be]VvRb[o%", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִצְרָךְ": { "word": { @@ -1765617,12 +1777393,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rD%9V-a?pm" + "plurals_guid": "rD%9V-a?pm", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַרְכָנוּת": { "word": { @@ -1765690,7 +1777469,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַצְרִיךְ": { "word": { @@ -1766423,7 +1778203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצָּרֵךְ": { "word": { @@ -1766438,7 +1778219,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to be consumed; to need, to require (ל-)", + "meaning": "to be consumed; to need, to require", "meaning_raw": "to be consumed; to need, to require (ל-)", "audio_url": "https://audio.pealim.com/v0/1l/1lzo07frqe7zq.mp3", "audio_file": "להיצרך.mp3", @@ -1766853,7 +1778634,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "צְרִיכָה": { "word": { @@ -1766942,12 +1778724,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FNsNhMP>(Q" + "plurals_guid": "FNsNhMP>(Q", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְרֹם": { "word": { @@ -1767393,7 +1779178,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרַעַת": { "word": { @@ -1767454,12 +1779240,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ETbQVy6a^r" + "plurals_guid": "ETbQVy6a^r", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְצֹרָע": { "word": { @@ -1767514,11 +1779303,12 @@ "nikkud": "מְצֹרָעוֹת", "ktiv_male": "מצורעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִצְטָרֵף": { "word": { @@ -1767969,7 +1779759,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצָרֵף": { "word": { @@ -1768718,7 +1780509,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְרִיף": { "word": { @@ -1768808,12 +1780600,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C8mdS(LC1W" + "plurals_guid": "C8mdS(LC1W", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צֵרוּף": { "word": { @@ -1768877,12 +1780672,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n5w_o;V*&w" + "plurals_guid": "n5w_o;V*&w", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְרֹף": { "word": { @@ -1769307,7 +1781105,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרְפַת": { "word": { @@ -1769384,7 +1781183,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרְפָתִי": { "word": { @@ -1769453,7 +1781253,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצַרְצֵר": { "word": { @@ -1770179,7 +1781980,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צִרְצוּר": { "word": { @@ -1770241,12 +1782043,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f+bjQ*sB7=" + "plurals_guid": "f+bjQ*sB7=", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִצְרֹר": { "word": { @@ -1770672,7 +1782477,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צַר": { "word": { @@ -1770752,11 +1782558,12 @@ "nikkud": "צָרוֹת", "ktiv_male": "צרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צְרוֹר": { "word": { @@ -1770838,12 +1782645,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K1`a[Q2>hl" + "plurals_guid": "K1`a[Q2>hl", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרוּר": { "word": { @@ -1770905,11 +1782715,12 @@ "nikkud": "צְרוּרוֹת", "ktiv_male": "צרורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָצֵר": { "word": { @@ -1771638,7 +1783449,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "צָרָה": { "word": { @@ -1771719,12 +1783531,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hb|1kG7LL~" + "plurals_guid": "hb|1kG7LL~", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְצוֹתֵת": { "word": { @@ -1772447,7 +1784262,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְבֹּל": { "word": { @@ -1772878,7 +1784694,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַבֵּל": { "word": { @@ -1773335,7 +1785152,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִבֹּלֶת": { "word": { @@ -1773405,12 +1785223,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G8Sz}y9^NZ)VS" + "plurals_guid": "j`>9^NZ)VS", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "יְקוּם": { "word": { @@ -1799700,7 +1811696,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְקוֹמִי": { "word": { @@ -1799790,7 +1811787,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְקוֹמְמוּת": { "word": { @@ -1799861,12 +1811859,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A7XZqcd[Eh" + "plurals_guid": "A7XZqcd[Eh", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲקָמָה": { "word": { @@ -1799963,12 +1811964,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zeG%?Cpqsn" + "plurals_guid": "zeG%?Cpqsn", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵקִים": { "word": { @@ -1800039,12 +1812043,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l7t+x}!WoO" + "plurals_guid": "l7t+x}!WoO", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קוֹמָה": { "word": { @@ -1800136,7 +1812143,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קוֹמוּנִיסְט": { "word": { @@ -1800196,7 +1812204,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קוּמְקוּם": { "word": { @@ -1800251,7 +1812260,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִינָה": { "word": { @@ -1800313,12 +1812323,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CL&_]i6aEB" + "plurals_guid": "CL&_]i6aEB", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְקֻוָּן": { "word": { @@ -1800374,11 +1812387,12 @@ "nikkud": "מְקֻוָּנוֹת", "ktiv_male": "מקוונות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקוֹנֵן": { "word": { @@ -1800801,7 +1812815,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קוֹפִי": { "word": { @@ -1800861,7 +1812876,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּקוּפָה": { "word": { @@ -1800949,12 +1812965,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Jh.CTS2" + "plurals_guid": "i+@>h.CTS2", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַקְלֵט": { "word": { @@ -1818214,12 +1830353,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e4p2LBcTQL" + "plurals_guid": "e4p2LBcTQL", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּקְלִיט": { "word": { @@ -1818290,12 +1830432,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cWR7EHcV2#" + "plurals_guid": "cWR7EHcV2#", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְלִיט": { "word": { @@ -1819046,7 +1831191,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִקָּלֵט": { "word": { @@ -1819478,7 +1831624,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְלֹט": { "word": { @@ -1819936,7 +1832083,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶלֶט": { "word": { @@ -1820023,12 +1832171,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e({ZN]b:n:" + "plurals_guid": "e({ZN]b:n:", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָלִיט": { "word": { @@ -1820093,11 +1832244,12 @@ "nikkud": "קְלִיטוֹת", "ktiv_male": "קליטות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְלוֹת": { "word": { @@ -1820546,7 +1832698,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִקָּלוֹת": { "word": { @@ -1820969,7 +1833122,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָלוֹן": { "word": { @@ -1821031,12 +1833185,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sbnWdyKDz>" + "plurals_guid": "sbnWdyKDz>", + "mishkal": "katon", + "mishkal_hebrew": "קָטוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַלּוּת": { "word": { @@ -1821116,7 +1833273,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְלָלָה": { "word": { @@ -1821202,12 +1833360,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "blkk0f@VKV" + "plurals_guid": "blkk0f@VKV", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַל": { "word": { @@ -1821292,11 +1833453,12 @@ "nikkud": "קַלּוֹת", "ktiv_male": "קלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲקַלָּה": { "word": { @@ -1821361,12 +1833523,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "I@U;?y+996" + "plurals_guid": "I@U;?y+996", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַלֵּל": { "word": { @@ -1822111,7 +1834276,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָקֵל": { "word": { @@ -1822871,7 +1835037,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַלְמָר": { "word": { @@ -1822926,7 +1835093,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַלֵּס": { "word": { @@ -1822941,7 +1835109,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to ridicule, to humiliate, to mock (ב־) (lit.)", + "meaning": "to ridicule, to humiliate, to mock (lit.)", "meaning_raw": "to ridicule, to humiliate, to mock (ב־) (lit.)", "audio_url": "https://audio.pealim.com/v0/al/alf6nz9lenyl.mp3", "audio_file": "להתקלס.mp3", @@ -1823346,7 +1835514,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "קֶלַע": { "word": { @@ -1823416,12 +1835585,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָלָע": { "word": { @@ -1823500,12 +1835672,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G+6H&z[+7q" + "plurals_guid": "G+6H&z[+7q", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַקְלֵעַ": { "word": { @@ -1823572,12 +1835747,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "}L1^dGY}." + "plurals_guid": "}L1^dGY}.", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָלִיעַ": { "word": { @@ -1823644,12 +1835822,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w=[Sey;d]G" + "plurals_guid": "w=[Sey;d]G", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִקָּלֵעַ": { "word": { @@ -1824077,7 +1836258,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְלִיעָה|Noun|shooting, target practice, throwing": { "word": { @@ -1824122,13 +1836304,7 @@ ], "confusables_guid": "p*m@ZVjit?", "examples": { - "vetted": [ - { - "text": "הֲמוֹנִים־הֲמוֹנִים הִתְרוֹצְצוּ הַנַּנָּסִים סָבִיב, הִסְתַּכְּלוּ בּוֹ מִכָּל עֵבֶר וְיִדּוּ בּוֹ אֲבָנִים בְּתַחֲרֻיּוֹת קְלִיעָה", - "source": "gulliver", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -1824156,12 +1836332,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "rCsW:s)Dfv" + "plurals_guid": "rCsW:s)Dfv", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְלִיעָה|Noun|braiding, basket weaving": { "word": { @@ -1824240,12 +1836419,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Ph?Xb^iV!HBu;" + "plurals_guid": "s>^iV!HBu;", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִצְבָּה|Noun|allowance, subsidy": { "word": { @@ -1853698,12 +1866040,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MMx?hS/J]N" + "plurals_guid": "MMx?hS/J]N", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּקְצִיב": { "word": { @@ -1853771,12 +1866116,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L^,?y$3Lsv" + "plurals_guid": "L^,?y$3Lsv", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָצוּב": { "word": { @@ -1853838,11 +1866186,12 @@ "nikkud": "קְצוּבוֹת", "ktiv_male": "קצובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְצִיב": { "word": { @@ -1854574,7 +1866923,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְצֹב": { "word": { @@ -1855003,7 +1867353,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִצְבָּה|Noun|allowance, stipend": { "word": { @@ -1855074,12 +1867425,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PI`(,|Pvp3" + "plurals_guid": "PI`(,|Pvp3", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְצוֹת": { "word": { @@ -1855825,7 +1868179,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָצֶה": { "word": { @@ -1855917,7 +1868272,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְצִין": { "word": { @@ -1856339,7 +1868695,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָצִין": { "word": { @@ -1856426,12 +1868783,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j3FaKb+7_k" + "plurals_guid": "j3FaKb+7_k", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִקְצוֹעִי": { "word": { @@ -1856491,7 +1868851,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְצִיעַ": { "word": { @@ -1857217,7 +1869578,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִקְצוֹעַ": { "word": { @@ -1857300,12 +1869662,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f+7|wVU6G>" + "plurals_guid": "f+7|wVU6G>", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַצֶּפֶת": { "word": { @@ -1857364,12 +1869729,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eJ7,H6h[z" + "plurals_guid": "g-F4P>6h[z", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַצֵּף": { "word": { @@ -1858367,7 +1870742,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְצִיף": { "word": { @@ -1859096,7 +1871472,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִצּוּץ": { "word": { @@ -1859161,12 +1871538,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b+3iR-JE*a" + "plurals_guid": "b+3iR-JE*a", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֵץ": { "word": { @@ -1859252,12 +1871632,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dNnf~|_e!y" + "plurals_guid": "dNnf~|_e!y", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַצֵּץ": { "word": { @@ -1859986,7 +1872369,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְצֹץ": { "word": { @@ -1860412,7 +1872796,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְצִיצָה|Noun|cutlet": { "word": { @@ -1860480,12 +1872865,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vHm+wC1_?;" + "plurals_guid": "vHm+wC1_?;", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְצִיצָה|Noun|chopping": { "word": { @@ -1860547,12 +1872935,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e5]mD[dXE)" + "plurals_guid": "e5]mD[dXE)", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֹצֶר": { "word": { @@ -1860635,12 +1873026,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָצִיר": { "word": { @@ -1860705,12 +1873099,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J)1,H*FvOT" + "plurals_guid": "J)1,H*FvOT", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִצּוּר": { "word": { @@ -1860807,12 +1873204,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NV[IJdepOR" + "plurals_guid": "NV[IJdepOR", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְצֹר": { "word": { @@ -1861244,7 +1873644,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִקָּצֵר": { "word": { @@ -1861676,7 +1874077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַצֵּר": { "word": { @@ -1862134,7 +1874536,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָצָר": { "word": { @@ -1862221,11 +1874624,12 @@ "nikkud": "קְצָרוֹת", "ktiv_male": "קצרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶצֶר": { "word": { @@ -1862325,12 +1874729,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zkyYoW#K@m" + "plurals_guid": "zkyYoW#K@m", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַצֶּרֶת": { "word": { @@ -1862395,12 +1874802,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iEpck9jgDx" + "plurals_guid": "iEpck9jgDx", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קוֹצֵר": { "word": { @@ -1862474,12 +1874884,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "8VGToA+`*" + "plurals_guid": "8VGToA+`*", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַצֵּר": { "word": { @@ -1863230,7 +1875643,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּקְצִיר": { "word": { @@ -1863301,12 +1875715,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Jtq.qT7_%0" + "plurals_guid": "Jtq.qT7_%0", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְצַר רְאִיָּה": { "word": { @@ -1863359,7 +1875776,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְצָת": { "word": { @@ -1863418,7 +1875836,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "קָקָאוֹ": { "word": { @@ -1863469,7 +1875888,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶפְקֵרוּת": { "word": { @@ -1863526,7 +1875946,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְרֹא": { "word": { @@ -1863541,7 +1875962,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to read (ב-, את); to call (ל-)", + "meaning": "to read (ב-, את); to call", "meaning_raw": "to read (ב-, את); to call (ל-)", "audio_url": "https://audio.pealim.com/v0/pa/pab0jarecp5g.mp3", "audio_file": "לקרוא.mp3", @@ -1864010,7 +1876431,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל-" }, "קְרִיאָה": { "word": { @@ -1864102,12 +1876524,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B6KkcA$)oq" + "plurals_guid": "B6KkcA$)oq", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָרִיא": { "word": { @@ -1864167,11 +1876592,12 @@ "nikkud": "קְרִיאוֹת", "ktiv_male": "קריאות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקָרֵא": { "word": { @@ -1864598,7 +1877024,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִקְרָא": { "word": { @@ -1864655,12 +1877082,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lxNW)S=p/m" + "plurals_guid": "vQ$Z+z>p/m", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִרְיָה": { "word": { @@ -1872036,12 +1884513,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o4r;jK}aE8" + "plurals_guid": "o4r;jK}aE8", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּקְרִית": { "word": { @@ -1872113,12 +1884593,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "B),J+mdmXz" + "plurals_guid": "B),J+mdmXz", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּקְרָה": { "word": { @@ -1872211,12 +1884694,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "K?]UWeu>Lb" + "plurals_guid": "K?]UWeu>Lb", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִקְרִי": { "word": { @@ -1872302,7 +1884788,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַקְרַאי": { "word": { @@ -1872382,7 +1884869,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אַקְרָאִי": { "word": { @@ -1872455,7 +1884943,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַרְיָן": { "word": { @@ -1872527,12 +1885016,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k!-UvW^bse" + "plurals_guid": "k!-UvW^bse", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָרוּי": { "word": { @@ -1872598,11 +1885090,12 @@ "nikkud": "קְרוּיוֹת", "ktiv_male": "קרויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְרוֹת": { "word": { @@ -1873057,7 +1885550,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קוֹרוֹת": { "word": { @@ -1873123,7 +1885617,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְרִיזָה": { "word": { @@ -1873183,7 +1885678,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְרִיטִי": { "word": { @@ -1873236,7 +1885732,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַרְיֶרָה": { "word": { @@ -1873296,7 +1885793,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִקָּרֵם": { "word": { @@ -1873719,7 +1886217,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְרִים": { "word": { @@ -1874445,7 +1886944,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְרֹם": { "word": { @@ -1874868,7 +1887368,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְרֹן": { "word": { @@ -1875312,7 +1887813,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַקְרָנָה": { "word": { @@ -1875379,12 +1887881,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zBg>S/srrl" + "plurals_guid": "zBg>S/srrl", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶרֶן|Noun|fund (finance), foundation": { "word": { @@ -1875468,12 +1887973,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "gq8]=t?{xy" + "plurals_guid": "gq8]=t?{xy", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶרֶן|Noun|horn (anatomy); ray, beam": { "word": { @@ -1875562,12 +1888070,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PphCysWdan" + "plurals_guid": "PphCysWdan", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְרִינָה": { "word": { @@ -1875634,12 +1888145,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yoSp1P}-h/" + "plurals_guid": "yoSp1P}-h/", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַרְנִית": { "word": { @@ -1875711,7 +1888225,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַקְרֵן": { "word": { @@ -1875778,12 +1888293,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lQ~wvb{.)f" + "plurals_guid": "lQ~wvb{.)f", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְרִין": { "word": { @@ -1876530,7 +1889048,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַרְנַף": { "word": { @@ -1876590,7 +1889109,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְרֹס": { "word": { @@ -1877012,7 +1889532,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְרִיסָה": { "word": { @@ -1877073,12 +1889594,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o`x/{HMshA>" + "plurals_guid": "iG;k>MshA>", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַרְקֶפֶת": { "word": { @@ -1880709,12 +1893256,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FX))e@x/$d" + "plurals_guid": "FX))e@x/$d", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִרְקוּף": { "word": { @@ -1880777,12 +1893327,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gAg*bd)~QP" + "plurals_guid": "gAg*bd)~QP", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַרְקֵף": { "word": { @@ -1881509,7 +1894062,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַרְקֵר": { "word": { @@ -1882259,7 +1894813,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַרְקֵשׁ": { "word": { @@ -1882680,7 +1895235,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְקָרְרוּת": { "word": { @@ -1882746,12 +1895302,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "M3f!k4:47M" + "plurals_guid": "M3f!k4:47M", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָרִיר": { "word": { @@ -1882811,11 +1895370,12 @@ "nikkud": "קְרִירוֹת", "ktiv_male": "קרירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקָרֵר": { "word": { @@ -1883561,7 +1896121,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַר": { "word": { @@ -1883647,11 +1896208,12 @@ "nikkud": "קָרוֹת", "ktiv_male": "קרות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקָרֵר": { "word": { @@ -1884078,7 +1896640,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֹר": { "word": { @@ -1884154,12 +1896717,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "K|@([g2qU]" + "plurals_guid": "K|@([g2qU]", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְקָרֵר": { "word": { @@ -1884225,12 +1896791,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i[}o?}cqX&" + "plurals_guid": "i[}o?}cqX&", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקָרֵשׁ": { "word": { @@ -1884653,7 +1897222,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶרֶשׁ": { "word": { @@ -1884731,12 +1897301,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hf>aGeTzFQ" + "plurals_guid": "Hf>aGeTzFQ", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְרִישׁ": { "word": { @@ -1885462,7 +1898035,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִשּׁוּא": { "word": { @@ -1885521,12 +1898095,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f*UPf~h??3" + "plurals_guid": "f*UPf~h??3", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַקְשָׁבָה": { "word": { @@ -1885590,12 +1898167,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "JDpkBNT2Ei" + "plurals_guid": "JDpkBNT2Ei", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַשּׁוּב": { "word": { @@ -1885653,11 +1898233,12 @@ "nikkud": "קַשּׁוּבוֹת", "ktiv_male": "קשובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶשֶׁב": { "word": { @@ -1885718,12 +1898299,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַשָּׁב": { "word": { @@ -1885790,12 +1898374,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Iu_PJ>.tB4" + "plurals_guid": "Iu_PJ>.tB4", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְשִׁיב": { "word": { @@ -1886549,7 +1899136,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַשֵּׁחַ": { "word": { @@ -1886973,7 +1899561,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְשִׁיחַ": { "word": { @@ -1887700,7 +1900289,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָשׁוּחַ": { "word": { @@ -1887778,11 +1900368,12 @@ "nikkud": "קְשׁוּחוֹת", "ktiv_male": "קשוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָשִׁיחַ": { "word": { @@ -1887839,11 +1900430,12 @@ "nikkud": "קְשִׁיחוֹת", "ktiv_male": "קשיחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַשֵּׁט": { "word": { @@ -1888267,7 +1900859,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְשֹׁט": { "word": { @@ -1888691,7 +1901284,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַשֵּׁט": { "word": { @@ -1889418,7 +1902012,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִשּׁוּט": { "word": { @@ -1889481,12 +1902076,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g(|/~zfd|1" + "plurals_guid": "g(|/~zfd|1", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַשּׁוֹת": { "word": { @@ -1889911,7 +1902509,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֹשִׁי": { "word": { @@ -1889975,12 +1902574,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ozxx|MG7[7" + "plurals_guid": "Ozxx|MG7[7", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָשֶׁה": { "word": { @@ -1890064,11 +1902666,12 @@ "nikkud": "קָשׁוֹת", "ktiv_male": "קשות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַקְשׁוֹת": { "word": { @@ -1890817,7 +1903420,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִקְשׁוֹת": { "word": { @@ -1891268,7 +1903872,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַשְׁקֵשׁ": { "word": { @@ -1891691,7 +1904296,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַשְׁקֵשׁ": { "word": { @@ -1892443,7 +1905049,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְקַשְּׁרוּת": { "word": { @@ -1892514,12 +1905121,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "o_7|$8vLZ8" + "plurals_guid": "o_7|$8vLZ8", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּקְשֹׁרֶת": { "word": { @@ -1892590,12 +1905200,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "O}mv1<7@30" + "plurals_guid": "O}mv1<7@30", + "mishkal": "tiktolet", + "mishkal_hebrew": "תִּקְטֹלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קֶשֶׁר": { "word": { @@ -1892692,12 +1905305,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ehXKKXyeHV" + "plurals_guid": "ehXKKXyeHV", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶקְשֵׁר": { "word": { @@ -1892784,12 +1905400,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "op5E$bt>L~" + "plurals_guid": "op5E$bt>L~", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קָשׁוּר": { "word": { @@ -1892880,11 +1905499,12 @@ "nikkud": "קְשׁוּרוֹת", "ktiv_male": "קשורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִקָּשֵׁר": { "word": { @@ -1893337,7 +1905957,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקַשֵּׁר": { "word": { @@ -1894093,7 +1906714,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְקַשֵּׁר": { "word": { @@ -1894108,7 +1906730,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to contact (עם); to phone, to call (אל)", + "meaning": "to contact ; to phone, to call", "meaning_raw": "to contact (עם); to phone, to call (אל)", "audio_url": "https://audio.pealim.com/v0/j9/j9myxjmasdm0.mp3", "audio_file": "להתקשר.mp3", @@ -1894551,7 +1907173,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם אל" }, "לִקְשֹׁר": { "word": { @@ -1895009,7 +1907632,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קִשּׁוּר": { "word": { @@ -1895080,12 +1907704,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C&IHpr=PW^" + "plurals_guid": "C&IHpr=PW^", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְשִׁירוּת": { "word": { @@ -1895161,7 +1907788,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קְשִׁירָה": { "word": { @@ -1895232,12 +1907860,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "J9Goo2gYmQ" + "plurals_guid": "J9Goo2gYmQ", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְקוֹשֵׁשׁ": { "word": { @@ -1895963,7 +1908594,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "קַשׁ": { "word": { @@ -1896051,12 +1908683,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o,u" + "plurals_guid": "bs#q=Hk>,u", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְאִיָּה": { "word": { @@ -1897246,12 +1909893,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְאוֹת": { "word": { @@ -1897708,7 +1910358,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְאוֹת": { "word": { @@ -1898468,7 +1911119,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָאוּי": { "word": { @@ -1898548,11 +1911200,12 @@ "nikkud": "רְאוּיוֹת", "ktiv_male": "ראויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִרְאֶה": { "word": { @@ -1898642,11 +1911295,12 @@ "nikkud": "נִרְאוֹת", "ktiv_male": "נראות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְאָה": { "word": { @@ -1898716,12 +1911370,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "z=SL+6c+TD" + "plurals_guid": "z=SL+6c+TD", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָאוֹת": { "word": { @@ -1899178,7 +1911835,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְאָיָה": { "word": { @@ -1899264,12 +1911922,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hoFo}k6h$w" + "plurals_guid": "hoFo}k6h$w", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרָאוֹת": { "word": { @@ -1899726,7 +1912387,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְאִי": { "word": { @@ -1899822,7 +1912484,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַאְיֵן": { "word": { @@ -1900548,7 +1913211,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַאְיֵן": { "word": { @@ -1900971,7 +1913635,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּרֵאשִׁית|Noun|creation of the world (biblical)": { "word": { @@ -1901042,7 +1913707,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֵאשִׁית|Adverb": { "word": { @@ -1901091,7 +1913757,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "רֵאשִׁית|Noun": { "word": { @@ -1901161,7 +1913828,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹאשׁ": { "word": { @@ -1901260,7 +1913928,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִאשׁוֹן": { "word": { @@ -1901352,7 +1914021,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "בְּרֵאשִׁית|Noun|the very beginning; creation of the world (biblical)": { "word": { @@ -1901398,13 +1914068,7 @@ ], "confusables_guid": "c-n`~^RAF-", "examples": { - "vetted": [ - { - "text": "יֶלֶד קָטָן הוּא עַמִי, וְאֵין לוֹ עֲדַיִן הַכֹּחַ הַדָרוּשׁ לְהַתְחִיל מַשֶׁהוּ שׁוּב מִבְּרֵאשִׁית", - "source": "silkworms", - "match_method": "direct_prefix" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -1901423,7 +1914087,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֵאשִׁיתִי": { "word": { @@ -1901489,7 +1914154,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָאשִׁי": { "word": { @@ -1901571,7 +1914237,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִאשׁוֹנִי": { "word": { @@ -1901637,7 +1914304,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָאשֵׁי תֵּבוֹת": { "word": { @@ -1901683,7 +1914351,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַב עָצְמָה": { "word": { @@ -1901736,7 +1914405,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹב": { "word": { @@ -1901824,12 +1914494,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t4$!eAZ*Cr" + "plurals_guid": "t4$!eAZ*Cr", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵרַב": { "word": { @@ -1901902,7 +1914575,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִבָּה": { "word": { @@ -1901986,12 +1914660,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "}Eo8%.?po" + "plurals_guid": "}Eo8%.?po", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִבִּית": { "word": { @@ -1902059,7 +1914736,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַב": { "word": { @@ -1902147,11 +1914825,12 @@ "nikkud": "רַבּוֹת", "ktiv_male": "רבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִבּוֹן": { "word": { @@ -1902213,12 +1914892,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J#{u,Sg^)#" + "plurals_guid": "J#{u,Sg^)#", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְבָבָה": { "word": { @@ -1902286,12 +1914968,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "lMYtfSFbT#" + "plurals_guid": "lMYtfSFbT#", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵרַבִּי": { "word": { @@ -1902378,7 +1915063,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַבּוֹתַי": { "word": { @@ -1902442,7 +1915128,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹבֶד": { "word": { @@ -1902505,12 +1915192,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z26=k" + "plurals_guid": "Gk~6,>26=k", + "mishkal": "aktal", + "mishkal_hebrew": "אַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְגִּיז": { "word": { @@ -1910259,7 +1922992,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָגֵז": { "word": { @@ -1910684,7 +1923418,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִגּוּל": { "word": { @@ -1910761,12 +1923496,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g8;>JZI{|Q" + "plurals_guid": "g8;>JZI{|Q", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶרְגֵּל": { "word": { @@ -1910849,12 +1923587,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NPF:L9,nf1" + "plurals_guid": "NPF:L9,nf1", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָגִיל": { "word": { @@ -1910941,11 +1923682,12 @@ "nikkud": "רְגִילוֹת", "ktiv_male": "רגילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶגֶל": { "word": { @@ -1911038,12 +1923780,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QV:SY6b&L." + "plurals_guid": "QV:SY6b&L.", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּרְגִּיל": { "word": { @@ -1911126,12 +1923871,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dU;O6w<%5$" + "plurals_guid": "dU;O6w<%5$", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַגֵּל": { "word": { @@ -1911878,7 +1924626,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְגִּיל": { "word": { @@ -1912625,7 +1925374,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַגֵּל": { "word": { @@ -1913074,7 +1925824,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְגֹּם": { "word": { @@ -1913497,7 +1926248,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְגֵּמָה": { "word": { @@ -1913559,12 +1926311,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "KY4^o=h(X@" + "plurals_guid": "KY4^o=h(X@", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָגֵם": { "word": { @@ -1913987,7 +1926742,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְגֹּן": { "word": { @@ -1914407,7 +1927163,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹגַע": { "word": { @@ -1914476,12 +1927233,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְגָּעָה": { "word": { @@ -1914541,12 +1927301,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "MI?1TcqY.a" + "plurals_guid": "MI?1TcqY.a", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָגוּעַ": { "word": { @@ -1914632,11 +1927395,12 @@ "nikkud": "רְגוּעוֹת", "ktiv_male": "רגועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶגַע": { "word": { @@ -1914728,12 +1927492,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FD&fm;MLrc" + "plurals_guid": "FD&fm;MLrc", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְגִּיעַ": { "word": { @@ -1915489,7 +1928256,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָגֵעַ": { "word": { @@ -1915942,7 +1928710,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹגֵעַ": { "word": { @@ -1916014,11 +1928783,12 @@ "nikkud": "רוֹגְעוֹת", "ktiv_male": "רוגעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַגֵּשׁ": { "word": { @@ -1916474,7 +1929244,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְגָּשָׁה": { "word": { @@ -1916569,12 +1929340,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "FnkGdv" + "plurals_guid": "o.ws)!>Gdv", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְדִיפָה": { "word": { @@ -1922569,12 +1935374,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hNI;VsM5zC" + "plurals_guid": "hNI;VsM5zC", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָדֵף": { "word": { @@ -1923019,7 +1935827,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְהִיב": { "word": { @@ -1923763,7 +1936572,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַהַט": { "word": { @@ -1923827,12 +1936637,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Fk5]`?Q>>-" + "plurals_guid": "Fk5]`?Q>>-", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָהִיט": { "word": { @@ -1923922,12 +1936735,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i/!|uH%`;e" + "plurals_guid": "i/!|uH%`;e", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַהֵט": { "word": { @@ -1924655,7 +1937471,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְהֹט": { "word": { @@ -1925080,7 +1937897,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִהוּט": { "word": { @@ -1925144,12 +1937962,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "rytSlait2-" + "plurals_guid": "rytSlait2-", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹבֶה": { "word": { @@ -1925230,7 +1938051,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹדָן": { "word": { @@ -1925285,7 +1938107,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִוּוּחַ": { "word": { @@ -1925357,12 +1938180,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Bm+^.0T[=m" + "plurals_guid": "Bm+^.0T[=m", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְרֻוָּח": { "word": { @@ -1925440,11 +1938266,12 @@ "nikkud": "מְרֻוָּחוֹת", "ktiv_male": "מרווחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְוֹחַ": { "word": { @@ -1925828,7 +1938655,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַוֵּחַ": { "word": { @@ -1926567,7 +1939395,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְוִיחַ": { "word": { @@ -1927329,7 +1940158,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְוָח": { "word": { @@ -1927404,12 +1940234,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oX@nyT^[di" + "plurals_guid": "oX@nyT^[di", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוּחַ": { "word": { @@ -1927512,7 +1940345,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוּחָנִי": { "word": { @@ -1927582,7 +1940416,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְוָחָה": { "word": { @@ -1927674,12 +1940509,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f/w?/h~NI&" + "plurals_guid": "f/w?/h~NI&", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַוֵּחַ": { "word": { @@ -1928112,7 +1940950,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְוָחָה": { "word": { @@ -1928188,7 +1941027,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "רֶוַח|Noun|space, gap": { "word": { @@ -1928238,13 +1941078,7 @@ ], "confusables_guid": "v9g2/c@z-1", "examples": { - "vetted": [ - { - "text": "\" בִּזְכוּת הַתְּנוּעָה שֶׁל הַקָּהָל, נוֹצְרוּ פֹּה וָשָׁם רְוָחִים, וְיָכֹלְנוּ לְהַשְׁחִיל אֶת עַצְמֵנוּ אֲלֵיהֶם", - "source": "time_tunnel_75", - "match_method": "inflected" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -1928272,12 +1941106,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q>+3,K8Rit" + "plurals_guid": "Q>+3,K8Rit", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶוַח|Noun|profit, gain": { "word": { @@ -1928361,12 +1941198,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NfpZXw25zZ" + "plurals_guid": "NfpZXw25zZ", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִוּוּי": { "word": { @@ -1928432,12 +1941272,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eja_erAm,c" + "plurals_guid": "eja_erAm,c", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְווֹת": { "word": { @@ -1928867,7 +1941710,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְוָיָה": { "word": { @@ -1928927,12 +1941771,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EioaPZ_i=P" + "plurals_guid": "EioaPZ_i=P", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָווּי": { "word": { @@ -1928992,11 +1941839,12 @@ "nikkud": "רְווּיוֹת", "ktiv_male": "רוויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַוּוֹת": { "word": { @@ -1929729,7 +1942577,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִוְיוֹן": { "word": { @@ -1929789,12 +1942638,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l,/M(NaI2v" + "plurals_guid": "l,/M(NaI2v", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְווֹת": { "word": { @@ -1930540,7 +1943392,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָרִים": { "word": { @@ -1931297,7 +1944150,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָמָה": { "word": { @@ -1931390,12 +1944244,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cQ2LCwyxK7" + "plurals_guid": "cQ2LCwyxK7", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרוֹמֵם": { "word": { @@ -1931849,7 +1944706,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרוֹמֵם": { "word": { @@ -1932580,7 +1945438,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲרָמָה": { "word": { @@ -1932647,12 +1945506,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k{,ne.&0]r" + "plurals_guid": "k{,ne.&0]r", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּרוּמָה": { "word": { @@ -1932735,12 +1945597,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DMortV@PhP" + "plurals_guid": "DMortV@PhP", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָרוֹם": { "word": { @@ -1932833,12 +1945698,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s3^mE=Y,XN" + "plurals_guid": "s3^mE=Y,XN", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָם": { "word": { @@ -1932925,11 +1945793,12 @@ "nikkud": "רָמוֹת", "ktiv_male": "רמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָרִיעַ": { "word": { @@ -1933678,7 +1946547,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָרוּץ": { "word": { @@ -1934132,7 +1947002,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרוֹצֵץ": { "word": { @@ -1934586,7 +1947457,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִיצָה": { "word": { @@ -1934679,12 +1947551,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A0?;$o1eIq" + "plurals_guid": "A0?;$o1eIq", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְרִיצָה": { "word": { @@ -1934751,12 +1947626,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mnoXkaI@i6" + "plurals_guid": "mnoXkaI@i6", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָץ": { "word": { @@ -1934839,12 +1947717,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "cym?dD#nvG" + "plurals_guid": "cym?dD#nvG", + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֵרוֹץ": { "word": { @@ -1934927,7 +1947808,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְרוּצָה": { "word": { @@ -1934994,12 +1947876,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "fRR$Y=,s-_" + "plurals_guid": "fRR$Y=,s-_", + "mishkal": "mekula", + "mishkal_hebrew": "מְקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָרִיץ": { "word": { @@ -1935746,7 +1948631,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַוָּק": { "word": { @@ -1935799,11 +1948685,12 @@ "nikkud": "רַוָּקוֹת", "ktiv_male": "רווקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָז": { "word": { @@ -1935889,7 +1948776,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְזוֹת": { "word": { @@ -1936339,7 +1949227,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְזָיָה": { "word": { @@ -1936396,12 +1949285,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "g73<6.v2%M" + "plurals_guid": "g73<6.v2%M", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָזֶה": { "word": { @@ -1936484,11 +1949376,12 @@ "nikkud": "רָזוֹת", "ktiv_male": "רזות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְזוֹת": { "word": { @@ -1937215,7 +1950108,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹזֵן": { "word": { @@ -1937290,12 +1950184,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P_vZ+TcFy&" + "plurals_guid": "P_vZ+TcFy&", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְחֹב": { "word": { @@ -1937725,7 +1950622,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַחֵב": { "word": { @@ -1938181,7 +1951079,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְחָבָה": { "word": { @@ -1938266,12 +1951165,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "v8U=viv)CI" + "plurals_guid": "v8U=viv)CI", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְחָבָה": { "word": { @@ -1938334,12 +1951236,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cPCV/4fjq]" + "plurals_guid": "cPCV/4fjq]", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָחָב": { "word": { @@ -1938428,11 +1951333,12 @@ "nikkud": "רְחָבוֹת", "ktiv_male": "רחבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹחַב": { "word": { @@ -1938501,12 +1951407,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tttdK@9AB>" + "plurals_guid": "tttdK@9AB>", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְחוֹב": { "word": { @@ -1938601,12 +1951510,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jX7oa861nZ" + "plurals_guid": "jX7oa861nZ", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶרְחָב": { "word": { @@ -1938691,12 +1951603,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bVdbCGmX-N" + "plurals_guid": "bVdbCGmX-N", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִרְחָב": { "word": { @@ -1938759,11 +1951674,12 @@ "nikkud": "נִרְחָבוֹת", "ktiv_male": "נרחבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְחִיב": { "word": { @@ -1939522,7 +1952438,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶחֶם": { "word": { @@ -1939585,12 +1952502,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DyBY$|4khh" + "plurals_guid": "DyBY$|4khh", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַחֵם": { "word": { @@ -1939605,7 +1952525,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פִּיעֵל", - "meaning": "to pity, to have mercy (על)", + "meaning": "to pity, to have mercy", "meaning_raw": "to pity, to have mercy (על)", "audio_url": "https://audio.pealim.com/v0/7u/7uw2m9y29kpc.mp3", "audio_file": "לרחם.mp3", @@ -1940343,7 +1953263,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְהִתְרַחֵם": { "word": { @@ -1940358,7 +1953279,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to have mercy (על) (rare)", + "meaning": "to have mercy (rare)", "meaning_raw": "to have mercy (על) (rare)", "audio_url": "https://audio.pealim.com/v0/17/17mrt8uxuujup.mp3", "audio_file": "להתרחם.mp3", @@ -1940767,7 +1953688,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "רַחֲמִים": { "word": { @@ -1940855,7 +1953777,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַחְפָן": { "word": { @@ -1940916,12 +1953839,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OC2%{mI0fp" + "plurals_guid": "OC2%{mI0fp", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַחֵף": { "word": { @@ -1941667,7 +1954593,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְחֹץ": { "word": { @@ -1942094,7 +1955021,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְחִיצָה": { "word": { @@ -1942154,12 +1955082,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D[uoVeWP{=" + "plurals_guid": "D[uoVeWP{=", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּרְחִיץ": { "word": { @@ -1942225,12 +1955156,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "vqMs-Z14qr" + "plurals_guid": "vqMs-Z14qr", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַחְצָה": { "word": { @@ -1942296,12 +1955230,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tLp,7L#,4@" + "plurals_guid": "tLp,7L#,4@", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָחֵץ": { "word": { @@ -1942728,7 +1955665,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַחֵץ": { "word": { @@ -1943155,7 +1956093,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָחוּץ": { "word": { @@ -1943215,11 +1956154,12 @@ "nikkud": "רְחוּצוֹת", "ktiv_male": "רחוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְרַחֲקוּת": { "word": { @@ -1943287,12 +1956227,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "DX.Xg52PeR" + "plurals_guid": "DX.Xg52PeR", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְחָקָה": { "word": { @@ -1943354,12 +1956297,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GfckY>n4XH" + "plurals_guid": "GfckY>n4XH", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָחוֹק": { "word": { @@ -1943447,11 +1956393,12 @@ "nikkud": "רְחוֹקוֹת", "ktiv_male": "רחוקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מֶרְחָק": { "word": { @@ -1943545,12 +1956492,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xlvoDscFKZ" + "plurals_guid": "xlvoDscFKZ", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְחִיק": { "word": { @@ -1944308,7 +1957258,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַחֵק": { "word": { @@ -1945040,7 +1957991,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַחֵק": { "word": { @@ -1945495,7 +1958447,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְרֻחָק": { "word": { @@ -1945557,11 +1958510,12 @@ "nikkud": "מְרֻחָקוֹת", "ktiv_male": "מרוחקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְחֵק": { "word": { @@ -1945628,7 +1958582,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְרַחְרֵחַ": { "word": { @@ -1946373,7 +1959328,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְחֹשׁ": { "word": { @@ -1946818,7 +1959774,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַחֵשׁ": { "word": { @@ -1947268,7 +1960225,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּרְחִישׁ": { "word": { @@ -1947331,12 +1960289,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "As:ONLz%z^" + "plurals_guid": "As:ONLz%z^", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְרַחֲשׁוּת": { "word": { @@ -1947399,12 +1960360,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tF2Okffv%o" + "plurals_guid": "tF2Okffv%o", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹטֶב": { "word": { @@ -1947469,12 +1960433,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sEPh#hm`&y" + "plurals_guid": "sEPh#hm`&y", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָטֵב": { "word": { @@ -1947916,7 +1960883,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַטֵּב": { "word": { @@ -1948342,7 +1961310,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָטֹב": { "word": { @@ -1948422,11 +1961391,12 @@ "nikkud": "רְטֻבּוֹת", "ktiv_male": "רטובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְטִיב": { "word": { @@ -1949171,7 +1962141,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְטִיבוּת": { "word": { @@ -1949241,7 +1962212,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִטּוּט": { "word": { @@ -1949304,12 +1962276,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bdCoE4w" + "plurals_guid": "M:s1>CoE4w", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַמּוֹת": { "word": { @@ -1970411,7 +1983513,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּרְמִיל": { "word": { @@ -1970491,12 +1983594,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uoU~Wx/Zh2" + "plurals_guid": "uoU~Wx/Zh2", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְמֹס": { "word": { @@ -1970918,7 +1984024,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָמֵס": { "word": { @@ -1971340,7 +1984447,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַמְקוֹל": { "word": { @@ -1971426,7 +1984534,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְמֹשׂ": { "word": { @@ -1971848,7 +1984957,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶמֶשׂ": { "word": { @@ -1971909,12 +1985019,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zQRUm=KIIV" + "plurals_guid": "zQRUm=KIIV", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִנָּה": { "word": { @@ -1971979,12 +1985092,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n*(oSEFQ(3" + "plurals_guid": "n*(oSEFQ(3", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְנָנָה": { "word": { @@ -1972049,12 +1985165,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bN!NhvA}y0" + "plurals_guid": "bN!NhvA}y0", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרוֹנֵן": { "word": { @@ -1972480,7 +1985599,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַנֵּן": { "word": { @@ -1973209,7 +1986329,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְנִין": { "word": { @@ -1973938,7 +1987059,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָרֹן": { "word": { @@ -1974364,7 +1987486,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶסֶן": { "word": { @@ -1974425,12 +1987548,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LuTn|OLj36" + "plurals_guid": "LuTn|OLj36", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַסֵּן": { "word": { @@ -1975171,7 +1988297,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִסּוּס": { "word": { @@ -1975233,12 +1988360,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "BqD6.Bd.,s" + "plurals_guid": "BqD6.Bd.,s", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְסִיס": { "word": { @@ -1975326,12 +1988456,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "eMly$jBM9B" + "plurals_guid": "eMly$jBM9B", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַסֵּס": { "word": { @@ -1976083,7 +1989216,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְרַסְּקוּת": { "word": { @@ -1976146,12 +1989280,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "wQWp{Lly)F" + "plurals_guid": "wQWp{Lly)F", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַסֵּק": { "word": { @@ -1976596,7 +1989733,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַסֵּק": { "word": { @@ -1977339,7 +1990477,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶסֶק": { "word": { @@ -1977402,12 +1990541,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gRNcp@X%1R" + "plurals_guid": "gRNcp@X%1R", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֵעַ": { "word": { @@ -1977496,7 +1990638,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְעֹב": { "word": { @@ -1977947,7 +1991090,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָעָב": { "word": { @@ -1978022,12 +1991166,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "H(4JAau~fY" + "plurals_guid": "H(4JAau~fY", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָעֵב": { "word": { @@ -1978107,11 +1991254,12 @@ "nikkud": "רְעֵבוֹת", "ktiv_male": "רעבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְעַבְתָּן": { "word": { @@ -1978175,12 +1991323,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ig!7J6Qo)x" + "plurals_guid": "Ig!7J6Qo)x", + "mishkal": "ktaltan", + "mishkal_hebrew": "קְטַלְתָּן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְעִיב": { "word": { @@ -1978908,7 +1992059,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְעֹד": { "word": { @@ -1979359,7 +1992511,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעַד": { "word": { @@ -1979444,12 +1992597,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "shE^j,P1vL" + "plurals_guid": "shE^j,P1vL", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְעִידָה": { "word": { @@ -1979513,12 +1992669,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jZXsPT@T>a" + "plurals_guid": "jZXsPT@T>a", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְעִיד": { "word": { @@ -1980267,7 +1993426,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָעֵד": { "word": { @@ -1980692,7 +1993852,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֵעוּת": { "word": { @@ -1980746,7 +1993907,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְעוֹת": { "word": { @@ -1981191,7 +1994353,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעֲיוֹן": { "word": { @@ -1981280,12 +1994443,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ts{,VUab~2" + "plurals_guid": "ts{,VUab~2", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְעִית": { "word": { @@ -1981353,7 +1994519,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְעֶה": { "word": { @@ -1981416,12 +1994583,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w!K6F1.8@k" + "plurals_guid": "w!K6F1.8@k", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְעִידַת אֲדָמָה": { "word": { @@ -1981470,7 +1994640,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְעִילוּת": { "word": { @@ -1981541,7 +1994712,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְעָלָה": { "word": { @@ -1981607,12 +1994779,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "w^{0>OIQD," + "plurals_guid": "w^{0>OIQD,", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעַל": { "word": { @@ -1981678,12 +1994853,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e0CP!51J{" + "plurals_guid": "e0CP!51J{", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָעִיל": { "word": { @@ -1981743,11 +1994921,12 @@ "nikkud": "רְעִילוֹת", "ktiv_male": "רעילות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּרְעֵלָה": { "word": { @@ -1981813,12 +1994992,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "czY$z03/A<" + "plurals_guid": "czY$z03/A<", + "mishkal": "taktela", + "mishkal_hebrew": "תַּקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְעִיל": { "word": { @@ -1982564,7 +1995746,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָעוּל": { "word": { @@ -1982624,11 +1995807,12 @@ "nikkud": "רְעוּלוֹת", "ktiv_male": "רעולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְעֹם": { "word": { @@ -1983068,7 +1996252,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעַם": { "word": { @@ -1983157,12 +1996342,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gUGExBaxt6" + "plurals_guid": "gUGExBaxt6", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְעִים": { "word": { @@ -1983889,7 +1997077,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַעֵם": { "word": { @@ -1984313,7 +1997502,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַעְנֵן": { "word": { @@ -1984738,7 +1997928,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִעְנוּן": { "word": { @@ -1984802,12 +1997993,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hc<:IGX(h6" + "plurals_guid": "Hc<:IGX(h6", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַעְנֵן": { "word": { @@ -1985535,7 +1998729,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעֲנָן": { "word": { @@ -1985613,7 +1998808,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָרֵעַ": { "word": { @@ -1985628,7 +1998824,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִפְעִיל", - "meaning": "to harm, to do evil to (ל־)", + "meaning": "to harm, to do evil to", "meaning_raw": "to harm, to do evil to (ל־)", "audio_url": "https://audio.pealim.com/v0/1j/1jp1thevgkkgp.mp3", "audio_file": "להרע.mp3", @@ -1986341,7 +1999537,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לְהִתְרוֹעֵעַ": { "word": { @@ -1986766,7 +1999963,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַע": { "word": { @@ -1986846,11 +2000044,12 @@ "nikkud": "רָעוֹת", "ktiv_male": "רעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹעַ": { "word": { @@ -1986929,12 +2000128,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v^GkbST,s5" + "plurals_guid": "v^GkbST,s5", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָעוּעַ": { "word": { @@ -1987008,11 +2000210,12 @@ "nikkud": "רְעוּעוֹת", "ktiv_male": "רעועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעַף": { "word": { @@ -1987089,12 +2000292,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "NbsGwa*KU`" + "plurals_guid": "NbsGwa*KU`", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְעִיף": { "word": { @@ -1987819,7 +2001025,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְעֹץ": { "word": { @@ -1988241,7 +2001448,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָעֵץ": { "word": { @@ -1988663,7 +2001871,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְעֹשׁ": { "word": { @@ -1989088,7 +2002297,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעַשׁ": { "word": { @@ -1989178,12 +2002388,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f+w1~G-w%r" + "plurals_guid": "f+w1~G-w%r", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָעֵשׁ": { "word": { @@ -1989608,7 +2002821,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְעִישׁ": { "word": { @@ -1990352,7 +2003566,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַעֲשָׁן": { "word": { @@ -1990421,7 +2003636,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹפֵא": { "word": { @@ -1990489,12 +2003705,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r!vi(3,d@a" + "plurals_guid": "r!vi(3,d@a", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְפֹּא": { "word": { @@ -1990923,7 +2004142,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָפֵא": { "word": { @@ -1991352,7 +2004572,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַפֵּא": { "word": { @@ -1991781,7 +2005002,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְפָּאָה": { "word": { @@ -1991849,12 +2005071,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cu:KY,WlLE" + "plurals_guid": "cu:KY,WlLE", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְפוּאָה": { "word": { @@ -1991938,12 +2005163,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IGoR*N2)2a" + "plurals_guid": "IGoR*N2)2a", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּרוּפָה": { "word": { @@ -1992016,7 +2005244,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְפוּאִי": { "word": { @@ -1992082,7 +2005311,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַפֵּא": { "word": { @@ -1992814,7 +2006044,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִפּוּד": { "word": { @@ -1992876,12 +2006107,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "dYlk95[4Ar" + "plurals_guid": "dYlk95[4Ar", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַפֵּד": { "word": { @@ -1993607,7 +2006841,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְפִידָה": { "word": { @@ -1993669,12 +2006904,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "IZ{9a@ULHO" + "plurals_guid": "IZ{9a@ULHO", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַפֵּט": { "word": { @@ -1994096,7 +2007334,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַפֵּט": { "word": { @@ -1994837,7 +2008076,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִפּוּי": { "word": { @@ -1994904,12 +2008144,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xSi$%|U?Z;" + "plurals_guid": "xSi$%|U?Z;", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַפּוֹת": { "word": { @@ -1995337,7 +2008580,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְפָּיָה": { "word": { @@ -1995404,12 +2008648,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NIC&qIj9no" + "plurals_guid": "NIC&qIj9no", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְפּוֹת": { "word": { @@ -1995849,7 +2009096,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִפְיוֹן": { "word": { @@ -1995932,12 +2009180,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "j:Y[8ct,UL" + "plurals_guid": "j:Y[8ct,UL", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָפוּי": { "word": { @@ -1995998,11 +2009249,12 @@ "nikkud": "רְפוּיוֹת", "ktiv_male": "רפויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַפּוֹת": { "word": { @@ -1996736,7 +2009988,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְפּוֹת": { "word": { @@ -1997493,7 +2010746,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַפֵּס": { "word": { @@ -1997918,7 +2011172,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְפֶּסֶת": { "word": { @@ -1998003,12 +2011258,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "d==6)dF~a_" + "plurals_guid": "d==6)dF~a_", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְפִיסוּת": { "word": { @@ -1998071,7 +2011329,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְרַפְּסוּת": { "word": { @@ -1998135,12 +2011394,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "NS4PMv{3qO" + "plurals_guid": "NS4PMv{3qO", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָפוּס": { "word": { @@ -1998198,11 +2011460,12 @@ "nikkud": "רְפוּסוֹת", "ktiv_male": "רפוסות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרוֹפֵף": { "word": { @@ -1998625,7 +2011888,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹפֵף": { "word": { @@ -1998697,11 +2011961,12 @@ "nikkud": "רוֹפְפוֹת", "ktiv_male": "רופפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַף": { "word": { @@ -1998763,12 +2012028,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hc?iWJGA_>" + "plurals_guid": "hc?iWJGA_>", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְפֵּק": { "word": { @@ -1998855,12 +2012123,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "sJ:VrQt{|M" + "plurals_guid": "sJ:VrQt{|M", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַפֵּק": { "word": { @@ -1998875,7 +2012146,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to hug, to cling to; to remember fondly (על)", + "meaning": "to hug, to cling to; to remember fondly", "meaning_raw": "to hug, to cling to; to remember fondly (על)", "audio_url": "https://audio.pealim.com/v0/em/emlplgrd1aeb.mp3", "audio_file": "להתרפק.mp3", @@ -1999282,7 +2012553,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "לְרַפְרֵף": { "word": { @@ -2000024,7 +2013296,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִפְרוּף": { "word": { @@ -2000086,12 +2013359,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hn/6:g86fp" + "plurals_guid": "Hn/6:g86fp", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶפֶשׁ": { "word": { @@ -2000150,12 +2013426,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "l~MIkX^P0%" + "plurals_guid": "l~MIkX^P0%", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶפֶת": { "word": { @@ -2000240,12 +2013519,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "G@qrbl;.YW" + "plurals_guid": "G@qrbl;.YW", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְצָאָה": { "word": { @@ -2000304,12 +2013586,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A6tjkvn{c$" + "plurals_guid": "A6tjkvn{c$", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַצֵּד": { "word": { @@ -2000729,7 +2014014,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶצַח": { "word": { @@ -2000802,12 +2014088,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Li~d[ECsrz" + "plurals_guid": "Li~d[ECsrz", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְצֹחַ": { "word": { @@ -2001231,7 +2014520,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָצֵחַ": { "word": { @@ -2001671,7 +2014961,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַצְחָנִי": { "word": { @@ -2001732,7 +2015023,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְצוֹת": { "word": { @@ -2002180,7 +2015472,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַצּוֹת": { "word": { @@ -2002606,7 +2015899,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָצוֹן": { "word": { @@ -2002697,12 +2015991,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "iWA$omc.Wv" + "plurals_guid": "iWA$omc.Wv", + "mishkal": "katon", + "mishkal_hebrew": "קָטוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְצוֹת": { "word": { @@ -2003431,7 +2016728,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַצּוֹת": { "word": { @@ -2004182,7 +2017480,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָצוּי": { "word": { @@ -2004257,11 +2017556,12 @@ "nikkud": "רְצוּיוֹת", "ktiv_male": "רצויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְצִינִי": { "word": { @@ -2004343,11 +2017643,12 @@ "nikkud": "רְצִינִיּוֹת", "ktiv_male": "רציניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְצִינוּת": { "word": { @@ -2004434,7 +2017735,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְצִין": { "word": { @@ -2004873,7 +2018175,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְצֵעַ": { "word": { @@ -2004934,12 +2018237,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zLrUBqAiZw" + "plurals_guid": "zLrUBqAiZw", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְצוּעָה": { "word": { @@ -2005026,12 +2018332,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "iV{@k)abW=" + "plurals_guid": "iV{@k)abW=", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִצּוּף": { "word": { @@ -2005097,12 +2018406,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J38*pf9#xw" + "plurals_guid": "J38*pf9#xw", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִצְפָּה": { "word": { @@ -2005194,12 +2018506,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "O0l/$auxuW" + "plurals_guid": "O0l/$auxuW", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָצִיף|Noun": { "word": { @@ -2005277,12 +2018592,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Bm}F-5(;]e" + "plurals_guid": "Bm}F-5(;]e", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָצִיף|Adjective": { "word": { @@ -2005345,11 +2018663,12 @@ "nikkud": "רְצִיפוֹת", "ktiv_male": "רציפות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶצֶף": { "word": { @@ -2005415,12 +2018734,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xP9z&zgG9@" + "plurals_guid": "xP9z&zgG9@", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַצֵּף": { "word": { @@ -2006150,7 +2019472,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְצֶפֶת": { "word": { @@ -2006216,12 +2019539,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y^TY:7(0Cu" + "plurals_guid": "y^TY:7(0Cu", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרוֹצֵץ": { "word": { @@ -2006946,7 +2020272,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָצוּץ": { "word": { @@ -2007001,11 +2020328,12 @@ "nikkud": "רְצוּצוֹת", "ktiv_male": "רצוצות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַק": { "word": { @@ -2007064,7 +2020392,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִרְקֹב": { "word": { @@ -2007490,7 +2020819,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָקֵב": { "word": { @@ -2007916,7 +2021246,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָקָב": { "word": { @@ -2007975,12 +2021306,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N&pzHTX>(d" + "plurals_guid": "N&pzHTX>(d", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִקָּבוֹן": { "word": { @@ -2008039,12 +2021373,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qRJq)j{f25" + "plurals_guid": "qRJq)j{f25", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָקוּב": { "word": { @@ -2008103,11 +2021440,12 @@ "nikkud": "רְקוּבוֹת", "ktiv_male": "רקובות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְקִיב": { "word": { @@ -2008533,7 +2021871,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְקֹד": { "word": { @@ -2008985,7 +2022324,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִקּוּד": { "word": { @@ -2009076,12 +2022416,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ibcroQeT7c" + "plurals_guid": "ibcroQeT7c", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַקְדָן": { "word": { @@ -2009146,12 +2022489,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wEyWzt,wvc" + "plurals_guid": "wEyWzt,wvc", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָקִיד": { "word": { @@ -2009210,11 +2022556,12 @@ "nikkud": "רְקִידוֹת", "ktiv_male": "רקידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַקֵּד": { "word": { @@ -2009959,7 +2023306,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְקִיד": { "word": { @@ -2010385,7 +2023733,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹקְחוּת": { "word": { @@ -2010447,7 +2023796,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְקֹחַ": { "word": { @@ -2010871,7 +2024221,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹקֵחַ": { "word": { @@ -2010934,12 +2024285,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M7*X^S?QT6" + "plurals_guid": "M7*X^S?QT6", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְקַחַת": { "word": { @@ -2011002,12 +2024356,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yVZQqEv7[<" + "plurals_guid": "yVZQqEv7[<", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָקֶטָה": { "word": { @@ -2011067,7 +2024424,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַקֵּם": { "word": { @@ -2011492,7 +2024850,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִקְמָה": { "word": { @@ -2011556,12 +2024915,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e]ZtH_+r*&" + "plurals_guid": "e]ZtH_+r*&", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָקֵם": { "word": { @@ -2012002,7 +2025364,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְקֹם": { "word": { @@ -2012443,7 +2025806,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְקָם": { "word": { @@ -2012507,12 +2025871,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "CQQ&4(dL5Y" + "plurals_guid": "CQQ&4(dL5Y", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָקִיעַ": { "word": { @@ -2012578,12 +2025945,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "u@x^tsAQ.$" + "plurals_guid": "u@x^tsAQ.$", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְקָע": { "word": { @@ -2012649,12 +2026019,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HvIxQ[Na7V" + "plurals_guid": "HvIxQ[Na7V", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַקֵּעַ": { "word": { @@ -2013384,7 +2026757,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָקוּעַ": { "word": { @@ -2013444,11 +2026818,12 @@ "nikkud": "רְקוּעוֹת", "ktiv_male": "רקועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶקַע": { "word": { @@ -2013540,12 +2026915,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "edQB9KGWy3" + "plurals_guid": "edQB9KGWy3", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְקִיעַ": { "word": { @@ -2014275,7 +2027653,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְקֹעַ": { "word": { @@ -2014290,7 +2027669,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to trample, to stomp (על); to stretch something (biblical)", + "meaning": "to trample, to stomp ; to stretch something (biblical)", "meaning_raw": "to trample, to stomp (על); to stretch something (biblical)", "audio_url": "https://audio.pealim.com/v0/1h/1hdimbv9bk19u.mp3", "audio_file": "לרקוע.mp3", @@ -2014702,7 +2028081,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "רַקָּה": { "word": { @@ -2014761,12 +2028141,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hSr0EK.%n5" + "plurals_guid": "hSr0EK.%n5", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַשַּׁאי": { "word": { @@ -2014819,11 +2028202,12 @@ "nikkud": "רַשָּׁאִיּוֹת", "ktiv_male": "רשאיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְשׁוּת": { "word": { @@ -2014909,12 +2028293,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָשׁוּת": { "word": { @@ -2014981,12 +2028368,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "nXTVEhhQKj" + "plurals_guid": "nXTVEhhQKj", + "mishkal": "katut", + "mishkal_hebrew": "קָטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִשּׁוּי": { "word": { @@ -2015050,12 +2028440,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lNDAp^,/t+" + "plurals_guid": "lNDAp^,/t+", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְשׁוֹת": { "word": { @@ -2015840,7 +2029233,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִשָּׁיוֹן": { "word": { @@ -2015920,12 +2029314,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oyBC9-Z6[0" + "plurals_guid": "oyBC9-Z6[0", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְרַשְּׁלוּת": { "word": { @@ -2015988,12 +2029385,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q#LekV/dwB" + "plurals_guid": "Q#LekV/dwB", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַשֵּׁל": { "word": { @@ -2016417,7 +2029817,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַשְׁלָנוּת": { "word": { @@ -2016479,7 +2029880,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רַשְׁלָן": { "word": { @@ -2016536,11 +2029938,12 @@ "nikkud": "רַשְׁלָנִיּוֹת", "ktiv_male": "רשלניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַשֵּׁם": { "word": { @@ -2016974,7 +2030377,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִתְרַשְּׁמוּת": { "word": { @@ -2017047,12 +2030451,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "C_VqFwIEvM" + "plurals_guid": "C_VqFwIEvM", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִשְׁמִי": { "word": { @@ -2017123,7 +2030530,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְשָׁמָה": { "word": { @@ -2017196,12 +2030604,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "c3m))9duUE" + "plurals_guid": "c3m))9duUE", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּרְשִׁים": { "word": { @@ -2017274,12 +2030685,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "q^|s;w#S$L" + "plurals_guid": "q^|s;w#S$L", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹשֶׁם": { "word": { @@ -2017352,12 +2030766,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bQWBFM)LA>" + "plurals_guid": "bQWBFM)LA>", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְשִׁימָה": { "word": { @@ -2017456,12 +2030873,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L/Xu-];,GR" + "plurals_guid": "L/Xu-];,GR", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְשִׁים": { "word": { @@ -2017554,11 +2030974,12 @@ "nikkud": "מַרְשִׁימוֹת", "ktiv_male": "מרשימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָשֵׁם": { "word": { @@ -2018008,7 +2031429,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְשִׁים": { "word": { @@ -2018771,7 +2032193,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְשֹׁם": { "word": { @@ -2019231,7 +2032654,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָשׁוּם": { "word": { @@ -2019319,11 +2032743,12 @@ "nikkud": "רְשׁוּמוֹת", "ktiv_male": "רשומות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִשּׁוּם": { "word": { @@ -2019396,12 +2032821,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "bFGn)EC#71" + "plurals_guid": "bFGn)EC#71", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִרְשָׁם": { "word": { @@ -2019474,12 +2032902,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jh8_rRFc/H" + "plurals_guid": "jh8_rRFc/H", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רָשָׁע": { "word": { @@ -2019547,12 +2032978,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶשַׁע": { "word": { @@ -2019620,12 +2033054,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f7K4EC}/f1" + "plurals_guid": "f7K4EC}/f1", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִשְׁעָה": { "word": { @@ -2019690,12 +2033127,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "mUTVu;^?sQ" + "plurals_guid": "mUTVu;^?sQ", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַרְשָׁעָה": { "word": { @@ -2019760,12 +2033200,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Cu}{.=IqnJ" + "plurals_guid": "Cu}{.=IqnJ", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְשִׁיעַ": { "word": { @@ -2020494,7 +2033937,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְרֻשָּׁע": { "word": { @@ -2020553,11 +2033997,12 @@ "nikkud": "מְרֻשָּׁעוֹת", "ktiv_male": "מרושעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶשֶׁף": { "word": { @@ -2020618,12 +2034063,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F,E[pxO,Pf" + "plurals_guid": "F,E[pxO,Pf", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְשֹׁף": { "word": { @@ -2021045,7 +2034493,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַשְׁרֵשׁ": { "word": { @@ -2021771,7 +2035220,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִשְׁרוּשׁ": { "word": { @@ -2021843,12 +2035293,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "m<`kZV`I^+" + "plurals_guid": "m<`kZV`I^+", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרוֹשֵׁשׁ|Verb|to ruin, to destroy, to impoverish (biblical)": { "word": { @@ -2022574,7 +2036027,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֶשֶׁת": { "word": { @@ -2022649,12 +2036103,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hlx>gjNf^H" + "plurals_guid": "hlx>gjNf^H", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְתֹּחַ": { "word": { @@ -2023100,7 +2036557,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתְרַתֵּחַ": { "word": { @@ -2023525,7 +2036983,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רוֹתֵחַ": { "word": { @@ -2023599,11 +2037058,12 @@ "nikkud": "רוֹתְחוֹת", "ktiv_male": "רותחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רְתִיחָה": { "word": { @@ -2023661,12 +2037121,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "CJ-G>elRQK" + "plurals_guid": "CJ-G>elRQK", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְתִּיחַ": { "word": { @@ -2024394,7 +2037857,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַתּוֹת": { "word": { @@ -2024814,7 +2038278,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רִתּוּךְ": { "word": { @@ -2024875,12 +2038340,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jz0~hYtNB@" + "plurals_guid": "jz0~hYtNB@", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַתֵּךְ": { "word": { @@ -2025605,7 +2039073,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "רֹתֶם": { "word": { @@ -2025667,12 +2039136,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t[?oOte>Ao" + "plurals_guid": "t[?oOte>Ao", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִרְתֹּם": { "word": { @@ -2026095,7 +2039567,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָתֵם": { "word": { @@ -2026539,7 +2040012,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהֵרָתֵעַ": { "word": { @@ -2026982,7 +2040456,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַרְתִּיעַ": { "word": { @@ -2027723,7 +2041198,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַרְתֵּף": { "word": { @@ -2027808,12 +2041284,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "P+G@uOUjq2" + "plurals_guid": "P+G@uOUjq2", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְרַתֵּק": { "word": { @@ -2028554,7 +2042033,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְרַתֵּק": { "word": { @@ -2028609,11 +2042089,12 @@ "nikkud": "מְרַתְּקוֹת", "ktiv_male": "מרתקות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁ": { "word": { @@ -2028672,7 +2042153,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִשְׁאֹב": { "word": { @@ -2029122,7 +2042604,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁאֵב": { "word": { @@ -2029572,7 +2043055,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁאָב": { "word": { @@ -2029635,12 +2043119,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qTeSZ(L[A7" + "plurals_guid": "qTeSZ(L[A7", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁאֵבָה": { "word": { @@ -2029703,12 +2043190,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "in=;8,d8`g" + "plurals_guid": "in=;8,d8`g", + "mishkal": "maktela", + "mishkal_hebrew": "מַקְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁאֹג": { "word": { @@ -2030154,7 +2043644,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתָּאוֹת": { "word": { @@ -2030576,7 +2044067,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שׁוֹאָה": { "word": { @@ -2030668,7 +2044160,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁאֹל": { "word": { @@ -2031155,7 +2044648,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁאֵל": { "word": { @@ -2031606,7 +2045100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁאֵלָה": { "word": { @@ -2031701,12 +2045196,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "cw;Q,fpP6D" + "plurals_guid": "cw;Q,fpP6D", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁאָלָה": { "word": { @@ -2031775,12 +2045273,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "yXjQ4bV>{o" + "plurals_guid": "yXjQ4bV>{o", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁאָל": { "word": { @@ -2031865,12 +2045366,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Mi9Cp?f.J=" + "plurals_guid": "Mi9Cp?f.J=", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁאִילָה": { "word": { @@ -2031939,12 +2045443,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A%Y]#FK!~q" + "plurals_guid": "A%Y]#FK!~q", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁאֵלוֹן": { "word": { @@ -2032018,7 +2045525,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁאִיל": { "word": { @@ -2032751,7 +2046259,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁאוּל": { "word": { @@ -2032814,11 +2046323,12 @@ "nikkud": "שְׁאוּלוֹת", "ktiv_male": "שאולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁאָלָה": { "word": { @@ -2032908,12 +2046418,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jXYR)MtN{y" + "plurals_guid": "jXYR)MtN{y", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁאֲנָן": { "word": { @@ -2032971,7 +2046484,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁאֹף": { "word": { @@ -2033421,7 +2046935,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁאֵף": { "word": { @@ -2033845,7 +2047360,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁאִיפָה": { "word": { @@ -2033924,12 +2047440,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "vkB/ke5_`8" + "plurals_guid": "vkB/ke5_`8", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁאֵף": { "word": { @@ -2033992,12 +2047511,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "I43>X6AJx1" + "plurals_guid": "I43>X6AJx1", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁאֵר": { "word": { @@ -2034479,7 +2048001,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁאָר": { "word": { @@ -2034558,12 +2048081,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uS}Z1?I3k_" + "plurals_guid": "uS}Z1?I3k_", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁאִיר": { "word": { @@ -2035317,7 +2048843,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂאוֹר": { "word": { @@ -2035370,12 +2048897,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "HS+5gqw1]A" + "plurals_guid": "HS+5gqw1]A", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁאֵרִית": { "word": { @@ -2035460,7 +2048990,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִשָּׁאֲרוּת": { "word": { @@ -2035518,12 +2049049,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Il&R4}Lc1p" + "plurals_guid": "Il&R4}Lc1p", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבִיב": { "word": { @@ -2035584,12 +2049118,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "AU09Xs=CCG" + "plurals_guid": "AU09Xs=CCG", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבָב": { "word": { @@ -2035650,12 +2049187,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uVo#CaF_08" + "plurals_guid": "uVo#CaF_08", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁבַח": { "word": { @@ -2035718,12 +2049258,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "pav<}+M4(|" + "plurals_guid": "pav<}+M4(|", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁבֵּחַ": { "word": { @@ -2036450,7 +2049993,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּבֵּחַ": { "word": { @@ -2036874,7 +2050418,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁבִּיחַ": { "word": { @@ -2037601,7 +2051146,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵׁבֶט": { "word": { @@ -2037663,12 +2051209,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "o|,!!2jS`=" + "plurals_guid": "o|,!!2jS`=", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁבְטִי": { "word": { @@ -2037728,7 +2051277,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁבֵּט": { "word": { @@ -2038454,7 +2052004,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁבוֹת": { "word": { @@ -2038878,7 +2052429,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁבּוֹת": { "word": { @@ -2039305,7 +2052857,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁבוּי": { "word": { @@ -2039362,11 +2052915,12 @@ "nikkud": "שְׁבוּיוֹת", "ktiv_male": "שבויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁבִי": { "word": { @@ -2039423,12 +2052977,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wrk0GkE4wV" + "plurals_guid": "wrk0GkE4wV", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁבֹּלֶת": { "word": { @@ -2039489,12 +2053046,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "r_mjzE^>ZV" + "plurals_guid": "r_mjzE^>ZV", + "mishkal": "kittolet", + "mishkal_hebrew": "קִטֹּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבִיל": { "word": { @@ -2039581,12 +2053141,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d}=5uSytol" + "plurals_guid": "d}=5uSytol", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁבְעָתַיִם": { "word": { @@ -2039648,7 +2053211,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "שְׂבִיעָה": { "word": { @@ -2039711,12 +2053275,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x;8S}Ce`:e" + "plurals_guid": "x;8S}Ce`:e", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׂבֹּעַ": { "word": { @@ -2040156,7 +2053723,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבִיעִי": { "word": { @@ -2040218,11 +2053786,12 @@ "nikkud": "שְׁבִיעִיּוֹת", "ktiv_male": "שביעיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבוּעָה": { "word": { @@ -2040311,12 +2053880,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "j/GC_2xMuG" + "plurals_guid": "j/GC_2xMuG", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁבוּעַ": { "word": { @@ -2040410,12 +2053982,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DEeXj;N0&k" + "plurals_guid": "DEeXj;N0&k", + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבוּעִי": { "word": { @@ -2040481,7 +2054056,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבוּעַיִם": { "word": { @@ -2040545,7 +2054121,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁבֵעַ": { "word": { @@ -2041000,7 +2054577,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁבִּיעַ": { "word": { @@ -2041749,7 +2055327,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׂבִּיעַ": { "word": { @@ -2042479,7 +2056058,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂבֵעַ": { "word": { @@ -2042565,11 +2056145,12 @@ "nikkud": "שְׂבֵעוֹת", "ktiv_male": "שבעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁבַע": { "word": { @@ -2042637,7 +2056218,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לְהִשְׁתַּבֵּץ": { "word": { @@ -2043061,7 +2056643,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁבֶּצֶת": { "word": { @@ -2043140,12 +2056723,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P>4F6Vql>q" + "plurals_guid": "P>4F6Vql>q", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁבֵּץ": { "word": { @@ -2043888,7 +2057474,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁבָץ": { "word": { @@ -2043951,12 +2057538,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wz,&.1*" + "plurals_guid": "J+?xa:>.1*", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁבֶר": { "word": { @@ -2045506,12 +2059105,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "GQNp5MI^J&" + "plurals_guid": "GQNp5MI^J&", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁבִיר": { "word": { @@ -2045591,11 +2059193,12 @@ "nikkud": "שְׁבִירוֹת", "ktiv_male": "שבירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁבוּר": { "word": { @@ -2045675,11 +2059278,12 @@ "nikkud": "שְׁבוּרוֹת", "ktiv_male": "שבורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁבִּיר": { "word": { @@ -2046110,7 +2059714,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁבְרִיר": { "word": { @@ -2046211,7 +2059816,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁבְרִירִי": { "word": { @@ -2046300,7 +2059906,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁבֵּר": { "word": { @@ -2047060,7 +2060667,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁבּוּשׁ": { "word": { @@ -2047138,12 +2060746,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jg=+6Sm;v." + "plurals_guid": "jg=+6Sm;v.", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּבֵּשׁ": { "word": { @@ -2047592,7 +2061203,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁבֵּשׁ": { "word": { @@ -2048339,7 +2061951,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁבִיתָה": { "word": { @@ -2048419,12 +2062032,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "AU/T)1;d!W" + "plurals_guid": "AU/T)1;d!W", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁבָּת": { "word": { @@ -2048514,7 +2062130,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁבְּתַאי": { "word": { @@ -2048574,7 +2062191,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁבִּית": { "word": { @@ -2049302,7 +2062920,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁבֹּת": { "word": { @@ -2049730,7 +2063349,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁגִיאָה": { "word": { @@ -2049805,12 +2063425,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ht7#70eo1/" + "plurals_guid": "ht7#70eo1/", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "נִשְׂגָּב": { "word": { @@ -2049865,11 +2063488,12 @@ "nikkud": "נִשְׂגָּבוֹת", "ktiv_male": "נשגבות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "niktal", + "mishkal_hebrew": "נִקְטָל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׂגָּב": { "word": { @@ -2049930,12 +2063554,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f}g,?,{P5P" + "plurals_guid": "f}g,?,{P5P", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁגֹּג": { "word": { @@ -2050355,7 +2063982,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁגָּחָה": { "word": { @@ -2050417,12 +2064045,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "x];vlUBUTd" + "plurals_guid": "x];vlUBUTd", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁגִּיחַ": { "word": { @@ -2050500,12 +2064131,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d9(>Z3hjc8" + "plurals_guid": "d9(>Z3hjc8", + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁגִּיחַ": { "word": { @@ -2051252,7 +2064886,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁגּוֹת": { "word": { @@ -2051675,7 +2065310,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁגוּי": { "word": { @@ -2051731,11 +2065367,12 @@ "nikkud": "שְׁגוּיוֹת", "ktiv_male": "שגויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁגָּיוֹן": { "word": { @@ -2051797,12 +2065434,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Lc3UFDNnp[" + "plurals_guid": "Lc3UFDNnp[", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁגָּל": { "word": { @@ -2051861,12 +2065501,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IxXITs]q=o" + "plurals_guid": "IxXITs]q=o", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְשֻׁגָּע": { "word": { @@ -2051949,11 +2065592,12 @@ "nikkud": "מְשֻׁגָּעוֹת", "ktiv_male": "משוגעות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּגֵּעַ": { "word": { @@ -2052403,7 +2066047,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁגֵּעַ": { "word": { @@ -2053156,7 +2066801,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁגָּעוֹן": { "word": { @@ -2053219,12 +2066865,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n|r%`-Q6Q&" + "plurals_guid": "n|r%`-Q6Q&", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁגּוּר": { "word": { @@ -2053288,12 +2066937,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Fp}+4^dk?C" + "plurals_guid": "Fp}+4^dk?C", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁגוּר": { "word": { @@ -2053351,11 +2067003,12 @@ "nikkud": "שְׁגוּרוֹת", "ktiv_male": "שגורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁגֵּר": { "word": { @@ -2054099,7 +2067752,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁגְרָתִי": { "word": { @@ -2054161,7 +2067815,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁגְרָה": { "word": { @@ -2054219,12 +2067874,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D<88Pn9Y%j" + "plurals_guid": "D<88Pn9Y%j", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁגְרִירוּת": { "word": { @@ -2054291,7 +2067949,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁגְרִיר": { "word": { @@ -2054369,12 +2068028,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N.Q1*JH8@D" + "plurals_guid": "N.Q1*JH8@D", + "mishkal": "kattil", + "mishkal_hebrew": "קַטִּיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׂגְשׂוּג": { "word": { @@ -2054436,12 +2068098,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EfFT|Z8ATQ" + "plurals_guid": "EfFT|Z8ATQ", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׂגְשֵׂג": { "word": { @@ -2055167,7 +2068832,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁד": { "word": { @@ -2055230,7 +2068896,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵׁד": { "word": { @@ -2055293,7 +2068960,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֹׁד": { "word": { @@ -2055349,12 +2069017,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wJ2IR,+L}/" + "plurals_guid": "wJ2IR,+L}/", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁדֹּד": { "word": { @@ -2055803,7 +2069474,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁדֵד": { "word": { @@ -2056226,7 +2069898,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂדֶה": { "word": { @@ -2056312,7 +2069985,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂדֵה תְּעוּפָה": { "word": { @@ -2056361,7 +2070035,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁדּוּךְ": { "word": { @@ -2056424,12 +2070099,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N)I6f+C0J-" + "plurals_guid": "N)I6f+C0J-", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁדְכָן": { "word": { @@ -2056492,12 +2070170,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "oFuS+Z{[yA" + "plurals_guid": "oFuS+Z{[yA", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּדֵּךְ": { "word": { @@ -2056512,7 +2070193,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to be matched with someone (עם); to court, to seek marriage (אל); to hook up with someone (עם)", + "meaning": "to be matched with someone ; to court, to seek marriage ; to hook up with someone", "meaning_raw": "to be matched with someone (עם); to court, to seek marriage (אל); to hook up with someone (עם)", "audio_url": "https://audio.pealim.com/v0/1r/1rgpk6loerety.mp3", "audio_file": "להשתדך.mp3", @@ -2056921,7 +2070602,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "עם אל עם" }, "לְשַׁדֵּךְ": { "word": { @@ -2057648,7 +2071330,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִשְׁתַּדְּלוּת": { "word": { @@ -2057710,12 +2071393,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Gwj19unDG*" + "plurals_guid": "Gwj19unDG*", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּדֵּל": { "word": { @@ -2058164,7 +2071850,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁדֵּל": { "word": { @@ -2058890,7 +2072577,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁדּוּר": { "word": { @@ -2058954,12 +2072642,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jg9/xBU@Vl" + "plurals_guid": "jg9/xBU@Vl", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁדֵּר": { "word": { @@ -2059035,12 +2072726,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁדָּר": { "word": { @@ -2059107,12 +2072801,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "kO@7d>4l+L" + "plurals_guid": "kO@7d>4l+L", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂדֵרָה": { "word": { @@ -2059171,12 +2072868,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ihPFJ" + "plurals_guid": "n*.cQ}b^>J", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שׁוֹטֶה": { "word": { @@ -2092472,11 +2106369,12 @@ "nikkud": "שׁוֹטוֹת", "ktiv_male": "שוטות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁטּוֹת": { "word": { @@ -2093203,7 +2107101,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁטָּפוֹן": { "word": { @@ -2093267,12 +2107166,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s9j/hAEtGh" + "plurals_guid": "s9j/hAEtGh", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁטֹף": { "word": { @@ -2093713,7 +2107615,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁטֵף": { "word": { @@ -2094138,7 +2108041,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁטִיפָה": { "word": { @@ -2094202,12 +2108106,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QI@TK^1" + "plurals_guid": "zTY;E>TK^1", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׂיחַ|Noun|conversation, discourse (lit.)": { "word": { @@ -2097581,23 +2111512,7 @@ ], "confusables_guid": "dce6Vlw|lA", "examples": { - "vetted": [ - { - "text": "\" וְאָז, בִּפְנוֹתָהּ לְעֵבֶר שִׂיחַ הַוְּרָדִים, הִמְשִׁיכָה, \"בְּמָה בְּדִיּוּק הִתְעַסַּקְתֶּם כָּאן", - "source": "alice_wonderland", - "match_method": "direct" - }, - { - "text": "\" לֹא הֵבַנְתִּי לָמָּה חָשׁוּב כָּל כָּךְ שֶׁכְּבָשִׂים אוֹכְלוֹת שִׂיחִים", - "source": "little_prince", - "match_method": "inflected" - }, - { - "text": "פַּעַם הִכַּרְתִּי כּוֹכָב שֶׁגָּר עָלָיו עַצְלָן אֶחָד, וְהוּא הִזְנִיחַ שְׁלוֹשָׁה שִׂיחִים", - "source": "little_prince", - "match_method": "inflected" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -2097625,7 +2111540,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׂיחַ|Noun|bush, shrub": { "word": { @@ -2097707,7 +2111623,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁיָּט": { "word": { @@ -2097770,12 +2111687,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁיֵּט": { "word": { @@ -2098199,7 +2112119,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁיּוּט": { "word": { @@ -2098262,12 +2112183,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "AF!3Y4N?}~" + "plurals_guid": "AF!3Y4N?}~", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁיִט": { "word": { @@ -2098330,12 +2112254,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DF~LE{d$]I" + "plurals_guid": "DF~LE{d$]I", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁי": { "word": { @@ -2098395,7 +2112322,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁיִשׁ": { "word": { @@ -2098450,7 +2112378,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁיֵּךְ": { "word": { @@ -2099176,7 +2113105,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּיֵּךְ": { "word": { @@ -2099599,7 +2113529,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁיָּךְ": { "word": { @@ -2099614,7 +2113545,7 @@ ], "pos": "Adjective", "pos_hebrew": "שֵׁם תֹּאַר", - "meaning": "belonging to someone/something (ל־), relevant", + "meaning": "belonging to someone/something , relevant", "meaning_raw": "belonging to someone/something (ל־), relevant", "audio_url": "https://audio.pealim.com/v0/n2/n2oqwb7jc4f5.mp3", "audio_file": "שייך.mp3", @@ -2099681,11 +2113612,12 @@ "nikkud": "שַׁיָּכוֹת", "ktiv_male": "שייכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ל־" }, "לָשִׂים": { "word": { @@ -2100168,7 +2114100,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָשִׂים": { "word": { @@ -2100897,7 +2114830,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְשִׂימָה": { "word": { @@ -2100978,12 +2114912,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tr|a@}DfeK" + "plurals_guid": "tr|a@}DfeK", + "mishkal": "mekila", + "mishkal_hebrew": "מְקִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֲשָׂמָה": { "word": { @@ -2101048,12 +2114985,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i|v@@qWTbs3" + "plurals_guid": "pYV|8>Tbs3", + "mishkal": "tkula", + "mishkal_hebrew": "תְּקוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שׂוּם": { "word": { @@ -2101241,7 +2115184,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁיֵּף": { "word": { @@ -2101964,7 +2115908,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשִׁיר": { "word": { @@ -2102407,7 +2116352,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשׁוֹרֵר": { "word": { @@ -2102850,7 +2116796,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּשָׁר": { "word": { @@ -2103209,7 +2117156,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁיר": { "word": { @@ -2103306,7 +2117254,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁירָה": { "word": { @@ -2103398,7 +2117347,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁיָר": { "word": { @@ -2103464,12 +2117414,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i6HN@WU+Ey" + "plurals_guid": "i6HN@WU+Ey", + "mishkal": "ktal", + "mishkal_hebrew": "קְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁיּוּר": { "word": { @@ -2103535,12 +2117488,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n^xuO_c_Pc" + "plurals_guid": "n^xuO_c_Pc", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשׂוּשׂ": { "word": { @@ -2103979,7 +2117935,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מָשׂוֹשׂ": { "word": { @@ -2104044,12 +2118001,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i+S3WO}t:$" + "plurals_guid": "i+S3WO}t:$", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂשׂוֹן": { "word": { @@ -2104116,7 +2118076,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁשִּׁי": { "word": { @@ -2104169,7 +2118130,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִשִּיָּה": { "word": { @@ -2104229,7 +2118191,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָשִׁית": { "word": { @@ -2104954,7 +2118917,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשִׁית": { "word": { @@ -2105376,7 +2119340,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁתּוּף פְּעֻלָּה": { "word": { @@ -2105422,7 +2119387,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁכַּב": { "word": { @@ -2105873,7 +2119839,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁכָּב": { "word": { @@ -2105937,12 +2119904,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gy$R4XG!6A" + "plurals_guid": "gy$R4XG!6A", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁכְבָה": { "word": { @@ -2106006,12 +2119976,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QcG{UCCiaT" + "plurals_guid": "QcG{UCCiaT", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁכִּיב": { "word": { @@ -2106739,7 +2120712,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁכֵב": { "word": { @@ -2107190,7 +2121164,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁכֹּחַ": { "word": { @@ -2107643,7 +2121618,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁכִיחַ": { "word": { @@ -2107703,11 +2121679,12 @@ "nikkud": "שְׁכִיחוֹת", "ktiv_male": "שכיחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּכֵּחַ": { "word": { @@ -2108134,7 +2122111,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁכוּחַ": { "word": { @@ -2108194,11 +2122172,12 @@ "nikkud": "שְׁכוּחוֹת", "ktiv_male": "שכוחות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁכֵחַ": { "word": { @@ -2108641,7 +2122620,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁכִּיחַ": { "word": { @@ -2109387,7 +2123367,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁכִיחוּת": { "word": { @@ -2109458,7 +2123439,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשֹׁךְ": { "word": { @@ -2109880,7 +2123862,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁכֵּךְ": { "word": { @@ -2110605,7 +2124588,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁכֹּל": { "word": { @@ -2111030,7 +2125014,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵׂכֶל": { "word": { @@ -2111109,12 +2125094,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "lY?K.#n)%8" + "plurals_guid": "lY?K.#n)%8", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁכּוּל": { "word": { @@ -2111175,11 +2125163,12 @@ "nikkud": "שַׁכּוּלוֹת", "ktiv_male": "שכולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kattul", + "mishkal_hebrew": "קַטּוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂכַלְתָּן": { "word": { @@ -2111242,12 +2125231,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "e^^eL.vun?" + "plurals_guid": "e^^eL.vun?", + "mishkal": "ktaltan", + "mishkal_hebrew": "קְטַלְתָּן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁכוֹל": { "word": { @@ -2111308,12 +2125300,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g8`J[DZVY$" + "plurals_guid": "g8`J[DZVY$", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׂכָּלָה": { "word": { @@ -2111376,12 +2125371,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "f,bc}B2$%O" + "plurals_guid": "f,bc}B2$%O", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׂכִּיל": { "word": { @@ -2112124,7 +2126122,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶשְׁכּוֹל": { "word": { @@ -2112214,7 +2126213,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "אֶשְׁכּוֹלִית": { "word": { @@ -2112283,7 +2126283,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּכְלֵל": { "word": { @@ -2112709,7 +2126710,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְשֻׁכְלָל": { "word": { @@ -2112768,11 +2126770,12 @@ "nikkud": "מְשֻׁכְלָלוֹת", "ktiv_male": "משוכללות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁכְלוּל": { "word": { @@ -2112837,12 +2126840,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "gID<..,Y+$" + "plurals_guid": "gID<..,Y+$", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִשְׁתַּכְלְלוּת": { "word": { @@ -2112907,12 +2126913,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D1sJ+0G/s|" + "plurals_guid": "D1sJ+0G/s|", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁכְלֵל": { "word": { @@ -2113641,7 +2127650,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁכְמָה": { "word": { @@ -2113703,12 +2127713,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "tr)rgB3uu5" + "plurals_guid": "tr)rgB3uu5", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁכִּים": { "word": { @@ -2114450,7 +2128463,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁכֶם": { "word": { @@ -2114512,12 +2128526,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "DB110A}ifu" + "plurals_guid": "DB110A}ifu", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁכֹּן": { "word": { @@ -2114947,7 +2128964,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּכֵּן": { "word": { @@ -2115377,7 +2129395,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁכֵן|Adjective": { "word": { @@ -2115452,11 +2129471,12 @@ "nikkud": "שְׁכֵנוֹת", "ktiv_male": "שכנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁכוּנָה": { "word": { @@ -2115551,12 +2129571,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b`]eS)/}?}" + "plurals_guid": "b`]eS)/}?}", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁתַּכֵּן": { "word": { @@ -2115625,12 +2129648,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KKU?S7~Z=O" + "plurals_guid": "KKU?S7~Z=O", + "mishkal": "mitkattel", + "mishkal_hebrew": "מִתְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁכִינָה": { "word": { @@ -2115693,12 +2129719,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "u9!z-*ML&c" + "plurals_guid": "u9!z-*ML&c", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁכִּין": { "word": { @@ -2116431,7 +2130460,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁכֵּן": { "word": { @@ -2117180,7 +2131210,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁכֵן|Noun": { "word": { @@ -2117268,12 +2131299,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g7#IVyEQbZ" + "plurals_guid": "g7#IVyEQbZ", + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁכַּנְתָּה": { "word": { @@ -2117347,7 +2131381,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁכָּן": { "word": { @@ -2117416,12 +2131451,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "B*TY/?s{-3@O5" + "plurals_guid": "Qn>s{-3@O5", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּלֵּם": { "word": { @@ -2140409,7 +2154591,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁלֵמוּת": { "word": { @@ -2140485,7 +2154668,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁלֹם": { "word": { @@ -2140886,7 +2155070,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁלוֹם": { "word": { @@ -2140983,12 +2155168,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Jc0=%Q]ieC" + "plurals_guid": "Jc0=%Q]ieC", + "mishkal": "katol", + "mishkal_hebrew": "קָטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁלֵם": { "word": { @@ -2141079,11 +2155267,12 @@ "nikkud": "שְׁלֵמוֹת", "ktiv_male": "שלמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּשְׁלוּם": { "word": { @@ -2141154,12 +2155343,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "r:6j$e^Vt|" + "plurals_guid": "r:6j$e^Vt|", + "mishkal": "taktul", + "mishkal_hebrew": "תַּקְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁלָמָה": { "word": { @@ -2141230,12 +2155422,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "oO>{M{Mf_{OgW" + "plurals_guid": "d8;>f_{OgW", + "mishkal": "hitkattlut", + "mishkal_hebrew": "הִתְקַטְּלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁלוּף": { "word": { @@ -2143412,11 +2157614,12 @@ "nikkud": "שְׁלוּפוֹת", "ktiv_male": "שלופות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁלֵף": { "word": { @@ -2143866,7 +2158069,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁלֹף": { "word": { @@ -2144316,7 +2158520,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁלִיף": { "word": { @@ -2144379,12 +2158584,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "jK}}|IA6+F" + "plurals_guid": "jK}}|IA6+F", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁלְפּוּחִית": { "word": { @@ -2144444,7 +2158652,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁלֹק": { "word": { @@ -2144864,7 +2159073,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁלִישִׁי": { "word": { @@ -2144938,11 +2159148,12 @@ "nikkud": "שְׁלִישִׁיּוֹת", "ktiv_male": "שלישיות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁלִישׁ": { "word": { @@ -2145006,12 +2159217,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "MYF:nb0" + "plurals_guid": "NmkWL>:nb0", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׂמְלָה": { "word": { @@ -2152766,12 +2167022,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "s;$_Jb><`6" + "plurals_guid": "s;$_Jb><`6", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתּוֹמֵם": { "word": { @@ -2153218,7 +2167477,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשֹּׁם": { "word": { @@ -2153644,7 +2167904,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁמִים": { "word": { @@ -2153703,11 +2167964,12 @@ "nikkud": "מַשְׁמִימוֹת", "ktiv_male": "משמימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמָמָה": { "word": { @@ -2153788,12 +2168050,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "A$a%gxM/$|" + "plurals_guid": "A$a%gxM/$|", + "mishkal": "ktala", + "mishkal_hebrew": "קְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהָשֵׁם": { "word": { @@ -2154522,7 +2168787,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָשֹׁם": { "word": { @@ -2154969,7 +2169235,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂמָמִית": { "word": { @@ -2155029,7 +2169296,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֻׁמָּן": { "word": { @@ -2155124,7 +2169392,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁמֵן": { "word": { @@ -2155199,11 +2169468,12 @@ "nikkud": "שְׁמֵנוֹת", "ktiv_male": "שמנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katel", + "mishkal_hebrew": "קָטֵל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁמֹן": { "word": { @@ -2155581,7 +2169851,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁמֶן": { "word": { @@ -2155662,12 +2169933,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "v8]#9VHf.z" + "plurals_guid": "v8]#9VHf.z", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁמֶּנֶת": { "word": { @@ -2155736,12 +2170010,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ssTCMjj7#4" + "plurals_guid": "ssTCMjj7#4", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמִינִי": { "word": { @@ -2155804,11 +2170081,12 @@ "nikkud": "שְׁמִינִיּוֹת", "ktiv_male": "שמיניות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktili", + "mishkal_hebrew": "קְטִילִי" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמַנְמַן": { "word": { @@ -2155871,11 +2170149,12 @@ "nikkud": "שְׁמַנְמַנּוֹת", "ktiv_male": "שמנמנות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁמָנָה": { "word": { @@ -2155944,12 +2170223,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "L^6>#73n@v" + "plurals_guid": "L^6>#73n@v", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁמִין": { "word": { @@ -2156682,7 +2170964,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁמֵּן": { "word": { @@ -2157415,7 +2171698,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁמֹעַ": { "word": { @@ -2157872,7 +2172156,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּמֵּעַ": { "word": { @@ -2158303,7 +2172588,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁמָעוּתִי": { "word": { @@ -2158371,7 +2172657,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁמּוּעַ": { "word": { @@ -2158441,12 +2172728,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "osdi@{Ot>)" + "plurals_guid": "osdi@{Ot>)", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁמָעוּת": { "word": { @@ -2158547,7 +2172837,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמוּעָה": { "word": { @@ -2158617,12 +2172908,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "i{~dnZw/1K" + "plurals_guid": "i{~dnZw/1K", + "mishkal": "ktula", + "mishkal_hebrew": "קְטוּלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁמַעַת": { "word": { @@ -2158713,12 +2173007,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "riI2zA#a2~" + "plurals_guid": "riI2zA#a2~", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁמָע": { "word": { @@ -2158788,12 +2173085,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E]>qZAw.&m" + "plurals_guid": "E]>qZAw.&m", + "mishkal": "maktal", + "mishkal_hebrew": "מַקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁמָעָה": { "word": { @@ -2158863,12 +2173163,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ok,X`(o_.B" + "plurals_guid": "ok,X`(o_.B", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁמֵעַ": { "word": { @@ -2159325,7 +2173628,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁמִיעַ": { "word": { @@ -2160085,7 +2174389,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמִיעָה": { "word": { @@ -2160144,12 +2174449,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zp`O3]Ox#O" + "plurals_guid": "zp`O3]Ox#O", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁמִיץ": { "word": { @@ -2160874,7 +2175182,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁמֶץ": { "word": { @@ -2160950,12 +2175259,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fR[,F{+`]^" + "plurals_guid": "fR[,F{+`]^", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁמֵר": { "word": { @@ -2161389,7 +2175701,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּמֵּר": { "word": { @@ -2161823,7 +2176136,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁמֶרֶת": { "word": { @@ -2161896,12 +2176210,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "N[Pi/V8q}[" + "plurals_guid": "N[Pi/V8q}[", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁמָר": { "word": { @@ -2161990,12 +2176307,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IR$F=W4uL`" + "plurals_guid": "IR$F=W4uL`", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמִירָה": { "word": { @@ -2162084,12 +2176404,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "D%*j-?dEXx" + "plurals_guid": "D%*j-?dEXx", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁמוּר": { "word": { @@ -2162156,11 +2176479,12 @@ "nikkud": "שְׁמוּרוֹת", "ktiv_male": "שמורות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁמֹר": { "word": { @@ -2162175,7 +2176499,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to guard; to keep, to maintain (על)", + "meaning": "to guard; to keep, to maintain", "meaning_raw": "to guard; to keep, to maintain (על)", "audio_url": "https://audio.pealim.com/v0/fa/faewhlxh6dzs.mp3", "audio_file": "לשמור.mp3", @@ -2162651,7 +2176975,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "שַׁמְרָן": { "word": { @@ -2162724,12 +2177049,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ewHE_&O$|7" + "plurals_guid": "ewHE_&O$|7", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁמְרָנִי": { "word": { @@ -2162800,7 +2177128,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שׁוֹמֵר": { "word": { @@ -2162885,12 +2177214,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Hq<8a%p()g" + "plurals_guid": "Hq<8a%p()g", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁמִיר": { "word": { @@ -2162957,12 +2177289,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "C-yVXb`qt%" + "plurals_guid": "C-yVXb`qt%", + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁמֵּר": { "word": { @@ -2163715,7 +2178050,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁמּוּר": { "word": { @@ -2163814,12 +2178150,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p~P&sXeimD" + "plurals_guid": "p~P&sXeimD", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁמָרִים": { "word": { @@ -2163886,12 +2178225,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "OrGaV;e?Eg" + "plurals_guid": "OrGaV;e?Eg", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁמִישׁ": { "word": { @@ -2163954,11 +2178296,12 @@ "nikkud": "שְׁמִישׁוֹת", "ktiv_male": "שמישות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּמֵּשׁ": { "word": { @@ -2163973,7 +2178316,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — הִתְפַּעֵל", - "meaning": "to use (ב-)", + "meaning": "to use", "meaning_raw": "to use (ב-)", "audio_url": "https://audio.pealim.com/v0/1m/1m6wc5gztdn3e.mp3", "audio_file": "להשתמש.mp3", @@ -2164414,7 +2178757,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב-" }, "שִׁמּוּשִׁי": { "word": { @@ -2164481,7 +2178825,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁמְשִׁיָּה": { "word": { @@ -2164555,7 +2178900,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁמֶשׁ": { "word": { @@ -2164650,12 +2178996,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y4Q$yknLgG" + "plurals_guid": "y4Q$yknLgG", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁמּוּשׁ": { "word": { @@ -2164740,12 +2179089,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "p4.GZ)jz{@" + "plurals_guid": "p4.GZ)jz{@", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּשְׁמִישׁ": { "word": { @@ -2164840,12 +2179192,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q:PFT[$ejD" + "plurals_guid": "Q:PFT[$ejD", + "mishkal": "taktil", + "mishkal_hebrew": "תַּקְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁתַּמֵּשׁ": { "word": { @@ -2164914,12 +2179269,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "hgyn>=E]}c" + "plurals_guid": "hgyn>=E]}c", + "mishkal": "mitkattel", + "mishkal_hebrew": "מִתְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁמֵּשׁ": { "word": { @@ -2165678,7 +2180036,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁמְשָׁה": { "word": { @@ -2165763,12 +2180122,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "b>t&NZFH?a" + "plurals_guid": "b>t&NZFH?a", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׂנֹא": { "word": { @@ -2166218,7 +2180580,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׂנְאָה": { "word": { @@ -2166275,12 +2180638,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "n%3Wk5ohjd" + "plurals_guid": "n%3Wk5ohjd", + "mishkal": "kitla", + "mishkal_hebrew": "קִטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׂנִיא": { "word": { @@ -2167007,7 +2181373,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂנוּא": { "word": { @@ -2167064,11 +2181431,12 @@ "nikkud": "שְׂנוּאוֹת", "ktiv_male": "שנואות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁנָה": { "word": { @@ -2167154,7 +2181522,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁנְהַבִּי": { "word": { @@ -2167215,7 +2181584,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁנְהֶבֶת": { "word": { @@ -2167272,12 +2181642,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Q`;6U.>^+@" + "plurals_guid": "Q`;6U.>^+@", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁנְהָב": { "word": { @@ -2167340,7 +2181713,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּנּוֹת": { "word": { @@ -2167798,7 +2182172,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּשְׁנִית": { "word": { @@ -2167869,12 +2182244,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "eI+VM{z@Rq" + "plurals_guid": "eI+VM{z@Rq", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִשְׁתַּנּוּת": { "word": { @@ -2167945,12 +2182323,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "P[b" + "plurals_guid": "cSM;jAF>[b", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁנּוֹת": { "word": { @@ -2170027,7 +2184421,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁנִיָּה": { "word": { @@ -2170124,12 +2184519,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PJa)n$BIx?" + "plurals_guid": "Ec/Q>$BIx?", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁעָתַיִם": { "word": { @@ -2180016,7 +2194469,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁעוֹת": { "word": { @@ -2180745,7 +2195199,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּעֵל": { "word": { @@ -2181194,7 +2195649,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁעוּל": { "word": { @@ -2181282,12 +2195738,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "f:J)rISFvw" + "plurals_guid": "f:J)rISFvw", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁעוֹל": { "word": { @@ -2181349,12 +2195808,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "uAdMbc%%mg" + "plurals_guid": "uAdMbc%%mg", + "mishkal": "miktol", + "mishkal_hebrew": "מִקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּעְמֵם": { "word": { @@ -2181796,7 +2196258,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְשַׁעְמֵם": { "word": { @@ -2181855,11 +2196318,12 @@ "nikkud": "מְשַׁעְמְמוֹת", "ktiv_male": "משעממות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְשֻׁעְמָם": { "word": { @@ -2181918,11 +2196382,12 @@ "nikkud": "מְשֻׁעְמָמוֹת", "ktiv_male": "משועממות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁעְמֵם": { "word": { @@ -2182651,7 +2197116,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁעְמוּם": { "word": { @@ -2182716,12 +2197182,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "M(&8K^9/i]" + "plurals_guid": "M(&8K^9/i]", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁעֶנֶת": { "word": { @@ -2182800,12 +2197269,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "E;Spz?|y?," + "plurals_guid": "E;Spz?|y?,", + "mishkal": "miktelet", + "mishkal_hebrew": "מִקְטֶלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִשָּׁעֲנוּת": { "word": { @@ -2182862,12 +2197334,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "s,]Pxt$(TQ" + "plurals_guid": "s,]Pxt$(TQ", + "mishkal": "hikkatlut", + "mishkal_hebrew": "הִקָּטְלוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁעִין": { "word": { @@ -2183620,7 +2198095,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁעֵן": { "word": { @@ -2184070,7 +2198546,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁעוּעִית": { "word": { @@ -2184129,7 +2198606,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁעוּר": { "word": { @@ -2184219,12 +2198697,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "yWi_LO`O.9" + "plurals_guid": "yWi_LO`O.9", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁעַר": { "word": { @@ -2184314,12 +2198795,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שׁוֹעֵר": { "word": { @@ -2184383,12 +2198867,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "T/+59p5>g" + "plurals_guid": "T/+59p5>g", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵׂעָר": { "word": { @@ -2184472,7 +2198959,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׂעֲרָה": { "word": { @@ -2184562,12 +2199050,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "PO8o^a8Q?[" + "plurals_guid": "PO8o^a8Q?[", + "mishkal": "katla", + "mishkal_hebrew": "קַטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂעִיר": { "word": { @@ -2184625,11 +2199116,12 @@ "nikkud": "שְׂעִירוֹת", "ktiv_male": "שעירות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׂעִיר": { "word": { @@ -2185054,7 +2199546,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂעוֹרָה": { "word": { @@ -2185118,12 +2199611,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "OR&IYwuvO?" + "plurals_guid": "OR&IYwuvO?", + "mishkal": "ktola", + "mishkal_hebrew": "קְטוֹלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁעָרָה": { "word": { @@ -2185187,12 +2199683,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "H{:hXz/Q@Q" + "plurals_guid": "H{:hXz/Q@Q", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁעֵר": { "word": { @@ -2185946,7 +2200445,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁעְשֵׁעַ": { "word": { @@ -2186673,7 +2201173,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּעְשֵׁעַ": { "word": { @@ -2187097,7 +2201598,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁעְשׁוּעַ": { "word": { @@ -2187160,12 +2201662,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "d2b0HcnVZM" + "plurals_guid": "d2b0HcnVZM", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁעְתֵּק": { "word": { @@ -2187889,7 +2202394,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁפֵּד": { "word": { @@ -2188612,7 +2203118,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁפוֹפֶרֶת": { "word": { @@ -2188672,7 +2203179,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁפָּחָה": { "word": { @@ -2188760,12 +2203268,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "zuY:2bwv*-" + "plurals_guid": "zuY:2bwv*-", + "mishkal": "miktala", + "mishkal_hebrew": "מִקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁפַּחְתִּי": { "word": { @@ -2188825,7 +2203336,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁפְחָה": { "word": { @@ -2188887,12 +2203399,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ka/tqAM" + "plurals_guid": "DF/>a/tqAM", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁפָּטִי": { "word": { @@ -2189563,7 +2204085,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שׁוֹפֵט": { "word": { @@ -2189628,12 +2204151,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "L@.=c2$`Q?" + "plurals_guid": "L@.=c2$`Q?", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁפֵט": { "word": { @@ -2190059,7 +2204585,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁפוּי": { "word": { @@ -2190114,11 +2204641,12 @@ "nikkud": "שְׁפוּיוֹת", "ktiv_male": "שפויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂפָה|Noun|language": { "word": { @@ -2190192,12 +2204720,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bpX3e*{c)," + "plurals_guid": "bpX3e*{c),", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂפָה|Noun|lip": { "word": { @@ -2190281,12 +2204812,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "k=R#^{027Z" + "plurals_guid": "k=R#^{027Z", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂפָתוֹן": { "word": { @@ -2190353,7 +2204887,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁפִיּוּת": { "word": { @@ -2190413,7 +2204948,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁפֵךְ": { "word": { @@ -2190838,7 +2205374,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁפוּךְ": { "word": { @@ -2190896,11 +2205433,12 @@ "nikkud": "שְׁפוּכוֹת", "ktiv_male": "שפוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּפֵּךְ": { "word": { @@ -2191325,7 +2205863,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁפֹּךְ": { "word": { @@ -2191771,7 +2206310,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁפֵּךְ": { "word": { @@ -2191851,12 +2206391,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "g;:(,YyTs," + "plurals_guid": "g;:(,YyTs,", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁפֹּל": { "word": { @@ -2192281,7 +2206824,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַשְׁפָּלָה": { "word": { @@ -2192361,12 +2206905,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "hz|N!rwlpx" + "plurals_guid": "hz|N!rwlpx", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵׁפֶל": { "word": { @@ -2192446,12 +2206993,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fk{S:2" + "plurals_guid": "N2MrU>{S:2", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׂרָה": { "word": { @@ -2220769,12 +2235511,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "s%:xCu?JH`" + "plurals_guid": "s%:xCu?JH`", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁרוֹת": { "word": { @@ -2221210,7 +2235955,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁרוֹת": { "word": { @@ -2221937,7 +2236683,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׂרוֹת": { "word": { @@ -2221952,7 +2236699,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — פָּעַל", - "meaning": "to wrestle, to struggle (archaic); to rest upon (על) (archaic)", + "meaning": "to wrestle, to struggle (archaic); to rest upon (archaic)", "meaning_raw": "to wrestle, to struggle (archaic); to rest upon (על) (archaic)", "audio_url": "https://audio.pealim.com/v0/61/61tqy95rnax1.mp3", "audio_file": "4156-lisrot.mp3", @@ -2222381,7 +2237128,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "על" }, "שָׁרוּי|Adjective|being (in a certain state)": { "word": { @@ -2222441,11 +2237189,12 @@ "nikkud": "שְׁרוּיוֹת", "ktiv_male": "שרויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁרוּי|Adjective|soaked; marinated": { "word": { @@ -2222505,11 +2237254,12 @@ "nikkud": "שְׁרוּיוֹת", "ktiv_male": "שרויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁרְיוֹן": { "word": { @@ -2222569,7 +2237319,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁרְיֵן": { "word": { @@ -2223295,7 +2238046,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁרְיוּן": { "word": { @@ -2223357,12 +2238109,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "IA]-xRw3{X" + "plurals_guid": "IA]-xRw3{X", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׂרֹךְ": { "word": { @@ -2223787,7 +2238542,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂרוֹךְ": { "word": { @@ -2223863,12 +2238619,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "tqN1^@*xa%" + "plurals_guid": "tqN1^@*xa%", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂרוּךְ": { "word": { @@ -2223929,11 +2238688,12 @@ "nikkud": "שְׂרוּכוֹת", "ktiv_male": "שרוכות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׂרֵךְ": { "word": { @@ -2223948,7 +2238708,7 @@ ], "pos": "Verb", "pos_hebrew": "פֹּעַל — נִפְעַל", - "meaning": "to trudge, to lumber; to follow, to trail behind (אחרי)", + "meaning": "to trudge, to lumber; to follow, to trail behind", "meaning_raw": "to trudge, to lumber; to follow, to trail behind (אחרי)", "audio_url": "https://audio.pealim.com/v0/qm/qmhqtr8axq8r.mp3", "audio_file": "להישרך.mp3", @@ -2224358,7 +2239118,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "אחרי" }, "לְהִשְׂתָּרֵךְ": { "word": { @@ -2224783,7 +2239544,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׂתָּרֵעַ": { "word": { @@ -2225231,7 +2239993,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂרוּעַ": { "word": { @@ -2225286,11 +2240049,12 @@ "nikkud": "שְׂרוּעוֹת", "ktiv_male": "שרועות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׂרֹף": { "word": { @@ -2225741,7 +2240505,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׂרֵף": { "word": { @@ -2226182,7 +2240947,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׂרֵפָה": { "word": { @@ -2226262,12 +2241028,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "y2Bpy1)J/F" + "plurals_guid": "y2Bpy1)J/F", + "mishkal": "ktela", + "mishkal_hebrew": "קְטֵלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂרָף": { "word": { @@ -2226331,12 +2241100,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Bgc{n7.?y{" + "plurals_guid": "Bgc{n7.?y{", + "mishkal": "katal", + "mishkal_hebrew": "קָטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂרוּף": { "word": { @@ -2226394,11 +2241166,12 @@ "nikkud": "שְׂרוּפוֹת", "ktiv_male": "שרופות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁרַפְרַף": { "word": { @@ -2226473,12 +2241246,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N&)~S^9V9T" + "plurals_guid": "N&)~S^9V9T", + "mishkal": "ktaltal", + "mishkal_hebrew": "קְטַלְטַל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁרֹץ": { "word": { @@ -2226900,7 +2241676,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁרִיץ": { "word": { @@ -2227322,7 +2242099,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁרֹק": { "word": { @@ -2227763,7 +2242541,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׂרֹר": { "word": { @@ -2228212,7 +2242991,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׂתָּרֵר": { "word": { @@ -2228661,7 +2243441,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׂר": { "word": { @@ -2228739,12 +2243520,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "F,0C$ALHNB" + "plurals_guid": "F,0C$ALHNB", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁרִיר": { "word": { @@ -2228803,12 +2243587,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "QK.AurN5{4" + "plurals_guid": "QK.AurN5{4", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁרְשׁוֹן": { "word": { @@ -2228877,7 +2243664,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתָּרֵשׁ": { "word": { @@ -2229302,7 +2244090,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֹׁרֶשׁ": { "word": { @@ -2229366,12 +2244155,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "E*w42p?)c." + "plurals_guid": "E*w42p?)c.", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁרִישׁ": { "word": { @@ -2230099,7 +2244891,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשָׁרֵשׁ": { "word": { @@ -2230827,7 +2245620,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁרְשֵׁר": { "word": { @@ -2231554,7 +2246348,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁרְשֶׁרֶת": { "word": { @@ -2231617,12 +2246412,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "xrJ`0fDpdt" + "plurals_guid": "xrJ`0fDpdt", + "mishkal": "kattelet", + "mishkal_hebrew": "קַטֶּלֶת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שִׁרְשׁוּר": { "word": { @@ -2231685,12 +2246483,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s+5v2]Cxtd" + "plurals_guid": "s+5v2]Cxtd", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשָׁרֵת": { "word": { @@ -2232431,7 +2247232,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵׁרוּת": { "word": { @@ -2232492,12 +2247294,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "KcJ?eb3?OT" + "plurals_guid": "KcJ?eb3?OT", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֵש": { "word": { @@ -2232556,7 +2247361,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "לִשְׁתּוֹת": { "word": { @@ -2233004,7 +2247810,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שַׁתְיָן": { "word": { @@ -2233069,12 +2247876,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Kzwt^DjYvw" + "plurals_guid": "Kzwt^DjYvw", + "mishkal": "katlan", + "mishkal_hebrew": "קַטְלָן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁתִיָּה": { "word": { @@ -2233154,12 +2247964,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "ko0dCFXnxc" + "plurals_guid": "ko0dCFXnxc", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּשְׁתִּית": { "word": { @@ -2233224,12 +2248037,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bdk_d=$ifS" + "plurals_guid": "bdk_d=$ifS", + "mishkal": "taktit", + "mishkal_hebrew": "תַּקְטִית" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִשְׁתֶּה": { "word": { @@ -2233310,12 +2248126,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "n?*19*B$nn" + "plurals_guid": "n?*19*B$nn", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁתוֹת": { "word": { @@ -2233741,7 +2248560,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שָׁתוּי": { "word": { @@ -2233794,11 +2248614,12 @@ "nikkud": "שְׁתוּיוֹת", "ktiv_male": "שתויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁתֹּל": { "word": { @@ -2234240,7 +2249061,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשָּׁתֵל": { "word": { @@ -2234666,7 +2249488,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁתִיל": { "word": { @@ -2234731,12 +2249554,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Q.&?ou?t[{" + "plurals_guid": "Q.&?ou?t[{", + "mishkal": "ktil", + "mishkal_hebrew": "קְטִיל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁתֶל": { "word": { @@ -2234801,12 +2249627,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "AkVHH9Zl*0" + "plurals_guid": "AkVHH9Zl*0", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁתִּיל": { "word": { @@ -2235535,7 +2250364,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁתִילָה": { "word": { @@ -2235600,12 +2250430,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bPYq]I7K{}" + "plurals_guid": "bPYq]I7K{}", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַשְׁתֵּן": { "word": { @@ -2235667,12 +2250500,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "qmoe?D#PGu" + "plurals_guid": "qmoe?D#PGu", + "mishkal": "maktel", + "mishkal_hebrew": "מַקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֶׁתֶן": { "word": { @@ -2235728,12 +2250564,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "Ax3B[33nx9" + "plurals_guid": "Ax3B[33nx9", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁתִּין": { "word": { @@ -2236459,7 +2251298,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שֻׁתָּף": { "word": { @@ -2236545,7 +2251385,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִשְׁתַּתֵּף": { "word": { @@ -2236997,7 +2251838,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הִשְׁתַּתְּפוּת": { "word": { @@ -2237056,12 +2251898,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "dLAve+&;Ud1" + "plurals_guid": "x]W9>&;Ud1", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "שְׁתִיקָה": { "word": { @@ -2239115,12 +2253971,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "jj+22%qehL" + "plurals_guid": "jj+22%qehL", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְשַׁתֵּק": { "word": { @@ -2239865,7 +2254724,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁתִּיק": { "word": { @@ -2240620,7 +2255480,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִשְׁתֹּת": { "word": { @@ -2241054,7 +2255915,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַשְׁתִּית": { "word": { @@ -2241779,7 +2256641,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּא": { "word": { @@ -2241855,7 +2256718,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְאֹב": { "word": { @@ -2242277,7 +2257141,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּאָבוֹן": { "word": { @@ -2242358,12 +2257223,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "FKiOydH4BC" + "plurals_guid": "FKiOydH4BC", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְאֹם": { "word": { @@ -2242790,7 +2257658,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּאוֹם": { "word": { @@ -2242856,12 +2257725,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַתְאָמָה": { "word": { @@ -2242927,12 +2257799,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "if-$I~WA!2" + "plurals_guid": "if-$I~WA!2", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הֶתְאֵם": { "word": { @@ -2242998,12 +2257873,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b#1r)iC2?5" + "plurals_guid": "b#1r)iC2?5", + "mishkal": "hektel", + "mishkal_hebrew": "הֶקְטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתָאֵם": { "word": { @@ -2243785,7 +2258663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתְאִים": { "word": { @@ -2244541,7 +2259420,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּאוּם": { "word": { @@ -2244607,12 +2259487,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wHLT0t4aT!" + "plurals_guid": "wHLT0t4aT!", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּאֵנָה": { "word": { @@ -2244667,7 +2259550,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתָאֵר": { "word": { @@ -2245420,7 +2260304,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֹּאַר": { "word": { @@ -2245483,12 +2260368,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "D|s8HC$BQC" + "plurals_guid": "fiwBy>$BQC", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֹּהוּ": { "word": { @@ -2252154,12 +2267083,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "J]KdlS;6u%" + "plurals_guid": "J]KdlS;6u%", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּהוֹם": { "word": { @@ -2252239,12 +2267171,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "GJ6d1Ux~.z" + "plurals_guid": "GJ6d1Ux~.z", + "mishkal": "ktol", + "mishkal_hebrew": "קְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּו": { "word": { @@ -2252320,7 +2267255,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּוִית": { "word": { @@ -2252380,7 +2267316,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹחֶלֶת חַיִּים": { "word": { @@ -2252429,7 +2267366,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּוּוּי": { "word": { @@ -2252494,12 +2267432,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "xYZJSa66J" + "plurals_guid": "xYZJSa66J", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּוִיָּה": { "word": { @@ -2252564,12 +2267505,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "bf@wiAXDr&" + "plurals_guid": "bf@wiAXDr&", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִתְוֶה": { "word": { @@ -2252634,12 +2267578,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "JqQ)bGfe6h" + "plurals_guid": "JqQ)bGfe6h", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּוַאי": { "word": { @@ -2252709,7 +2267656,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּווּי": { "word": { @@ -2252768,11 +2267716,12 @@ "nikkud": "תְּווּיוֹת", "ktiv_male": "תוויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתְווֹת": { "word": { @@ -2253501,7 +2268450,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַוֵּךְ": { "word": { @@ -2254228,7 +2269178,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּוּוּךְ": { "word": { @@ -2254291,12 +2269242,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ETn=-$We_1" + "plurals_guid": "ETn=-$We_1", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּוֶךְ": { "word": { @@ -2254379,12 +2269333,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "zFL/{r[Mj|" + "plurals_guid": "zFL/{r[Mj|", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹכִית": { "word": { @@ -2254452,7 +2269409,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֻּכִּי": { "word": { @@ -2254512,7 +2269470,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָתוּר": { "word": { @@ -2254935,7 +2269894,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹר": { "word": { @@ -2255018,7 +2269978,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹרָן": { "word": { @@ -2255078,7 +2270039,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוּשִׁיָּה": { "word": { @@ -2255143,7 +2270105,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוּת": { "word": { @@ -2255224,7 +2270187,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תּוֹתָח": { "word": { @@ -2255310,7 +2270274,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֶּזָה": { "word": { @@ -2255365,7 +2270330,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּזְמוּן": { "word": { @@ -2255421,12 +2270387,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "fQU+WX@<%-" + "plurals_guid": "fQU+WX@<%-", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַזְמֵן": { "word": { @@ -2256152,7 +2271121,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְחֹב": { "word": { @@ -2256590,7 +2271560,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתָּחֵב": { "word": { @@ -2257012,7 +2271983,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַחְזֵק": { "word": { @@ -2257738,7 +2272710,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּחְזוּק": { "word": { @@ -2257800,12 +2272773,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "k$w.Za]OVK" + "plurals_guid": "k$w.Za]OVK", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְתֻחְכָּם": { "word": { @@ -2257880,11 +2272856,12 @@ "nikkud": "מְתֻחְכָּמוֹת", "ktiv_male": "מתוחכמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "הַתְחָלָה": { "word": { @@ -2257971,12 +2272948,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "e)E$zY7yfZ" + "plurals_guid": "e)E$zY7yfZ", + "mishkal": "haktala", + "mishkal_hebrew": "הַקְטָלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתְחִיל": { "word": { @@ -2258727,7 +2273707,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַחְלֵב": { "word": { @@ -2259148,7 +2274129,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְחֹם": { "word": { @@ -2259572,7 +2274554,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מִתְחָם": { "word": { @@ -2259651,12 +2274634,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wlzdsMJ,NF" + "plurals_guid": "wlzdsMJ,NF", + "mishkal": "miktal", + "mishkal_hebrew": "מִקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּחוּם": { "word": { @@ -2259735,12 +2274721,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N?>}|/d32%" + "plurals_guid": "N?>}|/d32%", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַחֵם": { "word": { @@ -2260467,7 +2275456,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַחְמֵן": { "word": { @@ -2261191,7 +2276181,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַחְקֵר": { "word": { @@ -2261931,7 +2276922,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחַת": { "word": { @@ -2262022,7 +2277014,8 @@ "ktiv_male": "תחתיהן" } }, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּחְתִּית": { "word": { @@ -2262098,7 +2277091,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּאוֹרְיָה": { "word": { @@ -2262158,7 +2277152,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּאַטְרוֹן": { "word": { @@ -2262218,7 +2277213,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּבָה": { "word": { @@ -2262304,7 +2277300,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מוּתָג": { "word": { @@ -2262365,12 +2277362,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "wvRn>E)5Nq" + "plurals_guid": "wvRn>E)5Nq", + "mishkal": "muktal", + "mishkal_hebrew": "מֻקְטָל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַיֵּג": { "word": { @@ -2263095,7 +2278095,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּכֶף": { "word": { @@ -2263154,7 +2278155,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "תִּיק": { "word": { @@ -2263242,7 +2278244,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַיֵּק": { "word": { @@ -2263968,7 +2278971,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּיקִיָּה": { "word": { @@ -2264035,7 +2279039,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֵּיקוּ": { "word": { @@ -2264086,7 +2279091,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּיָּרוּת": { "word": { @@ -2264147,7 +2279153,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּיָּר": { "word": { @@ -2264225,12 +2279232,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t]xWJ@+Q-p" + "plurals_guid": "t]xWJ@+Q-p", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַיֵּר": { "word": { @@ -2264653,7 +2279663,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּירוֹשׁ": { "word": { @@ -2264707,7 +2279718,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּירָס": { "word": { @@ -2264756,7 +2279768,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּיִשׁ": { "word": { @@ -2264815,12 +2279828,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "N8G2H7T_zl" + "plurals_guid": "N8G2H7T_zl", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּכֶלֶת": { "word": { @@ -2264874,7 +2279890,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּכְנִית": { "word": { @@ -2264972,7 +2279989,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֹּכֶן": { "word": { @@ -2265039,12 +2280057,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": null + "plurals_guid": null, + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתָּכֵן": { "word": { @@ -2265498,7 +2280519,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּכְנָה": { "word": { @@ -2265559,12 +2280581,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Mx}w4k0]Gt" + "plurals_guid": "Mx}w4k0]Gt", + "mishkal": "kotla", + "mishkal_hebrew": "קָטְלָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֶּכֶן": { "word": { @@ -2265631,12 +2280656,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ttHC>,K&HG" + "plurals_guid": "ttHC>,K&HG", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַתְכּוֹן": { "word": { @@ -2265719,12 +2280747,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "EF(ZHMH{Q4" + "plurals_guid": "EF(ZHMH{Q4", + "mishkal": "maktol", + "mishkal_hebrew": "מַקְטוֹל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַכֵּן": { "word": { @@ -2266455,7 +2281486,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְכֹּן": { "word": { @@ -2266883,7 +2281915,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַכְנֵן": { "word": { @@ -2267635,7 +2282668,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּכְנוּן": { "word": { @@ -2267713,12 +2282747,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "MBn;aDmoaa" + "plurals_guid": "MBn;aDmoaa", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְתַכְנֵת": { "word": { @@ -2267781,12 +2282818,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "s=!T}e.=AL" + "plurals_guid": "s=!T}e.=AL", + "mishkal": "mekattel", + "mishkal_hebrew": "מְקַטֵּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּכְנוּת": { "word": { @@ -2267843,12 +2282883,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "G8zRd:E}Y/" + "plurals_guid": "G8zRd:E}Y/", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַכְנֵת": { "word": { @@ -2268575,7 +2283618,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּכִיפוּת": { "word": { @@ -2268643,7 +2283687,8 @@ "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּכוּפוֹת": { "word": { @@ -2268684,7 +2283729,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "תָּכוּף": { "word": { @@ -2268741,11 +2283787,12 @@ "nikkud": "תְּכוּפוֹת", "ktiv_male": "תכופות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְכֹּף": { "word": { @@ -2269169,7 +2284216,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְלוֹת": { "word": { @@ -2269622,7 +2284670,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתָּלוֹת": { "word": { @@ -2270070,7 +2285119,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּלִיָּה": { "word": { @@ -2270136,12 +2285186,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "QNv3~O<`k4" + "plurals_guid": "QNv3~O<`k4", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּלוּת": { "word": { @@ -2270156,7 +2285209,7 @@ ], "pos": "Noun", "pos_hebrew": "שֵׁם עֶצֶם", - "meaning": "dependence (on something) (ב־)", + "meaning": "dependence (on something)", "meaning_raw": "dependence (on something) (ב־)", "audio_url": "https://audio.pealim.com/v0/kk/kk1o8z43zdm5.mp3", "audio_file": "תלות.mp3", @@ -2270207,12 +2285260,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "EJ{hL!#>Ge" + "plurals_guid": "EJ{hL!#>Ge", + "mishkal": "ktut", + "mishkal_hebrew": "קְטוּת" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": "ב־" }, "תִּלְיוֹן": { "word": { @@ -2270278,12 +2285334,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w(pwM?ihQ|" + "plurals_guid": "w(pwM?ihQ|", + "mishkal": "kitlon", + "mishkal_hebrew": "קִטְלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּלוּי": { "word": { @@ -2270369,11 +2285428,12 @@ "nikkud": "תְּלוּיוֹת", "ktiv_male": "תלויות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתְלוֹת": { "word": { @@ -2271103,7 +2286163,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּלוּל": { "word": { @@ -2271156,11 +2286217,12 @@ "nikkud": "תְּלוּלוֹת", "ktiv_male": "תלולות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katul", + "mishkal_hebrew": "קָטוּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֶּלֶם": { "word": { @@ -2271219,12 +2286281,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "w1XW6.fFI3" + "plurals_guid": "w1XW6.fFI3", + "mishkal": "ketel", + "mishkal_hebrew": "קֶטֶל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְלֹשׁ": { "word": { @@ -2271673,7 +2286738,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתָּלֵשׁ": { "word": { @@ -2272122,7 +2287188,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּלוּשׁ": { "word": { @@ -2272184,12 +2287251,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "c47[n2aj?#" + "plurals_guid": "c47[n2aj?#", + "mishkal": "ktul", + "mishkal_hebrew": "קְטוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַלְתֵּל": { "word": { @@ -2272932,7 +2288002,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מְתֻלְתָּל": { "word": { @@ -2273015,11 +2288086,12 @@ "nikkud": "מְתֻלְתָּלוֹת", "ktiv_male": "מתולתלות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "mekuttal", + "mishkal_hebrew": "מְקֻטָּל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תַּלְתָּל": { "word": { @@ -2273082,12 +2288154,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "ro_:2ggdtU" + "plurals_guid": "ro_:2ggdtU", + "mishkal": "kattal", + "mishkal_hebrew": "קַטָּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "מַתְמִיד": { "word": { @@ -2273142,11 +2288217,12 @@ "nikkud": "מַתְמִידוֹת", "ktiv_male": "מתמידות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "maktil", + "mishkal_hebrew": "מַקְטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתְמִיד": { "word": { @@ -2273871,7 +2288947,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְמֹהַּ": { "word": { @@ -2274294,7 +2289371,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּמָּהוֹן": { "word": { @@ -2274356,12 +2289434,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "z(4J3%K#os" + "plurals_guid": "z(4J3%K#os", + "mishkal": "kittalon", + "mishkal_hebrew": "קִטָּלוֹן" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהַתְמִיהַּ": { "word": { @@ -2275087,7 +2290168,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַמְחֵר": { "word": { @@ -2275510,7 +2290592,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּמְחוּר": { "word": { @@ -2275566,12 +2290649,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "LDGDPY$>C[" + "plurals_guid": "LDGDPY$>C[", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּמִיד": { "word": { @@ -2275630,7 +2290716,8 @@ "noun_inflection": null, "conjugation": null, "adjective_inflection": null, - "preposition_inflection": null + "preposition_inflection": null, + "prep": null }, "תְּמִידִי": { "word": { @@ -2275683,7 +2290770,8 @@ "mishkal_hebrew": null }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תְּמִיכָה": { "word": { @@ -2275739,12 +2290827,15 @@ "nikkud": "נְקֵבָה", "ktiv_male": "נקבה" }, - "plurals_guid": "Hl%F`IrQj-" + "plurals_guid": "Hl%F`IrQj-", + "mishkal": "ktila", + "mishkal_hebrew": "קְטִילָה" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתָּמֵךְ": { "word": { @@ -2276183,7 +2291274,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לִתְמֹךְ": { "word": { @@ -2276632,7 +2291724,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְתַמְלֵל": { "word": { @@ -2277055,7 +2292148,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תִּמְלוּל": { "word": { @@ -2277117,12 +2292211,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "t`8w=|.q~k" + "plurals_guid": "t`8w=|.q~k", + "mishkal": "kittul", + "mishkal_hebrew": "קִטּוּל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לָתֹם": { "word": { @@ -2277512,7 +2292609,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּמִים": { "word": { @@ -2277571,11 +2292669,12 @@ "nikkud": "תְּמִימוֹת", "ktiv_male": "תמימות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "katil", + "mishkal_hebrew": "קָטִיל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֹּם|Noun|end, completion (lit.)": { "word": { @@ -2277646,12 +2292745,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "i6eLHNEZOj" + "plurals_guid": "i6eLHNEZOj", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תֹּם|Noun|simplicity, innocence, naivete (lit.)": { "word": { @@ -2277694,13 +2292796,7 @@ ], "confusables_guid": "Q_xM/kn5c&", "examples": { - "vetted": [ - { - "text": "לְפִיכָךְ נִגְּשָׁה לַמְּלָאכָה, וְעַד מְהֵרָה זָלְלָה אֶת הָעוּגָה עַד תֹּם", - "source": "alice_wonderland", - "match_method": "direct" - } - ], + "vetted": [], "rejected_count": 0 }, "noun_inflection": { @@ -2277722,12 +2292818,15 @@ "nikkud": "זָכָר", "ktiv_male": "זכר" }, - "plurals_guid": "b%2.!vhKCd" + "plurals_guid": "b%2.!vhKCd", + "mishkal": "kotel", + "mishkal_hebrew": "קוֹטֵל" }, "conjugation": null, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "לְהִתַּמֵּם": { "word": { @@ -2278174,7 +2293273,8 @@ }, "adjective_inflection": null, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null }, "תָּם": { "word": { @@ -2278249,10 +2293349,11 @@ "nikkud": "תַּמּוֹת", "ktiv_male": "תמות" }, - "mishkal": null, - "mishkal_hebrew": null + "mishkal": "kal", + "mishkal_hebrew": "קַל" }, "preposition_inflection": null, - "detail_scraped": true + "detail_scraped": true, + "prep": null } } \ No newline at end of file diff --git a/epub_examples.py b/epub_examples.py index 4e14e88..e42c680 100644 --- a/epub_examples.py +++ b/epub_examples.py @@ -719,9 +719,87 @@ def update_words_json(words: dict, matches: dict, confusable_keys: set[str]) -> examples["rejected_count"] = 0 updated += 1 + # Deduplicate shared examples across confusable groups + cleared = _deduplicate_confusable_examples(words) + if cleared: + logger.info(f" Cleared shared examples from {cleared} confusable entries") + return updated +def _deduplicate_confusable_examples(words: dict) -> int: + """Remove shared examples from less-common confusable group members. + + After example matching assigns sentences, confusable entries often share + identical examples (matched via shared nikkud forms). This function keeps + examples only on the highest-frequency member, clearing others. + + Args: + words: The full words.json dict, modified in place (examples already + assigned). + + Returns: + Count of entries whose examples were cleared. + """ + from collections import defaultdict + + # Build confusable group map: group_id → [unique_key, ...] + group_map: dict[tuple[str, ...], list[str]] = defaultdict(list) + for key, entry in words.items(): + cg = entry.get("confusable_group") + if cg: + group_id = tuple(sorted(cg)) + group_map[group_id].append(key) + + cleared = 0 + + for _group_id, members in group_map.items(): + if len(members) < 2: + continue + + # Collect vetted sentence text sets per member + member_texts: dict[str, frozenset[str]] = {} + for key in members: + vetted = (words[key].get("examples") or {}).get("vetted") or [] + texts = frozenset(e.get("text", "") for e in vetted) + member_texts[key] = texts + + # Find members with identical non-empty sentence sets + # Group members by their sentence set + text_groups: dict[frozenset[str], list[str]] = defaultdict(list) + for key, texts in member_texts.items(): + if texts: # skip entries with no examples + text_groups[texts].append(key) + + # For each set of members sharing identical examples, keep only the + # highest-frequency one + for _texts, sharing_keys in text_groups.items(): + if len(sharing_keys) < 2: + continue + + # Sort by frequency_rank (lower = more common = winner). + # No frequency → sort last (use large sentinel). + # Tie-break: alphabetical by unique_key. + def _sort_key(k: str) -> tuple[int, str]: + rank = words[k].get("frequency_rank") + return (rank if rank is not None else 999999, k) + + sharing_keys.sort(key=_sort_key) + winner = sharing_keys[0] + losers = sharing_keys[1:] + + for loser_key in losers: + entry = words[loser_key] + examples = entry.get("examples") or {} + examples["vetted"] = [] + examples.pop("cloze", None) + entry["examples"] = examples + cleared += 1 + logger.debug(f" Cleared examples from {loser_key} (kept on {winner})") + + return cleared + + # ── Public API ─────────────────────────────────────────────────── diff --git a/pealim_detail_scrape.py b/pealim_detail_scrape.py index e3c83ea..cca4461 100644 --- a/pealim_detail_scrape.py +++ b/pealim_detail_scrape.py @@ -40,6 +40,9 @@ SAVE_INTERVAL = 50 # write words.json every N processed entries WORDS_JSON = Path(__file__).parent / "data" / "words.json" +# Regex for Hebrew prepositions wrapped in parentheses, e.g. "(על)" or "(ב-)" +HBPAREN_RE = re.compile(r"\(([\u05b0-\u05ea\u05f0-\u05f4\-]+)\)") + BINYAN_NAMES: tuple[str, ...] = ("Pa'al", "Nif'al", "Pi'el", "Pu'al", "Hitpa'el", "Hif'il", "Huf'al") _BINYAN_NAMES_LOWER: tuple[str, ...] = tuple(b.lower() for b in BINYAN_NAMES) @@ -948,9 +951,17 @@ def _scrape_verb_detail(slug: str, mo_html: str, vl_html: str, existing_conj: di binyan = _extract_binyan_from_page(mo_soup) meaning = "" + prep: str | None = None lead_div = mo_soup.find("div", class_="lead") if lead_div: meaning = lead_div.get_text(strip=True) + # Extract preposition(s) from the lead text, e.g. "(על)" → "על" + prep_matches = HBPAREN_RE.findall(meaning) + if prep_matches: + prep = " ".join(prep_matches) + # Fall back to any prep already stored (e.g. from a previous manual edit) + if prep is None: + prep = existing.get("prep") # Parse active forms mo_active = _parse_conjugation_table(mo_soup, passive=False) @@ -1002,7 +1013,7 @@ def _scrape_verb_detail(slug: str, mo_html: str, vl_html: str, existing_conj: di "binyan": binyan, "binyan_hebrew": BINYAN_HEBREW.get(binyan, ""), "meaning": meaning, - "prep": existing.get("prep"), + "prep": prep, "active_forms": active_forms, "hufal_pual_forms": hufal_pual_forms, "reference_form_passive": reference_form_passive, diff --git a/pealim_list_scrape.py b/pealim_list_scrape.py index 16c8308..5bb1190 100644 --- a/pealim_list_scrape.py +++ b/pealim_list_scrape.py @@ -86,6 +86,9 @@ EMOJI_RE = re.compile( re.UNICODE, ) +# Regex for extracting Hebrew prepositions wrapped in parentheses, e.g. "(על)" or "(ב-)" +HBPAREN_RE = re.compile(r"\(([\u05b0-\u05ea\u05f0-\u05f4\-]+)\)") + # Fields that must never be overwritten when updating an existing entry PROTECTED_FIELDS = frozenset( [ @@ -149,6 +152,7 @@ def _default_entry() -> dict: "image": None, "image_source": None, "hint": "", + "prep": None, "shared_roots": [], "confusable_group": None, "confusables_guid": None, @@ -170,8 +174,9 @@ def _extract_emoji(text: str) -> str | None: def _clean_meaning(raw: str) -> str: - """Strip emoji and extra whitespace from a raw meaning string.""" + """Strip emoji, Hebrew parenthesized prepositions, and extra whitespace from a raw meaning string.""" cleaned = EMOJI_RE.sub("", raw) + cleaned = HBPAREN_RE.sub("", cleaned) return " ".join(cleaned.split()) @@ -453,6 +458,9 @@ def _merge_row( emoji = _extract_emoji(meaning_raw_raw) tags = _build_tags(pos_en, root) audio_file = _compute_audio_file(slug, ktiv_male) + # Extract Hebrew preposition(s) from the raw meaning (e.g. "(על)" → "על") + prep_matches = HBPAREN_RE.findall(meaning_raw) + prep: str | None = " ".join(prep_matches) if prep_matches else None # ---- locate existing entry ---- unique_key: str | None = slug_index.get(slug) if slug else None @@ -468,6 +476,7 @@ def _merge_row( entry["pos_hebrew"] = pos_heb entry["meaning"] = meaning entry["meaning_raw"] = meaning_raw + entry["prep"] = prep entry["audio_url"] = audio_url entry["audio_file"] = audio_file entry["tags"] = tags @@ -484,6 +493,7 @@ def _merge_row( entry["pos_hebrew"] = pos_heb entry["meaning"] = meaning entry["meaning_raw"] = meaning_raw + entry["prep"] = prep entry["emoji"] = emoji entry["emoji_source"] = "from_pealim" if emoji else None entry["audio_url"] = audio_url diff --git a/release.py b/release.py index 8b5a74b..082176b 100644 --- a/release.py +++ b/release.py @@ -20,8 +20,11 @@ from pathlib import Path import requests +sys.path.insert(0, "/home/node/projects") +import load_keeshare + REPO_API = "https://git.nevo.engineer/api/v1/repos/nevo/hebrew_flash_cards" -FORGEJO_TOKEN = "f023bd4cfd4b77aac584647f2fa8481df3906578" +FORGEJO_TOKEN: str = load_keeshare.get_entry("git.nevo.engineer")["API_TOKEN"] OUTPUT_DIR = Path(__file__).parent / "output" # All deck variants to include in release diff --git a/scripts/validate_data.py b/scripts/validate_data.py index 9b348ae..d012c48 100644 --- a/scripts/validate_data.py +++ b/scripts/validate_data.py @@ -685,6 +685,57 @@ def test_no_stripped_form_sentence_collisions(data: dict[str, Any]) -> None: _pass(name) +def test_no_shared_confusable_examples(data: dict[str, Any]) -> None: + """Within each confusable group, no two entries should share the same set of vetted sentence texts. + + Shared examples indicate the deduplication step in epub_examples.py + failed to assign examples to only the highest-frequency member. + """ + name = "no_shared_confusable_examples" + errors: list[str] = [] + + from collections import defaultdict + + # Build confusable group map + group_map: dict[tuple[str, ...], list[str]] = defaultdict(list) + for key, entry in data.items(): + cg = entry.get("confusable_group") + if cg: + group_id = tuple(sorted(cg)) + group_map[group_id].append(key) + + for _group_id, members in group_map.items(): + if len(members) < 2: + continue + + # Collect sentence text sets per member + text_sets: dict[str, frozenset[str]] = {} + for key in members: + vetted = (data[key].get("examples") or {}).get("vetted") or [] + texts = frozenset(e.get("text", "") for e in vetted) + if texts: + text_sets[key] = texts + + # Check for identical sets + seen: dict[frozenset[str], str] = {} + for key, texts in text_sets.items(): + if texts in seen: + meaning_a = (data[seen[texts]].get("meaning") or "")[:30] + meaning_b = (data[key].get("meaning") or "")[:30] + errors.append( + f"{seen[texts]} ({meaning_a}) and {key} ({meaning_b}) share {len(texts)} identical example(s)" + ) + else: + seen[texts] = key + + if errors: + _fail(name, errors[:20] if not _verbose else errors) + if len(errors) > 20 and not _verbose: + print(f" ... ({len(errors) - 20} more; use --verbose)") + else: + _pass(name) + + def test_no_hebrew_in_meaning(data: dict[str, Any]) -> None: """English meanings must not contain bare Hebrew text (spoils the card).""" name = "no_hebrew_in_meaning" @@ -801,6 +852,7 @@ ALL_TESTS: dict[str, Any] = { "conjugation_form_guids": test_conjugation_form_guids, "conjugation_person_codes": test_conjugation_person_codes, "no_stripped_form_sentence_collisions": test_no_stripped_form_sentence_collisions, + "no_shared_confusable_examples": test_no_shared_confusable_examples, "no_hebrew_in_meaning": test_no_hebrew_in_meaning, "mishkal_consistency": test_mishkal_consistency, } diff --git a/tests/test_epub_examples.py b/tests/test_epub_examples.py new file mode 100644 index 0000000..6554f82 --- /dev/null +++ b/tests/test_epub_examples.py @@ -0,0 +1,127 @@ +"""Tests for epub_examples deduplication of confusable group examples.""" + +from epub_examples import _deduplicate_confusable_examples + + +def _make_entry(meaning, confusable_group, vetted_texts=None, frequency_rank=None): + """Build a minimal words.json entry for testing.""" + entry = { + "meaning": meaning, + "confusable_group": confusable_group, + } + if vetted_texts is not None: + entry["examples"] = { + "vetted": [{"text": t, "source": "test", "match_method": "direct"} for t in vetted_texts], + } + if frequency_rank is not None: + entry["frequency_rank"] = frequency_rank + return entry + + +class TestDeduplicateConfusableExamples: + """Tests for _deduplicate_confusable_examples().""" + + def test_shared_examples_kept_on_higher_frequency(self): + """When two confusables share identical examples, the one with + lower frequency_rank (more common) keeps them.""" + group = ["key_a", "key_b"] + words = { + "key_a": _make_entry("brother", group, ["sent1", "sent2"], frequency_rank=500), + "key_b": _make_entry("fireplace", group, ["sent1", "sent2"], frequency_rank=8000), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 1 + assert len(words["key_a"]["examples"]["vetted"]) == 2 + assert words["key_b"]["examples"]["vetted"] == [] + + def test_no_action_when_examples_differ(self): + """Groups with different example sets are left untouched.""" + group = ["key_a", "key_b"] + words = { + "key_a": _make_entry("meaning1", group, ["sent1"], frequency_rank=100), + "key_b": _make_entry("meaning2", group, ["sent2"], frequency_rank=200), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 0 + assert len(words["key_a"]["examples"]["vetted"]) == 1 + assert len(words["key_b"]["examples"]["vetted"]) == 1 + + def test_no_action_when_one_has_no_examples(self): + """If only one member has examples, nothing to deduplicate.""" + group = ["key_a", "key_b"] + words = { + "key_a": _make_entry("meaning1", group, ["sent1"], frequency_rank=100), + "key_b": _make_entry("meaning2", group, frequency_rank=200), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 0 + + def test_no_frequency_uses_alphabetical_tiebreak(self): + """When no member has frequency data, first alphabetically wins.""" + group = ["alpha_key", "beta_key"] + words = { + "alpha_key": _make_entry("meaning1", group, ["sent1"]), + "beta_key": _make_entry("meaning2", group, ["sent1"]), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 1 + assert len(words["alpha_key"]["examples"]["vetted"]) == 1 + assert words["beta_key"]["examples"]["vetted"] == [] + + def test_three_way_group(self): + """Three-member group: highest frequency wins, other two cleared.""" + group = ["key_a", "key_b", "key_c"] + words = { + "key_a": _make_entry("yes", group, ["sent1", "sent2"], frequency_rank=50), + "key_b": _make_entry("honest", group, ["sent1", "sent2"], frequency_rank=3000), + "key_c": _make_entry("pedestal", group, ["sent1", "sent2"], frequency_rank=15000), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 2 + assert len(words["key_a"]["examples"]["vetted"]) == 2 + assert words["key_b"]["examples"]["vetted"] == [] + assert words["key_c"]["examples"]["vetted"] == [] + + def test_cloze_removed_from_losers(self): + """Losing entries should have their cloze data removed too.""" + group = ["key_a", "key_b"] + words = { + "key_a": _make_entry("common", group, ["sent1"], frequency_rank=100), + "key_b": _make_entry("rare", group, ["sent1"], frequency_rank=9000), + } + # Add cloze to both + words["key_b"]["examples"]["cloze"] = {"text": "sent1", "cloze_guid": "abc"} + cleared = _deduplicate_confusable_examples(words) + assert cleared == 1 + assert "cloze" not in words["key_b"]["examples"] + + def test_no_confusable_groups_returns_zero(self): + """Words without confusable_group are ignored.""" + words = { + "key_a": {"meaning": "word1", "examples": {"vetted": [{"text": "s1"}]}}, + "key_b": {"meaning": "word2", "examples": {"vetted": [{"text": "s1"}]}}, + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 0 + + def test_mixed_frequency_and_none(self): + """Member with frequency beats member without.""" + group = ["key_a", "key_b"] + words = { + "key_a": _make_entry("has_freq", group, ["sent1"], frequency_rank=5000), + "key_b": _make_entry("no_freq", group, ["sent1"]), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 1 + assert len(words["key_a"]["examples"]["vetted"]) == 1 + assert words["key_b"]["examples"]["vetted"] == [] + + def test_partial_overlap_not_deduplicated(self): + """Groups with overlapping but not identical sentence sets are not touched.""" + group = ["key_a", "key_b"] + words = { + "key_a": _make_entry("m1", group, ["sent1", "sent2"], frequency_rank=100), + "key_b": _make_entry("m2", group, ["sent1", "sent3"], frequency_rank=200), + } + cleared = _deduplicate_confusable_examples(words) + assert cleared == 0