├── .gitattributes ├── programs ├── images │ ├── tf.png │ ├── dans.png │ ├── etcbc.png │ ├── tf-small.png │ ├── dans-small.png │ ├── etcbc-orig.png │ ├── etcbc-round.png │ ├── etcbc-small.png │ ├── etcbc-round-orig.png │ └── etcbc-round-small.png ├── helpers.py ├── utils.py ├── categories.txt ├── language.ipynb ├── category.ipynb └── allCategoriesCases.tsv ├── .flake8 ├── yaml ├── bridging.yaml └── generic.yaml ├── .gitignore ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.tf -linguist-detectable 2 | jquery.js -linguist-vendored 3 | -------------------------------------------------------------------------------- /programs/images/tf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/tf.png -------------------------------------------------------------------------------- /programs/images/dans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/dans.png -------------------------------------------------------------------------------- /programs/images/etcbc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/etcbc.png -------------------------------------------------------------------------------- /programs/images/tf-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/tf-small.png -------------------------------------------------------------------------------- /programs/images/dans-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/dans-small.png -------------------------------------------------------------------------------- /programs/images/etcbc-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/etcbc-orig.png -------------------------------------------------------------------------------- /programs/images/etcbc-round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/etcbc-round.png -------------------------------------------------------------------------------- /programs/images/etcbc-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/etcbc-small.png -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | select = C,E,F,W,B,B950 3 | ignore = E203, E501, W503 4 | builtins = C,E,Eall,Es,F,Fall,Fs,L,N,S,T,TF 5 | -------------------------------------------------------------------------------- /programs/images/etcbc-round-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/etcbc-round-orig.png -------------------------------------------------------------------------------- /programs/images/etcbc-round-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ETCBC/bridging/master/programs/images/etcbc-round-small.png -------------------------------------------------------------------------------- /yaml/bridging.yaml: -------------------------------------------------------------------------------- 1 | osm: 2 | desc: "🆗 morphology tag (primary morpheme) by OpenScriptures" 3 | eg: "HR HVqp3ms" 4 | 5 | osm_sf: 6 | desc: "🆗 morphology tag (secundary morpheme) by OpenScriptures" 7 | -------------------------------------------------------------------------------- /yaml/generic.yaml: -------------------------------------------------------------------------------- 1 | source: Open Scriptures 2 | source_url: https://github.com/openscriptures/morphhb 3 | provenance: notebook BHSAbridgeOSM in https://github.com/ETCBC/bridging 4 | conversion_author: Dirk Roorda 5 | coreData: BHSA 6 | -------------------------------------------------------------------------------- /programs/helpers.py: -------------------------------------------------------------------------------- 1 | def show(T, F, ws, getBHSinfo, getOSMinfo, indent='', asString=False): 2 | ''' 3 | We need to show cases. 4 | Prints information about the word nodes in list `ws`. 5 | Which information is printed, depends on the two other arguments, 6 | which are functions, taking a word node 7 | and delivering information about that word. 8 | `getBHSInfo` will be used to grab BHS info, `getOSMinfo` will be used to grab OSM info. 9 | ''' 10 | t = ('{}{} w{}"{}"\n{}\tBHS: {}\n{}\tOSM: {}'.format( 11 | indent, 12 | '{} {}:{}'.format(*T.sectionFromNode(ws[0])), 13 | '/'.join(str(w) for w in ws), 14 | '/'.join(F.g_word_utf8.v(w) for w in ws), 15 | indent, 16 | '/'.join(getBHSinfo(w) for w in ws), 17 | indent, 18 | '/'.join(getOSMinfo(w) for w in ws), 19 | )) 20 | if asString: 21 | return t 22 | print(t) 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | *.com 4 | *.class 5 | *.dll 6 | *.exe 7 | *.o 8 | *.so 9 | 10 | # Packages # 11 | ############ 12 | # it's better to unpack these files and commit the raw source 13 | # git has its own built in compression methods 14 | *.7z 15 | *.dmg 16 | *.iso 17 | *.jar 18 | *.rar 19 | *.zip 20 | 21 | # Logs and databases # 22 | ###################### 23 | *.log 24 | *.sql 25 | *.sqlite 26 | 27 | # OS generated files # 28 | ###################### 29 | .DS_Store 30 | .DS_Store? 31 | ._* 32 | .Spotlight-V100 33 | .Trashes 34 | ehthumbs.db 35 | Thumbs.db 36 | 37 | # Temporary files # 38 | ################### 39 | *.swp 40 | *.pyc 41 | *.tfx 42 | 43 | # Build directories # 44 | ##################### 45 | _site/ 46 | _themes/ 47 | _temp/ 48 | _local/ 49 | _build/ 50 | __pycache__/ 51 | .ipynb_checkpoints/ 52 | .tf/ 53 | 54 | # Config files which get locally modified 55 | ######################################### 56 | .jekyll-metadata 57 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Dirk Roorda 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bridge between ETCBC and Open Scriptures 2 | 3 | [![SWH](https://archive.softwareheritage.org/badge/origin/https://github.com/ETCBC/bridging/)](https://archive.softwareheritage.org/browse/origin/https://github.com/ETCBC/bridging/) 4 | [![DOI](https://zenodo.org/badge/116673254.svg)](https://zenodo.org/badge/latestdoi/116673254) 5 | [![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) 6 | 7 | [![etcbc](programs/images/etcbc.png)](http://www.etcbc.nl) 8 | [![dans](programs/images/dans.png)](https://dans.knaw.nl/en) 9 | [![tf](programs/images/tf-small.png)](https://annotation.github.io/text-fabric/tf) 10 | 11 | ### BHSA Family 12 | 13 | * [bhsa](https://github.com/etcbc/bhsa) Core data and feature documentation 14 | * [phono](https://github.com/etcbc/phono) Phonological representation of Hebrew words 15 | * [parallels](https://github.com/etcbc/parallels) Links between similar verses 16 | * [valence](https://github.com/etcbc/valence) Verbal valence for all occurrences 17 | of some verbs 18 | * [trees](https://github.com/etcbc/trees) Tree structures for all sentences 19 | * [bridging](https://github.com/etcbc/bridging) Open Scriptures morphology 20 | ported to the BHSA 21 | * [pipeline](https://github.com/etcbc/pipeline) Generate the BHSA and SHEBANQ 22 | from internal ETCBC data files 23 | * [shebanq](https://github.com/etcbc/shebanq) Engine of the 24 | [shebanq](https://shebanq.ancient-data.org) website 25 | 26 | ### Extended family 27 | 28 | * [dss](https://github.com/etcbc/dss) Dead Sea Scrolls 29 | * [extrabiblical](https://github.com/etcbc/extrabiblical) 30 | Extra-biblical writings from ETCBC-encoded texts 31 | * [peshitta](https://github.com/etcbc/peshitta) 32 | Syriac translation of the Hebrew Bible 33 | * [syrnt](https://github.com/etcbc/syrnt) 34 | Syriac translation of the New Testament 35 | 36 | ## About 37 | 38 | Both the BHSA and the 39 | [OpenScriptures](https://github.com/openscriptures/morphhb) 40 | add linguistic markup to the Hebrew Bible. 41 | 42 | The BHSA is the product of years of encoding work by researchers, 43 | in a strongly algorithmic fashion, 44 | although not without human decisions at the micro level. 45 | 46 | OpenScriptures represents a crowd sourced approach. 47 | 48 | In this repo we compare them. 49 | As a by-product, a mapping of BHSA words to OS morphemes is made, 50 | and the OS morphological information of each word is made available 51 | as a new word feature in the BHSA. 52 | 53 | When we first made the comparison, in 2017, 54 | only 88% of the OpenScriptures Morphology was completed. 55 | 56 | In 2021 we have pulled the same repository again, used a new version of the BHSA 57 | and did the comparison again. 58 | 59 | # Author 60 | 61 | [Dirk Roorda](https://github.com/dirkroorda) 62 | 63 | -------------------------------------------------------------------------------- /programs/utils.py: -------------------------------------------------------------------------------- 1 | # WARNING: DO NOT EDIT if this file is not in the pipeline repo !!! 2 | # FILE WILL BE OVERWRITTEN 3 | 4 | # The master copy of this file is the one in the pipeline repo. 5 | # When the pipeline runs, the master copy is copied into 6 | # all involved repos, overwriting the copy existing there. 7 | 8 | 9 | import sys 10 | import os 11 | import time 12 | import bz2 13 | import gzip as gz 14 | from shutil import rmtree, copytree, copy 15 | from itertools import zip_longest 16 | from glob import glob 17 | 18 | 19 | def bzip(uzFile, bzFile): 20 | xB = os.path.exists(bzFile) 21 | xU = os.path.exists(uzFile) 22 | if not xU: 23 | if xB: 24 | caption( 25 | 0, "\tWARNING: unzipped file is missing. Using existing bzipped file" 26 | ) 27 | else: 28 | caption(0, "\tERROR: Cannot bzip because unzipped file is missing") 29 | return 30 | if not xB or os.path.getmtime(uzFile) > os.path.getmtime(bzFile): 31 | with bz2.open(bzFile, mode="wt") as bdata: 32 | with open(uzFile, "r") as udata: 33 | bdata.write(udata.read()) 34 | else: 35 | caption( 36 | 0, "\tNOTE: Using existing bzipped file which is newer than unzipped one" 37 | ) 38 | 39 | 40 | def bunzip(bzFile, uzFile): 41 | xB = os.path.exists(bzFile) 42 | xU = os.path.exists(uzFile) 43 | if not xB: 44 | if xU: 45 | caption( 46 | 0, "\tWARNING: bzipped file is missing. Using existing unzipped file" 47 | ) 48 | else: 49 | caption(0, "\tERROR: Cannot unzip because bzipped file is missing") 50 | return 51 | if not xU or os.path.getmtime(bzFile) > os.path.getmtime(uzFile): 52 | with bz2.open(bzFile, mode="rt") as bdata: 53 | with open(uzFile, "w") as udata: 54 | udata.write(bdata.read()) 55 | else: 56 | caption( 57 | 0, "\tNOTE: Using existing unzipped file which is newer than bzipped one" 58 | ) 59 | 60 | 61 | def gzip(uzFile, gzFile): 62 | xB = os.path.exists(gzFile) 63 | xU = os.path.exists(uzFile) 64 | if not xU: 65 | if xB: 66 | caption( 67 | 0, "\tWARNING: unzipped file is missing. Using existing gzipped file" 68 | ) 69 | else: 70 | caption(0, "\tERROR: Cannot gzip because unzipped file is missing") 71 | return 72 | if not xB or os.path.getmtime(uzFile) > os.path.getmtime(gzFile): 73 | with gz.open(gzFile, mode="wt") as gdata: 74 | with open(uzFile, "rt") as udata: 75 | gdata.write(udata.read()) 76 | else: 77 | caption( 78 | 0, "\tNOTE: Using existing gzipped file which is newer than unzipped one" 79 | ) 80 | 81 | 82 | def gunzip(gzFile, uzFile): 83 | xB = os.path.exists(gzFile) 84 | xU = os.path.exists(uzFile) 85 | if not xB: 86 | if xU: 87 | caption( 88 | 0, "\tWARNING: gzipped file is missing. Using existing unzipped file" 89 | ) 90 | else: 91 | caption(0, "\tERROR: Cannot unzip because gzipped file is missing") 92 | return 93 | if not xU or os.path.getmtime(gzFile) > os.path.getmtime(uzFile): 94 | with gz.open(gzFile, mode="rt") as gdata: 95 | with open(uzFile, "w") as udata: 96 | udata.write(gdata.read()) 97 | else: 98 | caption( 99 | 0, "\tNOTE: Using existing unzipped file which is newer than gzipped one" 100 | ) 101 | 102 | 103 | timestamp = None 104 | 105 | 106 | def _duration(): 107 | global timestamp 108 | if timestamp is None: 109 | timestamp = time.time() 110 | 111 | interval = time.time() - timestamp 112 | if interval < 10: 113 | return "{: 2.2f}s".format(interval) 114 | interval = int(round(interval)) 115 | if interval < 60: 116 | return "{:>2d}s".format(interval) 117 | if interval < 3600: 118 | return "{:>2d}m {:>02d}s".format(interval // 60, interval % 60) 119 | return "{:>2d}h {:>02d}m {:>02d}s".format( 120 | interval // 3600, (interval % 3600) // 60, interval % 60 121 | ) 122 | 123 | 124 | def caption(level, heading, good=None, newLine=True, continuation=False): 125 | channel = sys.stdout if good is None or good else sys.stderr 126 | prefix = "" if good is None else "SUCCES " if good else "FAILURE " 127 | duration = "" if continuation else "{:>11} ".format(_duration()) 128 | reportHeading = "{}{}{}".format(duration, prefix, heading) 129 | 130 | if level == 0: # non-heading message 131 | decoration = "" if continuation else "| " 132 | formattedString = """{}{}""".format(decoration, reportHeading) 133 | elif level == 1: # pipeline level 134 | formattedString = """ 135 | ##{}## 136 | # {} # 137 | # {} # 138 | # {} # 139 | ##{}## 140 | """.format( 141 | "#" * 90, 142 | " " * 90, 143 | "{:<90}".format(reportHeading), 144 | " " * 90, 145 | "#" * 90, 146 | ) 147 | elif level == 2: # repo level 148 | formattedString = """ 149 | **{}** 150 | * {} * 151 | * {} * 152 | * {} * 153 | **{}** 154 | """.format( 155 | "*" * 90, 156 | " " * 90, 157 | "{:<90}".format(reportHeading), 158 | " " * 90, 159 | "*" * 90, 160 | ) 161 | elif level == 3: # task level 162 | formattedString = """ 163 | --{}-- 164 | - {} - 165 | --{}-- 166 | """.format( 167 | "-" * 90, 168 | "{:<90}".format(reportHeading), 169 | "-" * 90, 170 | ) 171 | elif level == 4: # caption within task execution 172 | formattedString = """..{}.. 173 | . {} . 174 | ..{}..""".format( 175 | "." * 90, 176 | "{:<90}".format(reportHeading), 177 | "." * 90, 178 | ) 179 | if newLine: 180 | channel.write(formattedString + "\n") 181 | else: 182 | channel.write(formattedString) 183 | channel.flush() 184 | 185 | 186 | def mustRun(fileIn, fileOut, force=False): 187 | xFileIn = None if fileIn is None else os.path.exists(fileIn) 188 | xFileOut = os.path.exists(fileOut) 189 | tFileIn = os.path.getmtime(fileIn) if xFileIn else None 190 | tFileOut = os.path.getmtime(fileOut) if xFileOut else None 191 | good = True 192 | work = True 193 | if fileIn is None: 194 | if xFileOut: 195 | caption(0, "\tDestination {} exists".format(fileOut)) 196 | work = False 197 | else: 198 | caption(0, "\tDestination {} does not exist".format(fileOut)) 199 | work = True 200 | elif xFileIn: 201 | caption(0, "\tSource {} exists".format(fileIn)) 202 | if xFileOut: 203 | caption(0, "\tDestination {} exists".format(fileOut)) 204 | if tFileOut >= tFileIn: 205 | caption(0, "\tDestination {} up to date".format(fileOut)) 206 | work = False 207 | else: 208 | caption(0, "\tDestination {} is outdated".format(fileOut)) 209 | else: 210 | caption(0, "\tDestination {} does not exist".format(fileOut)) 211 | else: 212 | caption(0, "\tSource {} does not exist".format(fileIn)) 213 | if xFileOut: 214 | caption(0, "\tDestination {} exists".format(fileOut)) 215 | caption(0, "\tDestination {} counts as up to date".format(fileOut)) 216 | work = False 217 | else: 218 | caption(0, "\tDestination {} does not exist".format(fileOut)) 219 | caption( 220 | 0, "\tDestination {} cannot be made: source is missing".format(fileOut) 221 | ) 222 | good = False 223 | work = False 224 | 225 | if good and force and not work: 226 | caption(0, 'NOTE: repo seems up to date. Will be run because of "force=True"') 227 | work = True 228 | return (good, work or force) 229 | 230 | 231 | def checkDiffs(thisSave, thisDeliver, only=None): 232 | def diffFeature(f): 233 | caption(0, "{:<25} ... ".format(f), newLine=False) 234 | existingPath = "{}/{}.tf".format(thisDeliver, f) 235 | newPath = "{}/{}.tf".format(thisSave, f) 236 | with open(existingPath) as h: 237 | eLines = ( 238 | h.readlines() 239 | if f == "otext" 240 | else (d for d in h.readlines() if not d.startswith("@")) 241 | ) 242 | with open(newPath) as h: 243 | nLines = ( 244 | h.readlines() 245 | if f == "otext" 246 | else (d for d in h.readlines() if not d.startswith("@")) 247 | ) 248 | i = 0 249 | equal = True 250 | cutOff = 40 251 | limit = 4 252 | nUnequal = 0 253 | for (e, n) in zip_longest(eLines, nLines, fillvalue=""): 254 | i += 1 255 | if e != n: 256 | if nUnequal == 0: 257 | caption( 258 | 0, 259 | "differences{}".format( 260 | "" if f == "otext" else " after the metadata" 261 | ), 262 | continuation=True, 263 | ) 264 | shortE = e[0:cutOff] + (" ..." if len(e) > cutOff else "") 265 | shortN = n[0:cutOff] + (" ..." if len(n) > cutOff else "") 266 | caption(0, "\tline {:>6} OLD -->{}<--".format(i, shortE.rstrip("\n"))) 267 | caption(0, "\tline {:>6} NEW -->{}<--".format(i, shortN.rstrip("\n"))) 268 | equal = False 269 | nUnequal += 1 270 | if nUnequal >= limit: 271 | break 272 | 273 | caption(0, "no changes" if equal else "", continuation=True) 274 | 275 | caption(4, "Check differences with previous version") 276 | existingFiles = glob("{}/*.tf".format(thisDeliver)) 277 | newFiles = glob("{}/*.tf".format(thisSave)) 278 | existingFeatures = {os.path.basename(os.path.splitext(f)[0]) for f in existingFiles} 279 | newFeatures = {os.path.basename(os.path.splitext(f)[0]) for f in newFiles} 280 | 281 | if only is not None: 282 | existingFeatures &= only 283 | newFeatures &= only 284 | 285 | addedOnes = newFeatures - existingFeatures 286 | deletedOnes = existingFeatures - newFeatures 287 | commonOnes = newFeatures & existingFeatures 288 | 289 | if addedOnes: 290 | caption(0, "\t{} features to add".format(len(addedOnes))) 291 | for f in sorted(addedOnes): 292 | caption(0, "\t\t{}".format(f)) 293 | else: 294 | caption(0, "\tno features to add") 295 | if deletedOnes: 296 | caption(0, "\t{} features to delete".format(len(deletedOnes))) 297 | for f in sorted(deletedOnes): 298 | caption(0, "\t\t{}".format(f)) 299 | else: 300 | caption(0, "\tno features to delete") 301 | 302 | caption(0, "\t{} features in common".format(len(commonOnes))) 303 | for f in sorted(commonOnes): 304 | diffFeature(f) 305 | caption(0, "Done") 306 | 307 | 308 | def deliverDataset(thisSave, thisDeliver): 309 | caption(4, "Deliver data set to {}".format(thisDeliver)) 310 | if os.path.exists(thisDeliver): 311 | rmtree(thisDeliver) 312 | copytree(thisSave, thisDeliver) 313 | 314 | 315 | def deliverFeatures(thisSave, thisDeliver, newFeatures, deleteFeatures=None): 316 | caption(4, "Deliver features to {}".format(thisDeliver)) 317 | if not os.path.exists(thisDeliver): 318 | os.makedirs(thisDeliver) 319 | for feature in newFeatures: 320 | tempLoc = "{}/{}.tf".format(thisSave, feature) 321 | deliverLoc = "{}/{}.tf".format(thisDeliver, feature) 322 | caption(0, "\t{}".format(feature)) 323 | copy(tempLoc, deliverLoc) 324 | if deleteFeatures is not None: 325 | caption(4, "Delete features from {}".format(thisDeliver)) 326 | for feature in deleteFeatures: 327 | caption(0, "\t{} ... ".format(feature), newLine=False) 328 | deliverLoc = "{}/{}.tf".format(thisDeliver, feature) 329 | if os.path.exists(deliverLoc): 330 | os.remove(deliverLoc) 331 | caption(0, "deleted", continuation=True) 332 | else: 333 | caption(0, "was not present", continuation=True) 334 | -------------------------------------------------------------------------------- /programs/categories.txt: -------------------------------------------------------------------------------- 1 | 2 | o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o 3 | o-o COMPARING FEATURE main 4 | o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o 5 | 6 | 7 | --------------------------------------------------------------------------------- 8 | --- main OSM ===> BHS 9 | --------------------------------------------------------------------------------- 10 | 11 | adjective:adjective 12 | adjective:: ( 92% = 6769x) 13 | noun:: ( 4% = 303x) 14 | adjective:ordinal: ( 2% = 123x) 15 | verb:: ( 1% = 96x) 16 | noun:potential adverb: ( 0% = 16x) 17 | adjective:gentilic: ( 0% = 5x) 18 | adverb:: ( 0% = 3x) 19 | proper noun::person ( 0% = 2x) 20 | noun:cardinal: ( 0% = 1x) 21 | noun:potential preposition: ( 0% = 1x) 22 | preposition:: ( 0% = 1x) 23 | adjective:cardinal number 24 | noun:cardinal: ( 98% = 6261x) 25 | noun:: ( 1% = 69x) 26 | proper noun::place ( 0% = 19x) 27 | noun:noun of multitude: ( 0% = 15x) 28 | proper noun::person ( 0% = 9x) 29 | adjective:ordinal: ( 0% = 1x) 30 | verb:: ( 0% = 1x) 31 | adjective:ordinal number 32 | adjective:ordinal: ( 95% = 601x) 33 | noun:cardinal: ( 3% = 17x) 34 | noun:: ( 3% = 16x) 35 | adverb:: ( 0% = 1x) 36 | adverb 37 | adverb:: ( 64% = 2611x) 38 | noun:potential adverb: ( 22% = 899x) 39 | noun:: ( 3% = 143x) 40 | adverb:anaphoric adverb: ( 3% = 123x) 41 | adverb:focus particle: ( 3% = 111x) 42 | noun:potential preposition: ( 2% = 96x) 43 | interjection:: ( 2% = 75x) 44 | interrogative particle:: ( 1% = 33x) 45 | adjective:: ( 0% = 3x) 46 | verb:: ( 0% = 2x) 47 | noun:copulative noun: ( 0% = 1x) 48 | preposition:: ( 0% = 1x) 49 | conjunction 50 | conjunction:: ( 99% = 57027x) 51 | noun:potential preposition: ( 0% = 227x) 52 | preposition:: ( 0% = 103x) 53 | verb:: ( 0% = 13x) 54 | demonstrative pronoun:: ( 0% = 8x) 55 | adverb:: ( 0% = 5x) 56 | adverb:conjunctive adverb: ( 0% = 5x) 57 | noun:: ( 0% = 5x) 58 | adjective:: ( 0% = 1x) 59 | interrogative particle:: ( 0% = 1x) 60 | noun:distributive noun: ( 0% = 1x) 61 | noun:common 62 | noun:: ( 86% = 94800x) 63 | noun:distributive noun: ( 9% = 9410x) 64 | noun:potential adverb: ( 4% = 4273x) 65 | noun:potential preposition: ( 1% = 848x) 66 | proper noun::person ( 0% = 446x) 67 | adjective:: ( 0% = 113x) 68 | verb:: ( 0% = 59x) 69 | noun:copulative noun: ( 0% = 46x) 70 | proper noun::place ( 0% = 33x) 71 | noun:noun of multitude: ( 0% = 17x) 72 | noun:cardinal: ( 0% = 8x) 73 | preposition:: ( 0% = 5x) 74 | adverb:: ( 0% = 2x) 75 | adjective:gentilic: ( 0% = 1x) 76 | adjective:ordinal: ( 0% = 1x) 77 | proper noun::people ( 0% = 1x) 78 | verb:quotation verb: ( 0% = 1x) 79 | noun:gentilic 80 | adjective:gentilic: ( 97% = 1716x) 81 | noun:: ( 1% = 26x) 82 | proper noun::people ( 1% = 12x) 83 | proper noun::person ( 0% = 6x) 84 | adjective:: ( 0% = 5x) 85 | proper noun::place ( 0% = 4x) 86 | noun:proper name 87 | proper noun::person ( 78% = 25864x) 88 | proper noun::place ( 19% = 6291x) 89 | noun:: ( 2% = 672x) 90 | proper noun::people ( 1% = 215x) 91 | adjective:gentilic: ( 0% = 88x) 92 | proper noun::gentilic ( 0% = 28x) 93 | proper noun::measurement unit ( 0% = 20x) 94 | noun:potential preposition: ( 0% = 15x) 95 | adjective:: ( 0% = 5x) 96 | verb:: ( 0% = 5x) 97 | preposition:: ( 0% = 2x) 98 | proper noun:: ( 0% = 1x) 99 | noun:unknown 100 | noun:: (100% = 7x) 101 | particle 102 | preposition:: (100% = 7x) 103 | particle:affirmation 104 | adverb:focus particle: ( 92% = 1065x) 105 | noun:: ( 5% = 61x) 106 | noun:copulative noun: ( 2% = 19x) 107 | personal pronoun::demonstrative personal pronoun ( 1% = 6x) 108 | personal pronoun:: ( 0% = 2x) 109 | particle:definite article 110 | article:: (100% = 23858x) 111 | noun:: ( 0% = 7x) 112 | interrogative particle:interrogative particle: ( 0% = 6x) 113 | proper noun::person ( 0% = 2x) 114 | adjective:gentilic: ( 0% = 1x) 115 | preposition:: ( 0% = 1x) 116 | proper noun::place ( 0% = 1x) 117 | particle:demonstrative 118 | interjection:: ( 67% = 1140x) 119 | adverb:anaphoric adverb: ( 25% = 422x) 120 | noun:copulative noun: ( 8% = 138x) 121 | adjective:: ( 1% = 10x) 122 | conjunction:: ( 0% = 1x) 123 | particle:direct object marker 124 | preposition:: (100% = 11017x) 125 | conjunction:: ( 0% = 1x) 126 | particle:exhortation 127 | interjection:: ( 99% = 351x) 128 | adjective:: ( 0% = 1x) 129 | noun:: ( 0% = 1x) 130 | particle:interjection 131 | interjection:: ( 96% = 319x) 132 | noun:: ( 2% = 5x) 133 | verb:: ( 1% = 4x) 134 | interrogative particle:: ( 1% = 2x) 135 | negative particle:: ( 0% = 1x) 136 | proper noun::person ( 0% = 1x) 137 | particle:interrogative 138 | interrogative pronoun:: ( 48% = 997x) 139 | interrogative particle:interrogative particle: ( 36% = 743x) 140 | interrogative particle:: ( 16% = 321x) 141 | article:: ( 0% = 3x) 142 | noun:copulative noun: ( 0% = 1x) 143 | preposition:: ( 0% = 1x) 144 | particle:negative 145 | negative particle:: ( 88% = 6049x) 146 | noun:copulative noun: ( 11% = 784x) 147 | noun:potential preposition: ( 1% = 37x) 148 | preposition:: ( 0% = 21x) 149 | proper noun::person ( 0% = 4x) 150 | conjunction:: ( 0% = 2x) 151 | interrogative particle:: ( 0% = 1x) 152 | noun:: ( 0% = 1x) 153 | particle:relative 154 | conjunction:: ( 95% = 5651x) 155 | preposition:: ( 5% = 286x) 156 | verb:: ( 0% = 2x) 157 | adjective:gentilic: ( 0% = 1x) 158 | article:: ( 0% = 1x) 159 | noun:: ( 0% = 1x) 160 | noun:distributive noun: ( 0% = 1x) 161 | preposition 162 | preposition:: ( 96% = 55342x) 163 | noun:potential preposition: ( 4% = 2088x) 164 | adverb:conjunctive adverb: ( 0% = 200x) 165 | interrogative particle:: ( 0% = 178x) 166 | noun:: ( 0% = 15x) 167 | conjunction:: ( 0% = 5x) 168 | proper noun::person ( 0% = 4x) 169 | verb:: ( 0% = 4x) 170 | article:: ( 0% = 3x) 171 | negative particle:: ( 0% = 3x) 172 | interrogative pronoun:: ( 0% = 2x) 173 | adjective:: ( 0% = 1x) 174 | noun:distributive noun: ( 0% = 1x) 175 | noun:potential adverb: ( 0% = 1x) 176 | preposition:definite article 177 | preposition:: (100% = 6446x) 178 | article:: ( 0% = 6x) 179 | adjective:: ( 0% = 1x) 180 | pronoun:demonstrative 181 | demonstrative pronoun:: (100% = 2642x) 182 | personal pronoun::demonstrative personal pronoun ( 0% = 6x) 183 | adjective:: ( 0% = 1x) 184 | pronoun:indefinite 185 | interrogative pronoun:: ( 61% = 14x) 186 | preposition:: ( 22% = 5x) 187 | noun:: ( 17% = 4x) 188 | pronoun:interrogative 189 | interrogative pronoun:: (100% = 6x) 190 | pronoun:personal 191 | personal pronoun:: ( 50% = 2504x) 192 | personal pronoun::demonstrative personal pronoun ( 50% = 2487x) 193 | adverb:: ( 0% = 1x) 194 | pronoun:relative 195 | interrogative pronoun:: ( 50% = 2x) 196 | preposition:: ( 50% = 2x) 197 | suffix:pronominal 198 | personal pronoun::demonstrative personal pronoun (100% = 5x) 199 | verb 200 | verb:: ( 86% = 63326x) 201 | verb:quotation verb: ( 9% = 6519x) 202 | verb:copulative verb: ( 5% = 3636x) 203 | noun:: ( 0% = 101x) 204 | adjective:: ( 0% = 54x) 205 | noun:potential adverb: ( 0% = 3x) 206 | noun:distributive noun: ( 0% = 1x) 207 | preposition:: ( 0% = 1x) 208 | proper noun::person ( 0% = 1x) 209 | 210 | main (OSM ===> BHS): 712 cases 211 | 212 | --------------------------------------------------------------------------------- 213 | --- main BHS ===> OSM 214 | --------------------------------------------------------------------------------- 215 | 216 | adjective:: 217 | adjective:adjective ( 97% = 6769x) 218 | noun:common ( 2% = 113x) 219 | verb ( 1% = 54x) 220 | particle:demonstrative ( 0% = 10x) 221 | noun:gentilic ( 0% = 5x) 222 | noun:proper name ( 0% = 5x) 223 | adverb ( 0% = 3x) 224 | conjunction ( 0% = 1x) 225 | particle:exhortation ( 0% = 1x) 226 | preposition ( 0% = 1x) 227 | preposition:definite article ( 0% = 1x) 228 | pronoun:demonstrative ( 0% = 1x) 229 | adjective:gentilic: 230 | noun:gentilic ( 95% = 1716x) 231 | noun:proper name ( 5% = 88x) 232 | adjective:adjective ( 0% = 5x) 233 | noun:common ( 0% = 1x) 234 | particle:definite article ( 0% = 1x) 235 | particle:relative ( 0% = 1x) 236 | adjective:ordinal: 237 | adjective:ordinal number ( 83% = 601x) 238 | adjective:adjective ( 17% = 123x) 239 | adjective:cardinal number ( 0% = 1x) 240 | noun:common ( 0% = 1x) 241 | adverb:: 242 | adverb (100% = 2611x) 243 | conjunction ( 0% = 5x) 244 | adjective:adjective ( 0% = 3x) 245 | noun:common ( 0% = 2x) 246 | adjective:ordinal number ( 0% = 1x) 247 | pronoun:personal ( 0% = 1x) 248 | adverb:anaphoric adverb: 249 | particle:demonstrative ( 77% = 422x) 250 | adverb ( 23% = 123x) 251 | adverb:conjunctive adverb: 252 | preposition ( 98% = 200x) 253 | conjunction ( 2% = 5x) 254 | adverb:focus particle: 255 | particle:affirmation ( 91% = 1065x) 256 | adverb ( 9% = 111x) 257 | article:: 258 | particle:definite article (100% = 23858x) 259 | preposition:definite article ( 0% = 6x) 260 | particle:interrogative ( 0% = 3x) 261 | preposition ( 0% = 3x) 262 | particle:relative ( 0% = 1x) 263 | conjunction:: 264 | conjunction ( 91% = 57027x) 265 | particle:relative ( 9% = 5651x) 266 | preposition ( 0% = 5x) 267 | particle:negative ( 0% = 2x) 268 | particle:demonstrative ( 0% = 1x) 269 | particle:direct object marker ( 0% = 1x) 270 | demonstrative pronoun:: 271 | pronoun:demonstrative (100% = 2642x) 272 | conjunction ( 0% = 8x) 273 | interjection:: 274 | particle:demonstrative ( 60% = 1140x) 275 | particle:exhortation ( 19% = 351x) 276 | particle:interjection ( 17% = 319x) 277 | adverb ( 4% = 75x) 278 | interrogative particle:: 279 | particle:interrogative ( 60% = 321x) 280 | preposition ( 33% = 178x) 281 | adverb ( 6% = 33x) 282 | particle:interjection ( 0% = 2x) 283 | conjunction ( 0% = 1x) 284 | particle:negative ( 0% = 1x) 285 | interrogative particle:interrogative particle: 286 | particle:interrogative ( 99% = 743x) 287 | particle:definite article ( 1% = 6x) 288 | interrogative pronoun:: 289 | particle:interrogative ( 98% = 997x) 290 | pronoun:indefinite ( 1% = 14x) 291 | pronoun:interrogative ( 1% = 6x) 292 | preposition ( 0% = 2x) 293 | pronoun:relative ( 0% = 2x) 294 | negative particle:: 295 | particle:negative (100% = 6049x) 296 | preposition ( 0% = 3x) 297 | particle:interjection ( 0% = 1x) 298 | noun:: 299 | noun:common ( 99% = 94800x) 300 | noun:proper name ( 1% = 672x) 301 | adjective:adjective ( 0% = 303x) 302 | adverb ( 0% = 143x) 303 | verb ( 0% = 101x) 304 | adjective:cardinal number ( 0% = 69x) 305 | particle:affirmation ( 0% = 61x) 306 | noun:gentilic ( 0% = 26x) 307 | adjective:ordinal number ( 0% = 16x) 308 | preposition ( 0% = 15x) 309 | noun:unknown ( 0% = 7x) 310 | particle:definite article ( 0% = 7x) 311 | conjunction ( 0% = 5x) 312 | particle:interjection ( 0% = 5x) 313 | pronoun:indefinite ( 0% = 4x) 314 | particle:exhortation ( 0% = 1x) 315 | particle:negative ( 0% = 1x) 316 | particle:relative ( 0% = 1x) 317 | noun:cardinal: 318 | adjective:cardinal number (100% = 6261x) 319 | adjective:ordinal number ( 0% = 17x) 320 | noun:common ( 0% = 8x) 321 | adjective:adjective ( 0% = 1x) 322 | noun:copulative noun: 323 | particle:negative ( 79% = 784x) 324 | particle:demonstrative ( 14% = 138x) 325 | noun:common ( 5% = 46x) 326 | particle:affirmation ( 2% = 19x) 327 | adverb ( 0% = 1x) 328 | particle:interrogative ( 0% = 1x) 329 | noun:distributive noun: 330 | noun:common (100% = 9410x) 331 | conjunction ( 0% = 1x) 332 | particle:relative ( 0% = 1x) 333 | preposition ( 0% = 1x) 334 | verb ( 0% = 1x) 335 | noun:noun of multitude: 336 | noun:common ( 53% = 17x) 337 | adjective:cardinal number ( 47% = 15x) 338 | noun:potential adverb: 339 | noun:common ( 82% = 4273x) 340 | adverb ( 17% = 899x) 341 | adjective:adjective ( 0% = 16x) 342 | verb ( 0% = 3x) 343 | preposition ( 0% = 1x) 344 | noun:potential preposition: 345 | preposition ( 63% = 2088x) 346 | noun:common ( 26% = 848x) 347 | conjunction ( 7% = 227x) 348 | adverb ( 3% = 96x) 349 | particle:negative ( 1% = 37x) 350 | noun:proper name ( 0% = 15x) 351 | adjective:adjective ( 0% = 1x) 352 | personal pronoun:: 353 | pronoun:personal (100% = 2504x) 354 | particle:affirmation ( 0% = 2x) 355 | personal pronoun::demonstrative personal pronoun 356 | pronoun:personal ( 99% = 2487x) 357 | particle:affirmation ( 0% = 6x) 358 | pronoun:demonstrative ( 0% = 6x) 359 | suffix:pronominal ( 0% = 5x) 360 | preposition:: 361 | preposition ( 76% = 55342x) 362 | particle:direct object marker ( 15% = 11017x) 363 | preposition:definite article ( 9% = 6446x) 364 | particle:relative ( 0% = 286x) 365 | conjunction ( 0% = 103x) 366 | particle:negative ( 0% = 21x) 367 | particle ( 0% = 7x) 368 | noun:common ( 0% = 5x) 369 | pronoun:indefinite ( 0% = 5x) 370 | noun:proper name ( 0% = 2x) 371 | pronoun:relative ( 0% = 2x) 372 | adjective:adjective ( 0% = 1x) 373 | adverb ( 0% = 1x) 374 | particle:definite article ( 0% = 1x) 375 | particle:interrogative ( 0% = 1x) 376 | verb ( 0% = 1x) 377 | proper noun:: 378 | noun:proper name (100% = 1x) 379 | proper noun::gentilic 380 | noun:proper name (100% = 28x) 381 | proper noun::measurement unit 382 | noun:proper name (100% = 20x) 383 | proper noun::people 384 | noun:proper name ( 94% = 215x) 385 | noun:gentilic ( 5% = 12x) 386 | noun:common ( 0% = 1x) 387 | proper noun::person 388 | noun:proper name ( 98% = 25864x) 389 | noun:common ( 2% = 446x) 390 | adjective:cardinal number ( 0% = 9x) 391 | noun:gentilic ( 0% = 6x) 392 | particle:negative ( 0% = 4x) 393 | preposition ( 0% = 4x) 394 | adjective:adjective ( 0% = 2x) 395 | particle:definite article ( 0% = 2x) 396 | particle:interjection ( 0% = 1x) 397 | verb ( 0% = 1x) 398 | proper noun::place 399 | noun:proper name ( 99% = 6291x) 400 | noun:common ( 1% = 33x) 401 | adjective:cardinal number ( 0% = 19x) 402 | noun:gentilic ( 0% = 4x) 403 | particle:definite article ( 0% = 1x) 404 | verb:: 405 | verb (100% = 63326x) 406 | adjective:adjective ( 0% = 96x) 407 | noun:common ( 0% = 59x) 408 | conjunction ( 0% = 13x) 409 | noun:proper name ( 0% = 5x) 410 | particle:interjection ( 0% = 4x) 411 | preposition ( 0% = 4x) 412 | adverb ( 0% = 2x) 413 | particle:relative ( 0% = 2x) 414 | adjective:cardinal number ( 0% = 1x) 415 | verb:copulative verb: 416 | verb (100% = 3636x) 417 | verb:quotation verb: 418 | verb (100% = 6519x) 419 | noun:common ( 0% = 1x) 420 | 421 | main (BHS ===> OSM): 619 cases 422 | 423 | main: 780 cases 424 | 425 | o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o 426 | o-o COMPARING FEATURE suffix 427 | o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o 428 | 429 | 430 | --------------------------------------------------------------------------------- 431 | --- suffix OSM ===> BHS 432 | --------------------------------------------------------------------------------- 433 | 434 | ? 435 | : (100% = 370146x) 436 | :J ( 0% = 258x) 437 | p: ( 0% = 53x) 438 | :H ( 0% = 7x) 439 | :> ( 0% = 6x) 440 | :W ( 0% = 3x) 441 | p:J ( 0% = 1x) 442 | adjective:adjective 443 | : (100% = 2x) 444 | adjective:cardinal number 445 | : ( 94% = 16x) 446 | p: ( 6% = 1x) 447 | adverb 448 | : (100% = 200x) 449 | conjunction 450 | : (100% = 3x) 451 | noun:common 452 | : ( 96% = 22x) 453 | p: ( 4% = 1x) 454 | noun:gentilic 455 | : (100% = 2x) 456 | noun:proper name 457 | : (100% = 666x) 458 | particle:affirmation 459 | :> (100% = 1x) 460 | particle:definite article 461 | :> ( 99% = 856x) 462 | p: ( 1% = 8x) 463 | : ( 0% = 3x) 464 | particle:direct object marker 465 | : ( 50% = 1x) 466 | p: ( 50% = 1x) 467 | particle:exhortation 468 | : (100% = 1x) 469 | particle:interrogative 470 | : (100% = 178x) 471 | particle:relative 472 | : (100% = 1x) 473 | preposition 474 | : (100% = 2x) 475 | pronoun:indefinite 476 | : (100% = 1x) 477 | pronoun:personal 478 | p: (100% = 13x) 479 | suffix:directional he 480 | :H ( 98% = 1054x) 481 | : ( 2% = 24x) 482 | suffix:paragogic he 483 | : ( 98% = 436x) 484 | :H ( 2% = 7x) 485 | p: ( 0% = 1x) 486 | suffix:paragogic nun 487 | : ( 99% = 308x) 488 | p: ( 0% = 1x) 489 | p:N ( 0% = 1x) 490 | suffix:pronominal 491 | p: ( 96% = 43721x) 492 | p:J ( 1% = 681x) 493 | p:N ( 1% = 649x) 494 | : ( 1% = 477x) 495 | :W ( 0% = 9x) 496 | :J ( 0% = 6x) 497 | p:W ( 0% = 5x) 498 | :> ( 0% = 2x) 499 | verb 500 | : ( 93% = 13x) 501 | p: ( 7% = 1x) 502 | 503 | suffix (OSM ===> BHS): 123 cases 504 | 505 | --------------------------------------------------------------------------------- 506 | --- suffix BHS ===> OSM 507 | --------------------------------------------------------------------------------- 508 | 509 | : 510 | ? ( 99% = 370146x) 511 | noun:proper name ( 0% = 666x) 512 | suffix:pronominal ( 0% = 477x) 513 | suffix:paragogic he ( 0% = 436x) 514 | suffix:paragogic nun ( 0% = 308x) 515 | adverb ( 0% = 200x) 516 | particle:interrogative ( 0% = 178x) 517 | suffix:directional he ( 0% = 24x) 518 | noun:common ( 0% = 22x) 519 | adjective:cardinal number ( 0% = 16x) 520 | verb ( 0% = 13x) 521 | conjunction ( 0% = 3x) 522 | particle:definite article ( 0% = 3x) 523 | adjective:adjective ( 0% = 2x) 524 | noun:gentilic ( 0% = 2x) 525 | preposition ( 0% = 2x) 526 | particle:direct object marker ( 0% = 1x) 527 | particle:exhortation ( 0% = 1x) 528 | particle:relative ( 0% = 1x) 529 | pronoun:indefinite ( 0% = 1x) 530 | :> 531 | particle:definite article ( 99% = 856x) 532 | ? ( 1% = 6x) 533 | suffix:pronominal ( 0% = 2x) 534 | particle:affirmation ( 0% = 1x) 535 | :H 536 | suffix:directional he ( 99% = 1054x) 537 | ? ( 1% = 7x) 538 | suffix:paragogic he ( 1% = 7x) 539 | :J 540 | ? ( 98% = 258x) 541 | suffix:pronominal ( 2% = 6x) 542 | :W 543 | suffix:pronominal ( 75% = 9x) 544 | ? ( 25% = 3x) 545 | p: 546 | suffix:pronominal (100% = 43721x) 547 | ? ( 0% = 53x) 548 | pronoun:personal ( 0% = 13x) 549 | particle:definite article ( 0% = 8x) 550 | adjective:cardinal number ( 0% = 1x) 551 | noun:common ( 0% = 1x) 552 | particle:direct object marker ( 0% = 1x) 553 | suffix:paragogic he ( 0% = 1x) 554 | suffix:paragogic nun ( 0% = 1x) 555 | verb ( 0% = 1x) 556 | p:J 557 | suffix:pronominal (100% = 681x) 558 | ? ( 0% = 1x) 559 | p:N 560 | suffix:pronominal (100% = 649x) 561 | suffix:paragogic nun ( 0% = 1x) 562 | p:W 563 | suffix:pronominal (100% = 5x) 564 | 565 | suffix (BHS ===> OSM): 181 cases 566 | 567 | suffix: 228 cases 568 | 569 | All features: 943 cases -------------------------------------------------------------------------------- /programs/language.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# BHSA and OSM: comparison on language\n", 8 | "\n", 9 | "We will investigate how the morphology marked up in the OSM corresponds and differs from the BHSA linguistic features.\n", 10 | "\n", 11 | "In this notebook we investigate the markup of *language* (Hebrew or Aramaic).\n", 12 | "\n", 13 | "We use the `osm` and `osm_sf` features compiled by the\n", 14 | "[BHSA bridge OSM notebook](BHSAbridgeOSM.ipynb)." 15 | ] 16 | }, 17 | { 18 | "cell_type": "code", 19 | "execution_count": 1, 20 | "metadata": {}, 21 | "outputs": [], 22 | "source": [ 23 | "import collections\n", 24 | "\n", 25 | "from tf.app import use\n", 26 | "from helpers import show" 27 | ] 28 | }, 29 | { 30 | "cell_type": "markdown", 31 | "metadata": { 32 | "tags": [] 33 | }, 34 | "source": [ 35 | "# Load data\n", 36 | "We load the BHSA data in the standard way, and we add the OSM data as a module of the features `osm` and `osm_sf`.\n", 37 | "Note that we only need to point TF to the right GitHub org/repo/directory, in order to load the OSM features." 38 | ] 39 | }, 40 | { 41 | "cell_type": "code", 42 | "execution_count": 2, 43 | "metadata": {}, 44 | "outputs": [ 45 | { 46 | "data": { 47 | "text/html": [ 48 | "TF-app: ~/text-fabric-data/annotation/app-bhsa/code" 49 | ], 50 | "text/plain": [ 51 | "" 52 | ] 53 | }, 54 | "metadata": {}, 55 | "output_type": "display_data" 56 | }, 57 | { 58 | "data": { 59 | "text/html": [ 60 | "data: ~/text-fabric-data/etcbc/bhsa/tf/2021" 61 | ], 62 | "text/plain": [ 63 | "" 64 | ] 65 | }, 66 | "metadata": {}, 67 | "output_type": "display_data" 68 | }, 69 | { 70 | "data": { 71 | "text/html": [ 72 | "data: ~/text-fabric-data/etcbc/phono/tf/2021" 73 | ], 74 | "text/plain": [ 75 | "" 76 | ] 77 | }, 78 | "metadata": {}, 79 | "output_type": "display_data" 80 | }, 81 | { 82 | "data": { 83 | "text/html": [ 84 | "data: ~/text-fabric-data/etcbc/parallels/tf/2021" 85 | ], 86 | "text/plain": [ 87 | "" 88 | ] 89 | }, 90 | "metadata": {}, 91 | "output_type": "display_data" 92 | }, 93 | { 94 | "data": { 95 | "text/html": [ 96 | "data: ~/text-fabric-data/etcbc/bridging/tf/2021" 97 | ], 98 | "text/plain": [ 99 | "" 100 | ] 101 | }, 102 | "metadata": {}, 103 | "output_type": "display_data" 104 | }, 105 | { 106 | "name": "stdout", 107 | "output_type": "stream", 108 | "text": [ 109 | "This is Text-Fabric 9.0.4\n", 110 | "Api reference : https://annotation.github.io/text-fabric/tf/cheatsheet.html\n", 111 | "\n", 112 | "123 features found and 0 ignored\n" 113 | ] 114 | }, 115 | { 116 | "data": { 117 | "text/html": [ 118 | "Text-Fabric: Text-Fabric API 9.0.4, app-bhsa v3, Search Reference
Data: BHSA, Character table, Feature docs
Features:
etcbc/bridging/tfosm
osm_sf
BHSA = Biblia Hebraica Stuttgartensia Amstelodamensisbook
book@ll
chapter
code
det
domain
freq_lex
function
g_cons
g_cons_utf8
g_lex
g_lex_utf8
g_word
g_word_utf8
gloss
gn
label
language
lex
lex_utf8
ls
nametype
nme
nu
number
otype
pargr
pdp
pfm
prs
prs_gn
prs_nu
prs_ps
ps
qere
qere_trailer
qere_trailer_utf8
qere_utf8
rank_lex
rela
sp
st
tab
trailer
trailer_utf8
txt
typ
uvf
vbe
vbs
verse
voc_lex
voc_lex_utf8
vs
vt
mother
omap@ll
oslots
Parallel Passagescrossref
Phonetic Transcriptionsphono
phono_trailer
" 119 | ], 120 | "text/plain": [ 121 | "" 122 | ] 123 | }, 124 | "metadata": {}, 125 | "output_type": "display_data" 126 | }, 127 | { 128 | "data": { 129 | "text/html": [ 130 | "" 609 | ], 610 | "text/plain": [ 611 | "" 612 | ] 613 | }, 614 | "metadata": {}, 615 | "output_type": "display_data" 616 | }, 617 | { 618 | "data": { 619 | "text/html": [ 620 | "
Text-Fabric API: names N F E L T S C TF directly usable

" 621 | ], 622 | "text/plain": [ 623 | "" 624 | ] 625 | }, 626 | "metadata": {}, 627 | "output_type": "display_data" 628 | } 629 | ], 630 | "source": [ 631 | "A = use(\"ETCBC/bhsa\", mod=\"etcbc/bridging/tf\", hoist=globals())" 632 | ] 633 | }, 634 | { 635 | "cell_type": "markdown", 636 | "metadata": {}, 637 | "source": [ 638 | "# Language\n", 639 | "\n", 640 | "Do BHSA and OSM agree on language?\n", 641 | "Let's count the words in the BHSA where they disagree.\n", 642 | "\n", 643 | "The BHSA names the languages by means of ISO codes, the OSM uses one letter abbreviations.\n", 644 | "\n", 645 | "The OSM has the language code as the first letter of the morphology string." 646 | ] 647 | }, 648 | { 649 | "cell_type": "code", 650 | "execution_count": 5, 651 | "metadata": {}, 652 | "outputs": [], 653 | "source": [ 654 | "langBhsFromOsm = dict(A=\"Aramaic\", H=\"Hebrew\")\n", 655 | "langOsmFromBhs = dict((y, x) for (x, y) in langBhsFromOsm.items())" 656 | ] 657 | }, 658 | { 659 | "cell_type": "markdown", 660 | "metadata": {}, 661 | "source": [ 662 | "We exclude the words for which the OSM has no morphology, or where the alignment between BHSA and OSM is problematic." 663 | ] 664 | }, 665 | { 666 | "cell_type": "code", 667 | "execution_count": 6, 668 | "metadata": {}, 669 | "outputs": [ 670 | { 671 | "name": "stdout", 672 | "output_type": "stream", 673 | "text": [ 674 | "No other languages encountered than A, H\n", 675 | "Language discrepancies: 2\n" 676 | ] 677 | } 678 | ], 679 | "source": [ 680 | "xLanguage = set()\n", 681 | "strangeLanguage = collections.Counter()\n", 682 | "\n", 683 | "for w in F.otype.s(\"word\"):\n", 684 | " word = F.g_word_utf8.v(w)\n", 685 | " osm = F.osm.v(w)\n", 686 | " if not word or not osm or osm == \"*\":\n", 687 | " continue\n", 688 | " osmLanguage = osm[0]\n", 689 | " trans = langBhsFromOsm.get(osmLanguage, None)\n", 690 | " if trans is None:\n", 691 | " strangeLanguage[osmLanguage] += 1\n", 692 | " else:\n", 693 | " if langBhsFromOsm[osm[0]] != F.language.v(w):\n", 694 | " xLanguage.add(w)\n", 695 | "\n", 696 | "if strangeLanguage:\n", 697 | " print(\"Strange languages\")\n", 698 | " for (ln, amount) in sorted(strangeLanguage.items()):\n", 699 | " print(\"Strange language {}: {:>5}x\".format(ln, amount))\n", 700 | "else:\n", 701 | " print(\"No other languages encountered than {}\".format(\", \".join(langBhsFromOsm)))\n", 702 | "print(\"Language discrepancies: {}\".format(len(xLanguage)))" 703 | ] 704 | }, 705 | { 706 | "cell_type": "code", 707 | "execution_count": 7, 708 | "metadata": {}, 709 | "outputs": [ 710 | { 711 | "name": "stdout", 712 | "output_type": "stream", 713 | "text": [ 714 | "Psalms 116:12 w330987\"כָּֽל\"\n", 715 | "\tBHS: Aramaic\n", 716 | "\tOSM: H\n", 717 | "Psalms 116:12 w330988\"תַּגְמוּלֹ֥והִי\"\n", 718 | "\tBHS: Aramaic\n", 719 | "\tOSM: H\n" 720 | ] 721 | } 722 | ], 723 | "source": [ 724 | "for w in sorted(xLanguage):\n", 725 | " show(T, F, [w], F.language.v, lambda x: F.osm.v(x)[0])" 726 | ] 727 | } 728 | ], 729 | "metadata": { 730 | "kernelspec": { 731 | "display_name": "Python 3 (ipykernel)", 732 | "language": "python", 733 | "name": "python3" 734 | }, 735 | "language_info": { 736 | "codemirror_mode": { 737 | "name": "ipython", 738 | "version": 3 739 | }, 740 | "file_extension": ".py", 741 | "mimetype": "text/x-python", 742 | "name": "python", 743 | "nbconvert_exporter": "python", 744 | "pygments_lexer": "ipython3", 745 | "version": "3.9.5" 746 | }, 747 | "widgets": { 748 | "application/vnd.jupyter.widget-state+json": { 749 | "state": {}, 750 | "version_major": 2, 751 | "version_minor": 0 752 | } 753 | } 754 | }, 755 | "nbformat": 4, 756 | "nbformat_minor": 4 757 | } 758 | -------------------------------------------------------------------------------- /programs/category.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "metadata": {}, 6 | "source": [ 7 | "# BHSA and OSM: comparison on word categories\n", 8 | "\n", 9 | "We will investigate how the morphology marked up in the OSM corresponds and differs from the BHSA linguistic features.\n", 10 | "\n", 11 | "In this notebook we investigate the word categories.\n", 12 | "The [OSM docs](http://openscriptures.github.io/morphhb/parsing/HebrewMorphologyCodes.html)\n", 13 | "specify a main category for part-of-speech, and additional subtypes for noun, pronoun, adjective, preposition and suffix.\n", 14 | "\n", 15 | "The BHSA specifies its categories in the features\n", 16 | "[sp](https://etcbc.github.io/bhsa/features/hebrew/2017/sp.html),\n", 17 | "[ls](https://etcbc.github.io/bhsa/features/hebrew/2017/ls.html), and\n", 18 | "[nametype](https://etcbc.github.io/bhsa/features/hebrew/2017/nametype.html).\n", 19 | "\n", 20 | "The purpose of this notebook is to see how they correlate." 21 | ] 22 | }, 23 | { 24 | "cell_type": "markdown", 25 | "metadata": {}, 26 | "source": [ 27 | "# Mappings\n", 28 | "\n", 29 | "We collect the numbers of co-occurrences of OSM types and BHSA types.\n", 30 | "We do this separately for main words and for suffixes.\n", 31 | "\n", 32 | "We give examples where the rare cases occur.\n", 33 | "A rare case is less than 10% of the total number of cases.\n", 34 | "\n", 35 | "That means, if OSM type $t$ compares to BHS types $s_1, ... ,s_n$, with frequencies\n", 36 | "$f_1, ..., f_n$, then we give cases of those $(t, s_i)$ such that\n", 37 | "\n", 38 | "$$f_i <= 0.10\\times \\sum_{j=1}^{n}f_j$$." 39 | ] 40 | }, 41 | { 42 | "cell_type": "markdown", 43 | "metadata": {}, 44 | "source": [ 45 | "# Results\n", 46 | "* [categories.txt](categories.txt) overview of co-occurrences of OSM and BHSA categories\n", 47 | "* [categoriesCases.tsv](categoriesCases.tsv) same, but examples for the rarer combinations\n", 48 | "* [allCategoriesCases.tsv](allCategoriesCases.tsv) all rarer cases, in biblical order" 49 | ] 50 | }, 51 | { 52 | "cell_type": "code", 53 | "execution_count": 4, 54 | "metadata": {}, 55 | "outputs": [], 56 | "source": [ 57 | "import operator\n", 58 | "from functools import reduce\n", 59 | "\n", 60 | "from tf.app import use\n", 61 | "from helpers import show" 62 | ] 63 | }, 64 | { 65 | "cell_type": "markdown", 66 | "metadata": { 67 | "tags": [] 68 | }, 69 | "source": [ 70 | "# Load data\n", 71 | "We load the BHSA data in the standard way, and we add the OSM data as a module of the features `osm` and `osm_sf`.\n", 72 | "Note that we only need to point TF to the right GitHub org/repo/directory, in order to load the OSM features." 73 | ] 74 | }, 75 | { 76 | "cell_type": "code", 77 | "execution_count": 5, 78 | "metadata": {}, 79 | "outputs": [ 80 | { 81 | "data": { 82 | "text/html": [ 83 | "TF-app: ~/text-fabric-data/annotation/app-bhsa/code" 84 | ], 85 | "text/plain": [ 86 | "" 87 | ] 88 | }, 89 | "metadata": {}, 90 | "output_type": "display_data" 91 | }, 92 | { 93 | "data": { 94 | "text/html": [ 95 | "data: ~/text-fabric-data/etcbc/bhsa/tf/2021" 96 | ], 97 | "text/plain": [ 98 | "" 99 | ] 100 | }, 101 | "metadata": {}, 102 | "output_type": "display_data" 103 | }, 104 | { 105 | "data": { 106 | "text/html": [ 107 | "data: ~/text-fabric-data/etcbc/phono/tf/2021" 108 | ], 109 | "text/plain": [ 110 | "" 111 | ] 112 | }, 113 | "metadata": {}, 114 | "output_type": "display_data" 115 | }, 116 | { 117 | "data": { 118 | "text/html": [ 119 | "data: ~/text-fabric-data/etcbc/parallels/tf/2021" 120 | ], 121 | "text/plain": [ 122 | "" 123 | ] 124 | }, 125 | "metadata": {}, 126 | "output_type": "display_data" 127 | }, 128 | { 129 | "data": { 130 | "text/html": [ 131 | "data: ~/text-fabric-data/etcbc/bridging/tf/2021" 132 | ], 133 | "text/plain": [ 134 | "" 135 | ] 136 | }, 137 | "metadata": {}, 138 | "output_type": "display_data" 139 | }, 140 | { 141 | "name": "stdout", 142 | "output_type": "stream", 143 | "text": [ 144 | "This is Text-Fabric 9.0.4\n", 145 | "Api reference : https://annotation.github.io/text-fabric/tf/cheatsheet.html\n", 146 | "\n", 147 | "123 features found and 0 ignored\n" 148 | ] 149 | }, 150 | { 151 | "data": { 152 | "text/html": [ 153 | "Text-Fabric: Text-Fabric API 9.0.4, app-bhsa v3, Search Reference
Data: BHSA, Character table, Feature docs
Features:
etcbc/bridging/tfosm
osm_sf
BHSA = Biblia Hebraica Stuttgartensia Amstelodamensisbook
book@ll
chapter
code
det
domain
freq_lex
function
g_cons
g_cons_utf8
g_lex
g_lex_utf8
g_word
g_word_utf8
gloss
gn
label
language
lex
lex_utf8
ls
nametype
nme
nu
number
otype
pargr
pdp
pfm
prs
prs_gn
prs_nu
prs_ps
ps
qere
qere_trailer
qere_trailer_utf8
qere_utf8
rank_lex
rela
sp
st
tab
trailer
trailer_utf8
txt
typ
uvf
vbe
vbs
verse
voc_lex
voc_lex_utf8
vs
vt
mother
omap@ll
oslots
Parallel Passagescrossref
Phonetic Transcriptionsphono
phono_trailer
" 154 | ], 155 | "text/plain": [ 156 | "" 157 | ] 158 | }, 159 | "metadata": {}, 160 | "output_type": "display_data" 161 | }, 162 | { 163 | "data": { 164 | "text/html": [ 165 | "" 644 | ], 645 | "text/plain": [ 646 | "" 647 | ] 648 | }, 649 | "metadata": {}, 650 | "output_type": "display_data" 651 | }, 652 | { 653 | "data": { 654 | "text/html": [ 655 | "
Text-Fabric API: names N F E L T S C TF directly usable

" 656 | ], 657 | "text/plain": [ 658 | "" 659 | ] 660 | }, 661 | "metadata": {}, 662 | "output_type": "display_data" 663 | } 664 | ], 665 | "source": [ 666 | "A = use(\"ETCBC/bhsa\", mod=\"etcbc/bridging/tf\", hoist=globals())" 667 | ] 668 | }, 669 | { 670 | "cell_type": "markdown", 671 | "metadata": {}, 672 | "source": [ 673 | "Let's quickly oversee the values of the relevant BHSA features." 674 | ] 675 | }, 676 | { 677 | "cell_type": "markdown", 678 | "metadata": {}, 679 | "source": [ 680 | "We only work on words where the OSM has assigned morphology." 681 | ] 682 | }, 683 | { 684 | "cell_type": "code", 685 | "execution_count": 8, 686 | "metadata": {}, 687 | "outputs": [ 688 | { 689 | "data": { 690 | "text/plain": [ 691 | "420102" 692 | ] 693 | }, 694 | "execution_count": 8, 695 | "metadata": {}, 696 | "output_type": "execute_result" 697 | } 698 | ], 699 | "source": [ 700 | "wordAll = [w for w in F.otype.s(\"word\") if F.g_word_utf8.v(w) != \"\"]\n", 701 | "len(wordAll)" 702 | ] 703 | }, 704 | { 705 | "cell_type": "code", 706 | "execution_count": 9, 707 | "metadata": {}, 708 | "outputs": [ 709 | { 710 | "data": { 711 | "text/plain": [ 712 | "420101" 713 | ] 714 | }, 715 | "execution_count": 9, 716 | "metadata": {}, 717 | "output_type": "execute_result" 718 | } 719 | ], 720 | "source": [ 721 | "wordOsm = [w for w in wordAll if F.osm.v(w)]\n", 722 | "len(wordOsm)" 723 | ] 724 | }, 725 | { 726 | "cell_type": "code", 727 | "execution_count": 10, 728 | "metadata": {}, 729 | "outputs": [ 730 | { 731 | "name": "stdout", 732 | "output_type": "stream", 733 | "text": [ 734 | "419849\n" 735 | ] 736 | } 737 | ], 738 | "source": [ 739 | "wordBase = [w for w in wordOsm if F.osm.v(w) != \"*\"]\n", 740 | "print(len(wordBase))" 741 | ] 742 | }, 743 | { 744 | "cell_type": "code", 745 | "execution_count": 11, 746 | "metadata": {}, 747 | "outputs": [ 748 | { 749 | "data": { 750 | "text/plain": [ 751 | "(('subs', 125583),\n", 752 | " ('verb', 75451),\n", 753 | " ('prep', 73298),\n", 754 | " ('conj', 62737),\n", 755 | " ('nmpr', 35607),\n", 756 | " ('art', 30387),\n", 757 | " ('adjv', 10141),\n", 758 | " ('nega', 6059),\n", 759 | " ('prps', 5035),\n", 760 | " ('advb', 4603),\n", 761 | " ('prde', 2678),\n", 762 | " ('intj', 1912),\n", 763 | " ('inrg', 1303),\n", 764 | " ('prin', 1026))" 765 | ] 766 | }, 767 | "execution_count": 11, 768 | "metadata": {}, 769 | "output_type": "execute_result" 770 | } 771 | ], 772 | "source": [ 773 | "F.sp.freqList()" 774 | ] 775 | }, 776 | { 777 | "cell_type": "code", 778 | "execution_count": 12, 779 | "metadata": {}, 780 | "outputs": [ 781 | { 782 | "data": { 783 | "text/plain": [ 784 | "(('none', 385975),\n", 785 | " ('nmdi', 9427),\n", 786 | " ('quot', 6525),\n", 787 | " ('card', 6317),\n", 788 | " ('padv', 5238),\n", 789 | " ('vbcp', 3640),\n", 790 | " ('ppre', 3342),\n", 791 | " ('gntl', 2055),\n", 792 | " ('focp', 1181),\n", 793 | " ('nmcp', 994),\n", 794 | " ('ques', 751),\n", 795 | " ('ordn', 740),\n", 796 | " ('afad', 547),\n", 797 | " ('cjad', 208),\n", 798 | " ('mult', 35))" 799 | ] 800 | }, 801 | "execution_count": 12, 802 | "metadata": {}, 803 | "output_type": "execute_result" 804 | } 805 | ], 806 | "source": [ 807 | "F.ls.freqList()" 808 | ] 809 | }, 810 | { 811 | "cell_type": "code", 812 | "execution_count": 13, 813 | "metadata": {}, 814 | "outputs": [ 815 | { 816 | "data": { 817 | "text/plain": [ 818 | "(('pers', 23188),\n", 819 | " ('topo', 7212),\n", 820 | " ('pers,gens,topo', 4527),\n", 821 | " ('ppde', 2512),\n", 822 | " ('pers,gens', 329),\n", 823 | " ('gens', 273),\n", 824 | " ('mens', 30),\n", 825 | " ('gens,topo', 29),\n", 826 | " ('topo,pers', 13),\n", 827 | " ('pers,god', 4))" 828 | ] 829 | }, 830 | "execution_count": 13, 831 | "metadata": {}, 832 | "output_type": "execute_result" 833 | } 834 | ], 835 | "source": [ 836 | "F.nametype.freqList()" 837 | ] 838 | }, 839 | { 840 | "cell_type": "code", 841 | "execution_count": 14, 842 | "metadata": {}, 843 | "outputs": [ 844 | { 845 | "data": { 846 | "text/plain": [ 847 | "(('absent', 236028),\n", 848 | " ('n/a', 145404),\n", 849 | " ('W', 11905),\n", 850 | " ('K', 7134),\n", 851 | " ('J', 6566),\n", 852 | " ('M', 3938),\n", 853 | " ('H', 3352),\n", 854 | " ('HM', 3047),\n", 855 | " ('KM', 2657),\n", 856 | " ('NW', 1635),\n", 857 | " ('HW', 1611),\n", 858 | " ('NJ', 1321),\n", 859 | " ('K=', 1308),\n", 860 | " ('HN', 192),\n", 861 | " ('H=', 161),\n", 862 | " ('MW', 117),\n", 863 | " ('HJ', 77),\n", 864 | " ('HWN', 51),\n", 865 | " ('N', 47),\n", 866 | " ('KN', 19),\n", 867 | " ('KWN', 10),\n", 868 | " ('N>', 10))" 869 | ] 870 | }, 871 | "execution_count": 14, 872 | "metadata": {}, 873 | "output_type": "execute_result" 874 | } 875 | ], 876 | "source": [ 877 | "F.prs.freqList()" 878 | ] 879 | }, 880 | { 881 | "cell_type": "code", 882 | "execution_count": 15, 883 | "metadata": {}, 884 | "outputs": [ 885 | { 886 | "data": { 887 | "text/plain": [ 888 | "(('absent', 423044),\n", 889 | " ('H', 1068),\n", 890 | " ('J', 946),\n", 891 | " ('>', 865),\n", 892 | " ('N', 650),\n", 893 | " ('W', 17))" 894 | ] 895 | }, 896 | "execution_count": 15, 897 | "metadata": {}, 898 | "output_type": "execute_result" 899 | } 900 | ], 901 | "source": [ 902 | "F.uvf.freqList()" 903 | ] 904 | }, 905 | { 906 | "cell_type": "markdown", 907 | "metadata": {}, 908 | "source": [ 909 | "In order to read the results with more ease, we translate the codes to friendly names, found in the docs of\n", 910 | "OSM and BHSA." 911 | ] 912 | }, 913 | { 914 | "cell_type": "code", 915 | "execution_count": 16, 916 | "metadata": {}, 917 | "outputs": [], 918 | "source": [ 919 | "naValues = {\"NA\", \"N/A\", \"n/a\", \"none\", \"absent\"}\n", 920 | "NA = \"\"\n", 921 | "\n", 922 | "missingValues = {None, \"\"}\n", 923 | "MISSING = \"\"\n", 924 | "\n", 925 | "unknownValues = {\"unknown\"}\n", 926 | "UNKNOWN = \"?\"\n", 927 | "\n", 928 | "PRS = \"p\"\n", 929 | "\n", 930 | "noSubTypes = {\"C\", \"D\", \"V\"}" 931 | ] 932 | }, 933 | { 934 | "cell_type": "code", 935 | "execution_count": 17, 936 | "metadata": {}, 937 | "outputs": [], 938 | "source": [ 939 | "pspOSM = {\n", 940 | " \"\": dict(\n", 941 | " A=\"adjective\",\n", 942 | " C=\"conjunction\",\n", 943 | " D=\"adverb\",\n", 944 | " N=\"noun\",\n", 945 | " P=\"pronoun\",\n", 946 | " R=\"preposition\",\n", 947 | " S=\"suffix\",\n", 948 | " T=\"particle\",\n", 949 | " V=\"verb\",\n", 950 | " ),\n", 951 | " \"A\": dict(\n", 952 | " a=\"adjective\",\n", 953 | " c=\"cardinal number\",\n", 954 | " g=\"gentilic\",\n", 955 | " o=\"ordinal number\",\n", 956 | " ),\n", 957 | " \"N\": dict(\n", 958 | " c=\"common\",\n", 959 | " g=\"gentilic\",\n", 960 | " p=\"proper name\",\n", 961 | " x=\"unknown\",\n", 962 | " ),\n", 963 | " \"P\": dict(\n", 964 | " d=\"demonstrative\",\n", 965 | " f=\"indefinite\",\n", 966 | " i=\"interrogative\",\n", 967 | " p=\"personal\",\n", 968 | " r=\"relative\",\n", 969 | " ),\n", 970 | " \"R\": dict(\n", 971 | " d=\"definite article\",\n", 972 | " ),\n", 973 | " \"S\": dict(\n", 974 | " d=\"directional he\",\n", 975 | " h=\"paragogic he\",\n", 976 | " n=\"paragogic nun\",\n", 977 | " p=\"pronominal\",\n", 978 | " ),\n", 979 | " \"T\": dict(\n", 980 | " a=\"affirmation\",\n", 981 | " d=\"definite article\",\n", 982 | " e=\"exhortation\",\n", 983 | " i=\"interrogative\",\n", 984 | " j=\"interjection\",\n", 985 | " m=\"demonstrative\",\n", 986 | " n=\"negative\",\n", 987 | " o=\"direct object marker\",\n", 988 | " r=\"relative\",\n", 989 | " ),\n", 990 | "}" 991 | ] 992 | }, 993 | { 994 | "cell_type": "code", 995 | "execution_count": 18, 996 | "metadata": {}, 997 | "outputs": [], 998 | "source": [ 999 | "spBHS = dict(\n", 1000 | " art=\"article\",\n", 1001 | " verb=\"verb\",\n", 1002 | " subs=\"noun\",\n", 1003 | " nmpr=\"proper noun\",\n", 1004 | " advb=\"adverb\",\n", 1005 | " prep=\"preposition\",\n", 1006 | " conj=\"conjunction\",\n", 1007 | " prps=\"personal pronoun\",\n", 1008 | " prde=\"demonstrative pronoun\",\n", 1009 | " prin=\"interrogative pronoun\",\n", 1010 | " intj=\"interjection\",\n", 1011 | " nega=\"negative particle\",\n", 1012 | " inrg=\"interrogative particle\",\n", 1013 | " adjv=\"adjective\",\n", 1014 | ")\n", 1015 | "lsBHS = dict(\n", 1016 | " nmdi=\"distributive noun\",\n", 1017 | " nmcp=\"copulative noun\",\n", 1018 | " padv=\"potential adverb\",\n", 1019 | " afad=\"anaphoric adverb\",\n", 1020 | " ppre=\"potential preposition\",\n", 1021 | " cjad=\"conjunctive adverb\",\n", 1022 | " ordn=\"ordinal\",\n", 1023 | " vbcp=\"copulative verb\",\n", 1024 | " mult=\"noun of multitude\",\n", 1025 | " focp=\"focus particle\",\n", 1026 | " ques=\"interrogative particle\",\n", 1027 | " gntl=\"gentilic\",\n", 1028 | " quot=\"quotation verb\",\n", 1029 | " card=\"cardinal\",\n", 1030 | " none=MISSING,\n", 1031 | ")\n", 1032 | "nametypeBHS = dict(\n", 1033 | " pers=\"person\",\n", 1034 | " mens=\"measurement unit\",\n", 1035 | " gens=\"people\",\n", 1036 | " topo=\"place\",\n", 1037 | " ppde=\"demonstrative personal pronoun\",\n", 1038 | ")\n", 1039 | "nametypeBHS.update(\n", 1040 | " {\n", 1041 | " \"pers,gens,topo\": \"person\",\n", 1042 | " \"pers,gens\": \"person\",\n", 1043 | " \"gens,topo\": \"gentilic\",\n", 1044 | " \"pers,god\": \"person\",\n", 1045 | " \"topo,pers\": \"person\",\n", 1046 | " }\n", 1047 | ")" 1048 | ] 1049 | }, 1050 | { 1051 | "cell_type": "code", 1052 | "execution_count": 19, 1053 | "metadata": { 1054 | "lines_to_end_of_cell_marker": 2, 1055 | "lines_to_next_cell": 2 1056 | }, 1057 | "outputs": [], 1058 | "source": [ 1059 | "def getValueBHS(x, feat=None):\n", 1060 | " return (\n", 1061 | " NA\n", 1062 | " if x in naValues\n", 1063 | " else MISSING\n", 1064 | " if x in missingValues\n", 1065 | " else UNKNOWN\n", 1066 | " if x in unknownValues\n", 1067 | " else feat[x]\n", 1068 | " if feat\n", 1069 | " else x\n", 1070 | " )\n", 1071 | "\n", 1072 | "\n", 1073 | "def getValueOSM(x):\n", 1074 | " if not x or len(x) < 2:\n", 1075 | " return UNKNOWN\n", 1076 | " tp = x[1]\n", 1077 | " tpName = pspOSM[\"\"][tp]\n", 1078 | " subTpName = None if tp in noSubTypes or len(x) < 3 else pspOSM[tp][x[2]]\n", 1079 | " return \":\".join((x for x in (tpName, subTpName) if x is not None))\n", 1080 | "\n", 1081 | "\n", 1082 | "def getTypeBHS(w):\n", 1083 | " return \":\".join(\n", 1084 | " (\n", 1085 | " getValueBHS(F.sp.v(w), spBHS),\n", 1086 | " getValueBHS(F.ls.v(w), lsBHS),\n", 1087 | " getValueBHS(F.nametype.v(w), nametypeBHS),\n", 1088 | " )\n", 1089 | " )\n", 1090 | "\n", 1091 | "\n", 1092 | "def getTypeOSM(w):\n", 1093 | " return getValueOSM(F.osm.v(w))\n", 1094 | "\n", 1095 | "\n", 1096 | "def getSuffixTypeBHS(w):\n", 1097 | " prs = getValueBHS(F.prs.v(w))\n", 1098 | " if prs not in {NA, UNKNOWN}:\n", 1099 | " prs = PRS\n", 1100 | " return \":\".join((prs, getValueBHS(F.uvf.v(w))))\n", 1101 | "\n", 1102 | "\n", 1103 | "def getSuffixTypeOSM(w):\n", 1104 | " return getValueOSM(F.osm_sf.v(w))\n", 1105 | "\n", 1106 | "\n", 1107 | "def getWordBHS(w):\n", 1108 | " return \"T={} S={}\".format(getTypeBHS(w), getSuffixTypeBHS(w))\n", 1109 | "\n", 1110 | "\n", 1111 | "def getWordOSM(w):\n", 1112 | " return \"T={} [{}] S={} [{}]\".format(\n", 1113 | " getTypeOSM(w),\n", 1114 | " F.osm.v(w),\n", 1115 | " getSuffixTypeOSM(w),\n", 1116 | " F.osm_sf.v(w),\n", 1117 | " )" 1118 | ] 1119 | }, 1120 | { 1121 | "cell_type": "code", 1122 | "execution_count": 20, 1123 | "metadata": {}, 1124 | "outputs": [], 1125 | "source": [ 1126 | "def showFeatures(base):\n", 1127 | " cases = set()\n", 1128 | " categories = []\n", 1129 | " categoriesCases = []\n", 1130 | " mappings = {}\n", 1131 | "\n", 1132 | " def makeMap(key, getBHS, getOSM):\n", 1133 | " BHSFromOSM = {}\n", 1134 | " OSMFromBHS = {}\n", 1135 | "\n", 1136 | " for w in base:\n", 1137 | " osm = getOSM(w)\n", 1138 | " bhs = getBHS(w)\n", 1139 | " BHSFromOSM.setdefault(osm, {}).setdefault(bhs, set()).add(w)\n", 1140 | " OSMFromBHS.setdefault(bhs, {}).setdefault(osm, set()).add(w)\n", 1141 | " mappings.setdefault(key, {})[True] = BHSFromOSM\n", 1142 | " mappings.setdefault(key, {})[False] = OSMFromBHS\n", 1143 | "\n", 1144 | " def showMap(key, direction):\n", 1145 | " dirLabel = \"OSM ===> BHS\" if direction else \"BHS ===> OSM\"\n", 1146 | " categories.append(\n", 1147 | " \"\"\"\n", 1148 | "---------------------------------------------------------------------------------\n", 1149 | "--- {} {}\n", 1150 | "---------------------------------------------------------------------------------\n", 1151 | "\"\"\".format(\n", 1152 | " key, dirLabel\n", 1153 | " )\n", 1154 | " )\n", 1155 | " categoriesCases.append(categories[-1])\n", 1156 | " cases = set()\n", 1157 | " for (item, itemData) in sorted(mappings[key][direction].items()):\n", 1158 | " categories.append(\"{:<40}\".format(item))\n", 1159 | " categoriesCases.append(categories[-1])\n", 1160 | "\n", 1161 | " totalCases = reduce(operator.add, (len(d) for d in itemData.values()), 0)\n", 1162 | " for (itemOther, ws) in sorted(\n", 1163 | " itemData.items(), key=lambda x: (-len(x[1]), x[0])\n", 1164 | " ):\n", 1165 | " nws = len(ws)\n", 1166 | " perc = int(round(100 * nws / totalCases))\n", 1167 | " categories.append(\n", 1168 | " \"\\t{:<40} ({:>3}% = {:>6}x)\".format(itemOther, perc, nws)\n", 1169 | " )\n", 1170 | " categoriesCases.append(categories[-1])\n", 1171 | " if nws < 0.1 * totalCases:\n", 1172 | " for w in sorted(ws)[0:10]:\n", 1173 | " categoriesCases.append(\n", 1174 | " show(\n", 1175 | " T,\n", 1176 | " F,\n", 1177 | " [w],\n", 1178 | " getWordBHS,\n", 1179 | " getWordOSM,\n", 1180 | " indent=\"\\t\\t\\t\\t\",\n", 1181 | " asString=True,\n", 1182 | " )\n", 1183 | " )\n", 1184 | " cases.add(w)\n", 1185 | " if nws > 10:\n", 1186 | " categoriesCases.append(\"\\t\\t\\t\\tand {} more\".format(nws - 10))\n", 1187 | " categories.append(\"\\n{} ({}): {} cases\".format(key, dirLabel, len(cases)))\n", 1188 | " categoriesCases.append(categories[-1])\n", 1189 | "\n", 1190 | " return cases\n", 1191 | "\n", 1192 | " def showFeature(key):\n", 1193 | " cases = set()\n", 1194 | " categories.append(\n", 1195 | " \"\"\"\n", 1196 | "o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o\n", 1197 | "o-o COMPARING FEATURE {}\n", 1198 | "o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o-o\n", 1199 | "\"\"\".format(\n", 1200 | " key\n", 1201 | " )\n", 1202 | " )\n", 1203 | " categoriesCases.append(categories[-1])\n", 1204 | "\n", 1205 | " for direction in (True, False):\n", 1206 | " theseCases = showMap(key, direction)\n", 1207 | " cases |= theseCases\n", 1208 | " categories.append(\"\\n{}: {} cases\".format(key, len(cases)))\n", 1209 | " categoriesCases.append(categories[-1])\n", 1210 | "\n", 1211 | " return cases\n", 1212 | "\n", 1213 | " for (key, getBHS, getOSM) in (\n", 1214 | " (\"main\", getTypeBHS, getTypeOSM),\n", 1215 | " (\"suffix\", getSuffixTypeBHS, getSuffixTypeOSM),\n", 1216 | " ):\n", 1217 | " makeMap(key, getBHS, getOSM)\n", 1218 | " cases |= showFeature(key)\n", 1219 | "\n", 1220 | " categories.append(\"\\n{}: {} cases\".format(\"All features\", len(cases)))\n", 1221 | " categoriesCases.append(categories[-1])\n", 1222 | "\n", 1223 | " with open(\"categories.txt\", \"w\") as fh:\n", 1224 | " fh.write(\"\\n\".join(categories))\n", 1225 | " with open(\"categoriesCases.txt\", \"w\") as fh:\n", 1226 | " fh.write(\"\\n\".join(categoriesCases))\n", 1227 | "\n", 1228 | " fields = \"\"\"\n", 1229 | " passage\n", 1230 | " node\n", 1231 | " occurrence\n", 1232 | " OSMmorph\n", 1233 | " OSMtype\n", 1234 | " BHStype\n", 1235 | " OSMmorphSuffix\n", 1236 | " OSMsuffixType\n", 1237 | " BHSsuffixType\n", 1238 | " \"\"\".strip().split()\n", 1239 | " lineFormat = (\"{}\\t\" * (len(fields) - 1)) + \"{}\\n\"\n", 1240 | "\n", 1241 | " with open(\"allCategoriesCases.tsv\", \"w\") as fh:\n", 1242 | " fh.write(lineFormat.format(*fields))\n", 1243 | " for w in sorted(cases):\n", 1244 | " fh.write(\n", 1245 | " lineFormat.format(\n", 1246 | " \"{} {}:{}\".format(*T.sectionFromNode(w)),\n", 1247 | " w,\n", 1248 | " F.g_word_utf8.v(w),\n", 1249 | " F.osm.v(w),\n", 1250 | " getTypeOSM(w),\n", 1251 | " getTypeBHS(w),\n", 1252 | " F.osm_sf.v(w),\n", 1253 | " getSuffixTypeOSM(w),\n", 1254 | " getSuffixTypeBHS(w),\n", 1255 | " )\n", 1256 | " )" 1257 | ] 1258 | }, 1259 | { 1260 | "cell_type": "markdown", 1261 | "metadata": {}, 1262 | "source": [ 1263 | "# Feature comparison\n", 1264 | "We are going to compare all features." 1265 | ] 1266 | }, 1267 | { 1268 | "cell_type": "code", 1269 | "execution_count": 21, 1270 | "metadata": {}, 1271 | "outputs": [], 1272 | "source": [ 1273 | "showFeatures(wordBase)" 1274 | ] 1275 | }, 1276 | { 1277 | "cell_type": "markdown", 1278 | "metadata": { 1279 | "tags": [] 1280 | }, 1281 | "source": [ 1282 | "# Results\n", 1283 | "* [categories.txt](categories.txt) overview of co-occurrences of OSM and BHSA categories\n", 1284 | "* [categoriesCases.txt](categoriesCases.txt) same, but examples for the rarer combinations\n", 1285 | "* [allCategoriesCases.tsv](allCategoriesCases.tsv) all rarer cases, in biblical order" 1286 | ] 1287 | } 1288 | ], 1289 | "metadata": { 1290 | "kernelspec": { 1291 | "display_name": "Python 3 (ipykernel)", 1292 | "language": "python", 1293 | "name": "python3" 1294 | }, 1295 | "language_info": { 1296 | "codemirror_mode": { 1297 | "name": "ipython", 1298 | "version": 3 1299 | }, 1300 | "file_extension": ".py", 1301 | "mimetype": "text/x-python", 1302 | "name": "python", 1303 | "nbconvert_exporter": "python", 1304 | "pygments_lexer": "ipython3", 1305 | "version": "3.9.5" 1306 | }, 1307 | "widgets": { 1308 | "application/vnd.jupyter.widget-state+json": { 1309 | "state": {}, 1310 | "version_major": 2, 1311 | "version_minor": 0 1312 | } 1313 | } 1314 | }, 1315 | "nbformat": 4, 1316 | "nbformat_minor": 4 1317 | } 1318 | -------------------------------------------------------------------------------- /programs/allCategoriesCases.tsv: -------------------------------------------------------------------------------- 1 | passage node occurrence OSMmorph OSMtype BHStype OSMmorphSuffix OSMsuffixType BHSsuffixType 2 | Genesis 1:2 15 הָיְתָ֥ה HVqp3fs verb verb:copulative verb: None ? : 3 | Genesis 1:3 33 יֹּ֥אמֶר HVqw3ms verb verb:quotation verb: None ? : 4 | Genesis 1:3 35 יְהִ֣י HVqj3ms verb verb:copulative verb: None ? : 5 | Genesis 1:3 38 יְהִי HVqw3ms verb verb:copulative verb: None ? : 6 | Genesis 1:4 47 טֹ֑וב HAamsa adjective:adjective verb:: None ? : 7 | Genesis 1:4 51 בֵּ֥ין HR preposition noun:potential preposition: None ? : 8 | Genesis 1:4 55 בֵ֥ין HR preposition noun:potential preposition: None ? : 9 | Genesis 1:5 61 לָ HRd preposition:definite article preposition:: None ? : 10 | Genesis 1:5 64 יֹ֔ום HNcmsa noun:common noun:potential adverb: None ? : 11 | Genesis 1:5 66 לַ HRd preposition:definite article preposition:: None ? : 12 | Genesis 1:5 70 לָ֑יְלָה HNcmsa noun:common noun:potential adverb: None ? : 13 | Genesis 1:5 72 יְהִי HVqw3ms verb verb:copulative verb: None ? : 14 | Genesis 1:5 73 עֶ֥רֶב HNcmsa noun:common noun:potential adverb: None ? : 15 | Genesis 1:5 75 יְהִי HVqw3ms verb verb:copulative verb: None ? : 16 | Genesis 1:5 76 בֹ֖קֶר HNcmsa noun:common noun:potential adverb: None ? : 17 | Genesis 1:5 77 יֹ֥ום HNcmsa noun:common noun:potential adverb: None ? : 18 | Genesis 1:6 80 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 19 | Genesis 1:6 82 יְהִ֥י HVqj3ms verb verb:copulative verb: None ? : 20 | Genesis 1:6 89 יהִ֣י HVqi3ms verb verb:copulative verb: None ? : 21 | Genesis 1:6 91 בֵּ֥ין HR preposition noun:potential preposition: None ? : 22 | Genesis 1:7 103 בֵּ֤ין HR preposition noun:potential preposition: None ? : 23 | Genesis 1:7 106 אֲשֶׁר֙ HTr particle:relative conjunction:: None ? : 24 | Genesis 1:7 108 תַּ֣חַת HR preposition noun:potential preposition: None ? : 25 | Genesis 1:7 109 לָ HRd preposition:definite article preposition:: None ? : 26 | Genesis 1:7 113 בֵ֣ין HR preposition noun:potential preposition: None ? : 27 | Genesis 1:7 116 אֲשֶׁ֖ר HTr particle:relative conjunction:: None ? : 28 | Genesis 1:7 119 לָ HRd preposition:definite article preposition:: None ? : 29 | Genesis 1:7 123 יְהִי HVqw3ms verb verb:copulative verb: None ? : 30 | Genesis 1:7 124 כֵֽן HD adverb adverb:anaphoric adverb: None ? : 31 | Genesis 1:8 128 לָֽ HRd preposition:definite article preposition:: None ? : 32 | Genesis 1:8 133 יְהִי HVqw3ms verb verb:copulative verb: None ? : 33 | Genesis 1:8 134 עֶ֥רֶב HNcmsa noun:common noun:potential adverb: None ? : 34 | Genesis 1:8 136 יְהִי HVqw3ms verb verb:copulative verb: None ? : 35 | Genesis 1:8 137 בֹ֖קֶר HNcmsa noun:common noun:potential adverb: None ? : 36 | Genesis 1:8 138 יֹ֥ום HNcmsa noun:common noun:potential adverb: None ? : 37 | Genesis 1:9 141 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 38 | Genesis 1:9 147 תַּ֤חַת HR preposition noun:potential preposition: None ? : 39 | Genesis 1:9 159 כֵֽן HD adverb adverb:anaphoric adverb: None ? : 40 | Genesis 1:10 163 לַ HRd preposition:definite article preposition:: None ? : 41 | Genesis 1:10 178 טֹֽוב HAamsa adjective:adjective verb:: None ? : 42 | Genesis 1:11 180 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 43 | Genesis 1:11 195 אֲשֶׁ֥ר HTr particle:relative conjunction:: None ? : 44 | Genesis 1:11 203 כֵֽן HD adverb adverb:anaphoric adverb: None ? : 45 | Genesis 1:12 218 אֲשֶׁ֥ר HTr particle:relative conjunction:: None ? : 46 | Genesis 1:12 227 טֹֽוב HAamsa adjective:adjective verb:: None ? : 47 | Genesis 1:13 230 עֶ֥רֶב HNcmsa noun:common noun:potential adverb: None ? : 48 | Genesis 1:13 233 בֹ֖קֶר HNcmsa noun:common noun:potential adverb: None ? : 49 | Genesis 1:14 237 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 50 | Genesis 1:14 247 בֵּ֥ין HR preposition noun:potential preposition: None ? : 51 | Genesis 1:14 251 בֵ֣ין HR preposition noun:potential preposition: None ? : 52 | Genesis 1:15 281 כֵֽן HD adverb adverb:anaphoric adverb: None ? : 53 | Genesis 1:18 330 בַּ HRd preposition:definite article preposition:: None ? : 54 | Genesis 1:18 334 בַ HRd preposition:definite article preposition:: None ? : 55 | Genesis 1:18 340 בֵּ֥ין HR preposition noun:potential preposition: None ? : 56 | Genesis 1:18 351 טֹֽוב HAamsa adjective:adjective verb:: None ? : 57 | Genesis 1:20 361 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 58 | Genesis 1:21 390 כָּל HNcmsc noun:common noun:distributive noun: None ? : 59 | Genesis 1:21 396 אֲשֶׁר֩ HTr particle:relative conjunction:: None ? : 60 | Genesis 1:21 404 כָּל HNcmsc noun:common noun:distributive noun: None ? : 61 | Genesis 1:21 413 טֹֽוב HAamsa adjective:adjective verb:: None ? : 62 | Genesis 1:22 419 אמֹ֑ר HVqc verb verb:quotation verb: None ? : 63 | Genesis 1:22 428 בַּ HRd preposition:definite article preposition:: None ? : 64 | Genesis 1:22 435 בָּ HRd preposition:definite article preposition:: None ? : 65 | Genesis 1:24 447 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 66 | Genesis 1:24 460 חַֽיְתֹו HNcfsc noun:common noun:: None ? :W 67 | Genesis 1:24 466 כֵֽן HD adverb adverb:anaphoric adverb: None ? : 68 | Genesis 1:25 484 כָּל HNcmsc noun:common noun:distributive noun: None ? : 69 | Genesis 1:25 494 טֹֽוב HAamsa adjective:adjective verb:: None ? : 70 | Genesis 1:26 496 יֹּ֣אמֶר HVqw3ms verb verb:quotation verb: None ? : 71 | Genesis 1:26 521 כָל HNcmsc noun:common noun:distributive noun: None ? : 72 | Genesis 1:26 526 כָל HNcmsc noun:common noun:distributive noun: None ? : 73 | Genesis 1:28 557 יֹּ֨אמֶר HVqw3ms verb verb:quotation verb: None ? : 74 | Genesis 1:28 583 כָל HNcmsc noun:common noun:distributive noun: None ? : 75 | Genesis 1:29 597 כָּל HNcmsc noun:common noun:distributive noun: None ? : 76 | Genesis 1:29 601 אֲשֶׁר֙ HTr particle:relative conjunction:: None ? : 77 | Genesis 1:29 604 כָל HNcmsc noun:common noun:distributive noun: None ? : 78 | Genesis 1:29 609 כָּל HNcmsc noun:common noun:distributive noun: None ? : 79 | Genesis 1:29 612 אֲשֶׁר HTr particle:relative conjunction:: None ? : 80 | Genesis 1:30 624 כָל HNcmsc noun:common noun:distributive noun: None ? : 81 | Genesis 1:30 641 אֲשֶׁר HTr particle:relative conjunction:: None ? : 82 | Genesis 1:30 653 כֵֽן HD adverb adverb:anaphoric adverb: None ? : 83 | Genesis 1:31 659 אֲשֶׁ֣ר HTr particle:relative conjunction:: None ? : 84 | Genesis 2:2 693 אֲשֶׁ֣ר HTr particle:relative conjunction:: None ? : 85 | Genesis 2:5 750 טֶ֚רֶם HD adverb noun:potential preposition: None ? : 86 | Genesis 2:5 760 טֶ֣רֶם HD adverb noun:potential preposition: None ? : 87 | Genesis 2:14 936 קִדְמַ֣ת HNcfsc noun:common noun:potential preposition: None ? : 88 | Genesis 2:21 1096 תַּחְתֶּֽנָּה HR preposition noun:potential preposition: HSp3fs suffix:pronominal p:N 89 | Genesis 2:24 1144 אָבִ֖יו HNcmsc noun:common noun:: HSp3ms suffix:pronominal p:J 90 | Genesis 3:3 1231 תְּמֻתֽוּן HVqi2mp verb verb:: HSn suffix:paragogic nun : 91 | Genesis 3:4 1241 תְּמֻתֽוּן HVqi2mp verb verb:: HSn suffix:paragogic nun : 92 | Genesis 3:9 1354 אַיֶּֽכָּה HTi particle:interrogative interrogative particle:: HSp2ms suffix:pronominal p:N 93 | Genesis 3:11 1385 בִלְתִּ֥י HC conjunction noun:potential preposition: None ? :J 94 | Genesis 3:15 1475 תְּשׁוּפֶ֥נּוּ HVqi2ms verb verb:: HSp3ms suffix:pronominal p:N 95 | Genesis 3:17 1500 אָדָ֣ם HNp noun:proper name noun:: None ? : 96 | Genesis 3:17 1526 תֹּֽאכֲלֶ֔נָּה HVqi2ms verb verb:: HSp3fs suffix:pronominal p:N 97 | Genesis 3:24 1663 דֶּ֖רֶךְ HNcbsc noun:common noun:potential preposition: None ? : 98 | Genesis 4:2 1691 אָחִ֖יו HNcmsc noun:common noun:distributive noun: HSp3ms suffix:pronominal p:J 99 | Genesis 4:4 1722 גַם HD adverb adverb:focus particle: None ? : 100 | Genesis 4:6 1759 לָ֚מָּה HR preposition interrogative particle:: HTi particle:interrogative : 101 | Genesis 4:6 1763 לָ֖מָּה HR preposition interrogative particle:: HTi particle:interrogative : 102 | Genesis 4:8 1792 אָחִ֑יו HNcmsc noun:common noun:distributive noun: HSp3ms suffix:pronominal p:J 103 | Genesis 4:8 1805 אָחִ֖יו HNcmsc noun:common noun:distributive noun: HSp3ms suffix:pronominal p:J 104 | Genesis 4:9 1815 אָחִ֑יךָ HNcmsc noun:common noun:distributive noun: HSp2ms suffix:pronominal p:J 105 | Genesis 4:10 1830 אָחִ֔יךָ HNcmsc noun:common noun:distributive noun: HSp2ms suffix:pronominal p:J 106 | Genesis 4:11 1851 אָחִ֖יךָ HNcmsc noun:common noun:distributive noun: HSp2ms suffix:pronominal p:J 107 | Genesis 4:15 1911 לָכֵן֙ HR preposition adverb:conjunctive adverb: HD adverb : 108 | Genesis 4:15 1915 שִׁבְעָתַ֖יִם HNcfda noun:common noun:cardinal: None ? : 109 | Genesis 4:15 1924 בִלְתִּ֥י HC conjunction noun:potential preposition: None ? :J 110 | Genesis 4:16 1941 קִדְמַת HNcfsc noun:common noun:potential preposition: None ? : 111 | Genesis 4:20 2010 אֲבִ֕י HNcmsc noun:common noun:: None ? :J 112 | Genesis 4:21 2017 אָחִ֖יו HNcmsc noun:common noun:distributive noun: HSp3ms suffix:pronominal p:J 113 | Genesis 4:21 2021 אֲבִ֕י HNcmsc noun:common noun:: None ? :J 114 | Genesis 4:22 2029 גַם HD adverb adverb:focus particle: None ? : 115 | Genesis 4:22 2033 תּ֣וּבַל קַ֔יִן HNp noun:proper name proper noun::person HNp noun:proper name : 116 | Genesis 4:22 2042 תּֽוּבַל־קַ֖יִן HNp noun:proper name proper noun::person HNp noun:proper name : 117 | Genesis 4:24 2068 שִׁבְעָתַ֖יִם HNcfda noun:common noun:cardinal: None ? : 118 | Genesis 5:24 2461 אֵינֶ֕נּוּ HTn particle:negative noun:copulative noun: HSp3ms suffix:pronominal p:N 119 | Genesis 6:3 2650 גַּ֖ם HD adverb adverb:focus particle: None ? : 120 | Genesis 6:4 2674 כֵ֗ן HD adverb adverb:anaphoric adverb: None ? : 121 | Genesis 6:4 2689 גִּבֹּרִ֛ים HAampa adjective:adjective noun:: None ? : 122 | Genesis 6:12 2822 דַּרְכֹּ֖ו HNcbsc noun:common noun:potential preposition: HSp3ms suffix:pronominal p: 123 | Genesis 6:16 2897 תְּכַלֶ֣נָּה HVpi2ms verb verb:: HSp3fs suffix:pronominal p:N 124 | Genesis 6:16 2900 מַ֔עְלָה HD adverb noun:: HSd suffix:directional he :H 125 | Genesis 7:8 3184 אֵינֶ֖נָּה HTn particle:negative noun:copulative noun: HSp3fs suffix:pronominal p:N 126 | Genesis 7:20 3440 מַ֔עְלָה HD adverb noun:: HSd suffix:directional he :H 127 | Genesis 8:13 3807 רִאשֹׁון֙ HAamsa adjective:adjective adjective:ordinal: None ? : 128 | Genesis 9:5 4110 אַ֨ךְ HD adverb adverb:focus particle: None ? : 129 | Genesis 9:5 4120 אֶדְרְשֶׁ֑נּוּ HVqi1cs verb verb:: HSp3ms suffix:pronominal p:N 130 | Genesis 9:5 4129 אָחִ֔יו HNcmsc noun:common noun:distributive noun: HSp3ms suffix:pronominal p:J 131 | Genesis 9:18 4387 אֲבִ֥י HNcmsc noun:common noun:: None ? :J 132 | Genesis 9:22 4424 אֲבִ֣י HNcmsc noun:common noun:: None ? :J 133 | Genesis 9:22 4428 אָבִ֑יו HNcmsc noun:common noun:: HSp3ms suffix:pronominal p:J 134 | Genesis 10:2 4565 תֻבָ֑ל HNp noun:proper name proper noun::people None ? : 135 | Genesis 10:2 4567 מֶ֖שֶׁךְ HNp noun:proper name proper noun::people None ? : 136 | Genesis 10:3 4573 אַשְׁכֲּנַ֥ז HNp noun:proper name proper noun::people None ? : 137 | Genesis 10:3 4575 רִיפַ֖ת HNp noun:proper name proper noun::people None ? : 138 | Genesis 10:4 4584 כִּתִּ֖ים HNp noun:proper name adjective:gentilic: None ? : 139 | Genesis 10:4 4586 דֹדָנִֽים HNp noun:proper name adjective:gentilic: None ? : 140 | Genesis 10:6 4609 פ֥וּט HNp noun:proper name proper noun::people None ? : 141 | Genesis 10:8 4639 גִּבֹּ֖ר HAamsa adjective:adjective noun:: None ? : 142 | Genesis 10:9 4645 גִבֹּֽר HAamsc adjective:adjective noun:: None ? : 143 | Genesis 10:9 4655 גִּבֹּ֥ור HAamsc adjective:adjective noun:: None ? : 144 | Genesis 10:11 4687 רְחֹבֹ֥ת עִ֖יר HNp noun:proper name proper noun::place HNp noun:proper name : 145 | Genesis 10:13 4708 לוּדִ֧ים HNgmpa noun:gentilic proper noun::people None ? : 146 | Genesis 10:13 4711 עֲנָמִ֛ים HNgmpa noun:gentilic proper noun::people None ? : 147 | Genesis 10:13 4714 לְהָבִ֖ים HNgmpa noun:gentilic proper noun::people None ? : 148 | Genesis 10:13 4717 נַפְתֻּחִֽים HNgmpa noun:gentilic proper noun::people None ? : 149 | Genesis 10:14 4720 פַּתְרֻסִ֞ים HNgmpa noun:gentilic proper noun::people None ? : 150 | Genesis 10:14 4723 כַּסְלֻחִ֗ים HNgmpa noun:gentilic proper noun::people None ? : 151 | Genesis 10:18 4778 אַחַ֣ר HD adverb noun:potential preposition: None ? : 152 | Genesis 10:21 4821 אֲבִי֙ HNcmsc noun:common noun:: None ? :J 153 | Genesis 10:21 4825 אֲחִ֖י HNcmsc noun:common noun:distributive noun: None ? :J 154 | Genesis 10:29 4920 יֹובָ֑ב HNp noun:proper name proper noun::people None ? : 155 | Genesis 11:3 4996 הָ֚בָה HVqv2ms verb verb:: HSh suffix:paragogic he : 156 | Genesis 11:4 5020 הָ֣בָה HVqv2ms verb verb:: HSh suffix:paragogic he : 157 | Genesis 11:7 5085 הָ֚בָה HVqv2ms verb verb:: HSh suffix:paragogic he : 158 | Genesis 11:10 5148 שְׁנָתַ֖יִם HAcfda adjective:cardinal number noun:: None ? : 159 | Genesis 11:29 5421 אֲבִֽי HNcmsc noun:common noun:: None ? :J 160 | Genesis 11:29 5424 אֲבִ֥י HNcmsc noun:common noun:: None ? :J 161 | Genesis 12:1 5504 אַרְאֶֽךָּ HVhi1cs verb verb:: HSp2ms suffix:pronominal p:N 162 | Genesis 12:8 5642 בֵֽית־אֵ֖ל HNp noun:proper name proper noun::place HNp noun:proper name : 163 | Genesis 12:8 5646 בֵּֽית־אֵ֤ל HNp noun:proper name proper noun::place HNp noun:proper name : 164 | Genesis 12:15 5766 פַרְעֹ֔ה HNp noun:proper name noun:: None ? : 165 | Genesis 12:15 5771 פַּרְעֹ֑ה HNp noun:proper name noun:: None ? : 166 | Genesis 12:15 5777 פַּרְעֹֽה HNp noun:proper name noun:: None ? : 167 | Genesis 12:17 5804 פַּרְעֹ֛ה HNp noun:proper name noun:: None ? : 168 | Genesis 12:18 5817 פַרְעֹה֙ HNp noun:proper name noun:: None ? : 169 | Genesis 12:18 5826 לָ֚מָּה HR preposition interrogative particle:: HTi particle:interrogative : 170 | Genesis 12:19 5833 לָמָ֤ה HR preposition interrogative particle:: HTi particle:interrogative : 171 | Genesis 12:20 5853 פַּרְעֹ֖ה HNp noun:proper name noun:: None ? : 172 | Genesis 13:3 5905 בֵּֽית־אֵ֑ל HNp noun:proper name proper noun::place HNp noun:proper name : 173 | Genesis 13:3 5917 בֵּֽית־אֵ֖ל HNp noun:proper name proper noun::place HNp noun:proper name : 174 | Genesis 13:15 6153 אֶתְּנֶ֑נָּה HVqi1cs verb verb:: HSp3fs suffix:pronominal p:N 175 | Genesis 14:5 6289 רְפָאִים֙ HNgmsa noun:gentilic proper noun::people None ? : 176 | Genesis 14:5 6291 עַשְׁתְּרֹ֣ת קַרְנַ֔יִם HNp noun:proper name proper noun::place HNgmsa noun:gentilic : 177 | Genesis 14:5 6303 שָׁוֵ֖ה HNp noun:proper name noun:: None ? : 178 | Genesis 14:6 6313 אֵ֣יל פָּארָ֔ן HNp noun:proper name proper noun::place HNp noun:proper name : 179 | Genesis 14:7 6323 עֵ֤ין מִשְׁפָּט֙ HNp noun:proper name proper noun::place HNp noun:proper name : 180 | Genesis 14:7 6341 חַֽצְצֹ֥ן תָּמָֽר HNp noun:proper name proper noun::place HNp noun:proper name : 181 | Genesis 15:2 6697 אֲדֹנָ֤י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 182 | Genesis 15:8 6801 אֲדֹנָ֣י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 183 | Genesis 15:9 6811 קְחָ֥ה HVqv2ms verb verb:: HSh suffix:paragogic he : 184 | Genesis 15:14 6912 כֵ֥ן HD adverb adverb:anaphoric adverb: None ? : 185 | Genesis 15:20 7015 רְפָאִֽים HNgmpa noun:gentilic proper noun::people None ? : 186 | Genesis 16:7 7176 דֶ֥רֶךְ HNcbsc noun:common noun:potential preposition: None ? : 187 | Genesis 16:13 7275 גַ֥ם HD adverb adverb:focus particle: None ? : 188 | Genesis 16:14 7286 בְּאֵ֥ר HNp noun:proper name noun:: None ? : 189 | Genesis 17:1 7342 אֵ֣ל HNp noun:proper name noun:: None ? : 190 | Genesis 17:19 7636 אֲבָל֙ HD adverb interjection:: None ? : 191 | Genesis 18:1 7815 חֹ֥ם HNcmsc noun:common verb:: None ? : 192 | Genesis 18:3 7844 אֲדֹנָ֗י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 193 | Genesis 18:13 8030 לָ֣מָּה HR preposition interrogative particle:: HTi particle:interrogative : 194 | Genesis 18:13 8037 אַ֥ף HD adverb adverb:focus particle: None ? : 195 | Genesis 18:19 8132 דֶּ֣רֶךְ HNcbsc noun:common noun:potential preposition: None ? : 196 | Genesis 18:23 8200 אַ֣ף HD adverb adverb:focus particle: None ? : 197 | Genesis 18:24 8206 יֵ֛שׁ HTm particle:demonstrative noun:copulative noun: None ? : 198 | Genesis 18:24 8214 אַ֤ף HD adverb adverb:focus particle: None ? : 199 | Genesis 18:25 8229 חָלִ֨לָה HTj particle:interjection interjection:: HSh suffix:paragogic he : 200 | Genesis 18:25 8251 חָלִ֣לָה HTj particle:interjection interjection:: HSh suffix:paragogic he : 201 | Genesis 18:27 8293 אֲדֹנָ֔י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 202 | Genesis 18:28 8300 יַחְסְר֞וּן HVqi3mp verb verb:: HSn suffix:paragogic nun : 203 | Genesis 18:29 8332 יִמָּצְא֥וּן HVNi3mp verb verb:: HSn suffix:paragogic nun : 204 | Genesis 18:30 8349 אדֹנָי֙ HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 205 | Genesis 18:30 8353 יִמָּצְא֥וּן HVNi3mp verb verb:: HSn suffix:paragogic nun : 206 | Genesis 18:31 8372 אֲדֹנָ֔י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 207 | Genesis 18:31 8374 יִמָּצְא֥וּן HVNi3mp verb verb:: HSn suffix:paragogic nun : 208 | Genesis 18:32 8391 אדֹנָי֙ HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 209 | Genesis 18:32 8398 יִמָּצְא֥וּן HVNi3mp verb verb:: HSn suffix:paragogic nun : 210 | Genesis 19:2 8470 דַרְכְּכֶ֑ם HNcbsc noun:common noun:potential preposition: HSp2mp suffix:pronominal p: 211 | Genesis 19:4 8499 טֶרֶם֮ HD adverb noun:potential preposition: None ? : 212 | Genesis 19:21 8904 בִלְתִּ֛י HC conjunction noun:potential preposition: None ? :J 213 | Genesis 19:31 9108 דֶ֖רֶךְ HNcbsc noun:common noun:potential preposition: None ? : 214 | Genesis 19:32 9112 לְכָ֨ה HVqv2ms verb verb:: HSh suffix:paragogic he : 215 | Genesis 19:38 9231 גַם HD adverb adverb:focus particle: None ? : 216 | Genesis 19:38 9242 עַמֹּ֖ון HNp noun:proper name proper noun::people None ? : 217 | Genesis 20:4 9312 אֲדֹנָ֕י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 218 | Genesis 20:5 9327 גַם HD adverb adverb:focus particle: None ? : 219 | Genesis 21:23 10032 הִשָּׁ֨בְעָה HVNv2ms verb verb:: HSh suffix:paragogic he : 220 | Genesis 21:26 10103 בִּלְתִּ֥י HC conjunction noun:potential preposition: None ? :J 221 | Genesis 22:9 10452 מַּ֖עַל HD adverb noun:: None ? : 222 | Genesis 22:16 10579 יַ֚עַן HC conjunction noun:potential preposition: None ? : 223 | Genesis 22:18 10629 עֵ֕קֶב HNcmsa noun:common noun:potential preposition: None ? : 224 | Genesis 23:1 10747 שְׁנֵ֖י HAcmdc adjective:cardinal number noun:: None ? : 225 | Genesis 23:2 10754 קִרְיַ֥ת אַרְבַּ֛ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 226 | Genesis 23:8 10850 יֵ֣שׁ HTm particle:demonstrative noun:copulative noun: None ? : 227 | Genesis 23:19 11071 כֵן֩ HD adverb adverb:anaphoric adverb: None ? : 228 | Genesis 24:15 11421 טֶרֶם֮ HD adverb noun:potential preposition: None ? : 229 | Genesis 24:21 11537 דַּרְכֹּ֖ו HNcbsc noun:common noun:potential preposition: HSp3ms suffix:pronominal p: 230 | Genesis 24:23 11574 יֵ֧שׁ HTm particle:demonstrative noun:copulative noun: None ? : 231 | Genesis 24:31 11718 לָ֤מָּה HR preposition interrogative particle:: HTi particle:interrogative : 232 | Genesis 24:42 11927 יֶשְׁךָ HTm particle:demonstrative noun:copulative noun: HSp2ms suffix:pronominal p: 233 | Genesis 24:45 11980 טֶ֨רֶם HD adverb noun:potential preposition: None ? : 234 | Genesis 24:49 12084 יֶשְׁכֶ֨ם HTm particle:demonstrative noun:copulative noun: HSp2mp suffix:pronominal p: 235 | Genesis 24:59 12263 מֵנִקְתָּ֑הּ HVhrfsc verb noun:: HSp3fs suffix:pronominal p: 236 | Genesis 24:60 12283 רְבָבָ֑ה HNcfsa noun:common noun:noun of multitude: None ? : 237 | Genesis 25:3 12467 אַשּׁוּרִ֥ם HNp noun:proper name proper noun::people None ? : 238 | Genesis 25:3 12469 לְטוּשִׁ֖ים HNp noun:proper name proper noun::people None ? : 239 | Genesis 25:3 12471 לְאֻמִּֽים HNp noun:proper name proper noun::people None ? : 240 | Genesis 25:7 12524 שְׁנֵֽי HAcmdc adjective:cardinal number noun:: None ? : 241 | Genesis 25:17 12671 שְׁנֵי֙ HAcmdc adjective:cardinal number noun:: None ? : 242 | Genesis 25:22 12770 לָ֥מָּה HR preposition interrogative particle:: HTi particle:interrogative : 243 | Genesis 25:26 12827 כֵ֞ן HD adverb adverb:anaphoric adverb: None ? : 244 | Genesis 25:31 12918 מִכְרָ֥ה HVqv2ms verb verb:: HSh suffix:paragogic he : 245 | Genesis 25:32 12934 לָמָּה HR preposition interrogative particle:: HTi particle:interrogative : 246 | Genesis 25:33 12941 הִשָּׁ֤בְעָה HVNv2ms verb verb:: HSh suffix:paragogic he : 247 | Genesis 26:13 13242 גָדֵ֔ל HVqrmsa verb adjective:: None ? : 248 | Genesis 26:33 13592 שִׁבְעָ֑ה HAcmsa adjective:cardinal number proper noun::place None ? : 249 | Genesis 26:33 13599 שֶׁ֔בַע HAcfsa adjective:cardinal number proper noun::place None ? : 250 | Genesis 27:4 13703 טֶ֥רֶם HD adverb noun:potential preposition: None ? : 251 | Genesis 27:28 14101 שְׁמַנֵּ֖י HNcmpc noun:common adjective:: None ? : 252 | Genesis 27:33 14203 אֵפֹ֡וא HD adverb interjection:: None ? : 253 | Genesis 27:33 14216 טֶ֥רֶם HD adverb noun:potential preposition: None ? : 254 | Genesis 27:37 14306 אֵפֹ֔וא HD adverb interjection:: None ? : 255 | Genesis 27:39 14340 שְׁמַנֵּ֤י HNcmpc noun:common adjective:: None ? : 256 | Genesis 27:45 14451 אַף HTa particle:affirmation noun:: None ? : 257 | Genesis 27:45 14466 לָמָ֥ה HR preposition interrogative particle:: HTi particle:interrogative : 258 | Genesis 27:46 14497 לָ֥מָּה HR preposition interrogative particle:: HTi particle:interrogative : 259 | Genesis 28:16 14814 אָכֵן֙ HD adverb interjection:: None ? : 260 | Genesis 28:16 14815 יֵ֣שׁ HTm particle:demonstrative noun:copulative noun: None ? : 261 | Genesis 28:19 14887 רִאשֹׁנָֽה HAafsa adjective:adjective adjective:ordinal: None ? : 262 | Genesis 30:2 15621 אַ֥ף HTa particle:affirmation noun:: None ? : 263 | Genesis 30:11 15747 ב HR preposition verb:: None ? : 264 | Genesis 30:15 15824 לָכֵן֙ HR preposition adverb:conjunctive adverb: HD adverb : 265 | Genesis 30:21 15924 אַחַ֖ר HD adverb noun:potential preposition: None ? : 266 | Genesis 30:42 16354 עֲטֻפִים֙ HVqsmpa verb adjective:: None ? : 267 | Genesis 31:20 16738 בְּלִי֙ HTn particle:negative noun:potential preposition: None ? : 268 | Genesis 31:29 16895 יֶשׁ HTm particle:demonstrative noun:copulative noun: None ? : 269 | Genesis 31:47 17279 שָׂהֲדוּתָ֑א ANp noun:proper name noun:: None ? :> 270 | Genesis 32:5 17501 תֹאמְר֔וּן HVqi2mp verb verb:quotation verb: HSn suffix:paragogic nun : 271 | Genesis 32:20 17838 תְּדַבְּר֣וּן HVpi2mp verb verb:quotation verb: HSn suffix:paragogic nun : 272 | Genesis 33:2 18115 רִֽאשֹׁנָ֑ה HAafsa adjective:adjective adjective:ordinal: None ? : 273 | Genesis 33:7 18203 אַחַ֗ר HD adverb noun:potential preposition: None ? : 274 | Genesis 33:9 18232 יֶשׁ HTm particle:demonstrative noun:copulative noun: None ? : 275 | Genesis 33:11 18279 יֶשׁ HTm particle:demonstrative noun:copulative noun: None ? : 276 | Genesis 35:16 19359 אֶפְרָ֑תָה HNp noun:proper name proper noun::person None ? :H 277 | Genesis 35:19 19408 אֶפְרָ֔תָה HNp noun:proper name proper noun::person None ? :H 278 | Genesis 35:21 19433 מִגְדַּל־עֵֽדֶר HNcmsc noun:common proper noun::place HNp noun:proper name : 279 | Genesis 37:30 20738 אָ֥נָה HD adverb interrogative particle:: None ? : 280 | Genesis 38:9 20980 בִלְתִּ֥י HC conjunction noun:potential preposition: None ? :J 281 | Genesis 38:21 21221 קְּדֵשָׁ֛ה HNcfsa noun:common adjective:: None ? : 282 | Genesis 39:4 21484 יֶשׁ HTm particle:demonstrative noun:copulative noun: None ? : 283 | Genesis 39:20 21838 אסורי HVqsmpc verb noun:: None ? : 284 | Genesis 40:1 21928 אֹפֶ֑ה HVqrmsa verb noun:: None ? : 285 | Genesis 40:2 21943 מַּשְׁקִ֔ים HNcmpa noun:common verb:: None ? : 286 | Genesis 40:2 21948 אֹופִֽים HVqrmpa verb noun:: None ? : 287 | Genesis 40:5 21997 מַּשְׁקֶ֣ה HNcmsa noun:common verb:: None ? : 288 | Genesis 40:5 22000 אֹפֶ֗ה HVqrmsa verb noun:: None ? : 289 | Genesis 40:9 22067 מַּשְׁקִ֛ים HNcmpa noun:common verb:: None ? : 290 | Genesis 40:16 22206 אֹפִ֖ים HVqrmpa verb noun:: None ? : 291 | Genesis 40:17 22236 אֹפֶ֑ה HVqrmsa verb noun:: None ? : 292 | Genesis 40:20 22307 מַּשְׁקִ֗ים HNcmpa noun:common verb:: None ? : 293 | Genesis 40:20 22313 אֹפִ֖ים HVqrmpa verb noun:: None ? : 294 | Genesis 40:21 22322 מַּשְׁקִ֖ים HNcmpa noun:common verb:: None ? : 295 | Genesis 40:22 22336 אֹפִ֖ים HVqrmpa verb noun:: None ? : 296 | Genesis 40:23 22348 מַּשְׁקִ֛ים HNcmpa noun:common verb:: None ? : 297 | Genesis 41:1 22357 שְׁנָתַ֣יִם HAcfda adjective:cardinal number noun:: None ? : 298 | Genesis 41:9 22517 מַּשְׁקִ֔ים HNcmpa noun:common verb:: None ? : 299 | Genesis 41:10 22546 אֹפִֽים HVqrmpa verb noun:: None ? : 300 | Genesis 41:20 22725 רִאשֹׁנֹ֖ות HAafpa adjective:adjective adjective:ordinal: None ? : 301 | Genesis 41:23 22768 צְנֻמֹ֥ות HVqsfpa verb adjective:: None ? : 302 | Genesis 41:27 22857 שְׁנֵ֥י HAcmdc adjective:cardinal number noun:: None ? : 303 | Genesis 41:30 22886 שְׁנֵ֤י HAcmdc adjective:cardinal number noun:: None ? : 304 | Genesis 41:34 22974 שְׁנֵ֥י HAcmdc adjective:cardinal number noun:: None ? : 305 | Genesis 41:36 23013 שְׁנֵ֣י HAcmdc adjective:cardinal number noun:: None ? : 306 | Genesis 41:42 23117 שֵׁ֔שׁ HAcfsa adjective:cardinal number noun:: None ? : 307 | Genesis 41:43 23138 אַבְרֵ֑ךְ HD adverb interjection:: None ? : 308 | Genesis 42:21 23766 אֲבָל֮ HD adverb interjection:: None ? : 309 | Genesis 43:3 24186 בִּלְתִּ֖י HC conjunction noun:potential preposition: None ? :J 310 | Genesis 43:5 24214 בִּלְתִּ֖י HC conjunction noun:potential preposition: None ? :J 311 | Genesis 43:11 24328 אֵפֹוא֮ HD adverb interjection:: None ? : 312 | Genesis 43:16 24456 בָּ֑יְתָה HNcmsa noun:common noun:: HSh suffix:paragogic he :H 313 | Genesis 43:32 24780 יוּכְל֜וּן HVqi3mp verb verb:: HSn suffix:paragogic nun : 314 | Genesis 44:4 24921 טֹובָֽה HAafsa adjective:adjective noun:: None ? : 315 | Genesis 47:18 26980 בִּלְתִּ֥י HC conjunction noun:potential preposition: None ? :J 316 | Genesis 47:24 27122 חֲמִישִׁ֖ית HAofsa adjective:ordinal number noun:: None ? : 317 | Genesis 48:7 27442 אֶפְרָ֑תָה HNp noun:proper name proper noun::person None ? :H 318 | Genesis 49:15 27976 טֹ֔וב HAamsa adjective:adjective verb:: None ? : 319 | Genesis 50:20 28636 טֹבָ֔ה HAafsa adjective:adjective noun:: None ? : 320 | Exodus 2:14 29422 אָכֵ֖ן HD adverb interjection:: None ? : 321 | Exodus 3:22 30146 שְּׁכֶנְתָּהּ֙ HAafsc adjective:adjective noun:: HSp3fs suffix:pronominal p: 322 | Exodus 4:10 30371 אֲדֹנָי֒ HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 323 | Exodus 4:13 30434 אֲדֹנָ֑י HNcmpc noun:common proper noun::person HSp1cs suffix:pronominal : 324 | Exodus 4:14 30442 אַ֨ף HTa particle:affirmation noun:: None ? : 325 | Exodus 6:6 31335 לָכֵ֞ן HR preposition adverb:conjunctive adverb: HD adverb : 326 | Exodus 8:18 32803 בִלְתִּ֥י HC conjunction noun:potential preposition: None ? :J 327 | Exodus 10:7 33969 הֲ HTd particle:definite article interrogative particle:interrogative particle: None ? : 328 | Exodus 10:10 34025 כֵ֤ן HD adverb adjective:: None ? : 329 | Exodus 10:29 34442 כֵּ֣ן HTm particle:demonstrative adjective:: None ? : 330 | Exodus 12:4 34751 שְׁכֵנֹ֛ו HAamsc adjective:adjective noun:: HSp3ms suffix:pronominal p: 331 | Exodus 12:8 34843 מְרֹרִ֖ים HNcmpa noun:common adjective:: None ? : 332 | Exodus 12:9 34848 נָ֔א HTe particle:exhortation adjective:: None ? : 333 | Exodus 13:12 36000 זְּכָרִ֖ים HNcmpa noun:common adjective:: None ? : 334 | Exodus 13:15 36078 זְּכָרִ֔ים HNcmpa noun:common adjective:: None ? : 335 | Exodus 14:11 36429 בְּלִ֤י HTn particle:negative noun:potential preposition: None ? : 336 | Exodus 16:28 37952 אָ֨נָה֙ HD adverb interrogative particle:: None ? : 337 | Exodus 18:9 38641 טֹּובָ֔ה HAafsa adjective:adjective noun:: None ? : 338 | Exodus 19:17 39432 תַחְתִּ֥ית HNcfsc noun:common adjective:: None ? : 339 | Exodus 20:4 39637 מַּ֡֔עַל HD adverb noun:: None ? : 340 | Exodus 20:20 39898 עֲבוּר֙ HR preposition noun:: None ? : 341 | Exodus 20:20 39906 עֲב֗וּר HR preposition noun:: None ? : 342 | Exodus 21:8 40137 רָעָ֞ה HAafsa adjective:adjective verb:: None ? : 343 | Exodus 21:8 40142 לא HTn particle:negative preposition:: None ? p: 344 | Exodus 24:11 41818 אֲצִילֵי֙ HNcmpc noun:common adjective:: None ? : 345 | Exodus 25:20 42255 מַ֗עְלָה HD adverb noun:: HSd suffix:directional he :H 346 | Exodus 25:21 42284 מָ֑עְלָה HD adverb noun:: HSd suffix:directional he :H 347 | Exodus 25:33 42483 מְֽשֻׁקָּדִ֞ים HVPsmpa verb adjective:: None ? : 348 | Exodus 25:33 42495 מְשֻׁקָּדִ֛ים HVPsmpa verb adjective:: None ? : 349 | Exodus 25:34 42520 מְשֻׁקָּדִ֔ים HVPsmpa verb adjective:: None ? : 350 | Exodus 26:8 42784 עַשְׁתֵּ֥י HAobpc adjective:ordinal number noun:cardinal: None ? : 351 | Exodus 26:12 42876 אֲחֹרֵ֥י HR preposition noun:potential adverb: None ? : 352 | Exodus 26:13 42898 סָר֜וּחַ HVqsmsa verb adjective:: None ? : 353 | Exodus 26:14 42925 מָֽעְלָה HD adverb noun:: HSd suffix:directional he :H 354 | Exodus 28:27 44195 מַּ֕עַל HD adverb noun:: None ? : 355 | Exodus 30:14 45769 מָ֑עְלָה HD adverb noun:: HSd suffix:directional he :H 356 | Exodus 32:19 46924 אַ֣ף HTa particle:affirmation noun:: None ? : 357 | Exodus 32:22 46989 אַ֖ף HTa particle:affirmation noun:: None ? : 358 | Exodus 33:16 47628 אֵפֹ֗וא HD adverb interjection:: None ? : 359 | Exodus 34:1 47777 רִאשֹׁנִ֑ים HAampa adjective:adjective adjective:ordinal: None ? : 360 | Exodus 34:1 47792 רִאשֹׁנִ֖ים HAampa adjective:adjective adjective:ordinal: None ? : 361 | Exodus 34:4 47852 רִאשֹׁנִ֗ים HAampa adjective:adjective adjective:ordinal: None ? : 362 | Exodus 36:19 49599 מָֽעְלָה HD adverb noun:: HSd suffix:directional he :H 363 | Exodus 37:19 50254 מְֽשֻׁקָּדִ֞ים HVPsmpa verb adjective:: None ? : 364 | Exodus 37:19 50266 מְשֻׁקָּדִ֛ים HVPsmpa verb adjective:: None ? : 365 | Exodus 37:20 50289 מְשֻׁ֨קָּדִ֔ים HVPsmpa verb adjective:: None ? : 366 | Leviticus 4:3 53551 אַשְׁמַ֣ת HNcfsc noun:common verb:: None ? : 367 | Leviticus 4:21 53978 רִאשֹׁ֑ון HAamsa adjective:adjective adjective:ordinal: None ? : 368 | Leviticus 5:8 54478 רִאשֹׁונָ֑ה HAafsa adjective:adjective adjective:ordinal: None ? : 369 | Leviticus 5:24 54847 חֲמִשִׁתָ֖יו HAobpc adjective:ordinal number noun:: HSp3ms suffix:pronominal p: 370 | Leviticus 5:24 54857 אַשְׁמָתֹֽו HNcfsc noun:common verb:: HSp3ms suffix:pronominal p: 371 | Leviticus 9:15 57193 רִאשֹֽׁון HAamsa adjective:adjective adjective:ordinal: None ? : 372 | Leviticus 10:10 57594 חֹ֑ל HNcmsa noun:common adjective:: None ? : 373 | Leviticus 11:21 58185 לא HTn particle:negative preposition:: None ? p: 374 | Leviticus 12:7 58837 זָּכָ֖ר HNcmsa noun:common adjective:: None ? : 375 | Leviticus 16:22 62715 גְּזֵרָ֑ה HAafsa adjective:adjective noun:: None ? : 376 | Leviticus 25:30 67709 לא HTn particle:negative preposition:: None ? p: 377 | Leviticus 26:8 68273 רְבָבָ֣ה HNcfsa noun:common noun:noun of multitude: None ? : 378 | Leviticus 27:15 69247 חֲמִישִׁ֧ית HAofsc adjective:ordinal number noun:: None ? : 379 | Numbers 1:16 69765 קריאי HAampc adjective:adjective verb:: None ? : 380 | Numbers 1:16 69772 אַלְפֵ֥י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 381 | Numbers 5:22 73203 אָמֵ֥ן HD adverb interjection:: None ? : 382 | Numbers 7:13 74147 מְלֵאִ֗ים HAampa adjective:adjective verb:: None ? : 383 | Numbers 7:72 74930 עַשְׁתֵּ֣י HAobpc adjective:ordinal number noun:cardinal: None ? : 384 | Numbers 10:4 76319 אַלְפֵ֥י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 385 | Numbers 10:36 76793 רִֽבְבֹ֖ות HNcfpc noun:common noun:noun of multitude: None ? : 386 | Numbers 10:36 76794 אַלְפֵ֥י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 387 | Numbers 11:10 76983 אַ֤ף HTa particle:affirmation noun:: None ? : 388 | Numbers 12:9 77734 אַ֧ף HTa particle:affirmation noun:: None ? : 389 | Numbers 13:18 78052 מְעַ֥ט HAamsa adjective:adjective noun:potential adverb: None ? : 390 | Numbers 13:22 78145 עֲנָ֑ק HNgmsa noun:gentilic noun:: None ? : 391 | Numbers 13:28 78267 אֶ֚פֶס HNcmsa noun:common noun:copulative noun: None ? : 392 | Numbers 13:28 78287 עֲנָ֖ק HNgmsa noun:gentilic noun:: None ? : 393 | Numbers 14:11 78626 אָ֥נָה HD adverb interrogative particle:: None ? : 394 | Numbers 14:11 78634 אָ֨נָה֙ HD adverb interrogative particle:: None ? : 395 | Numbers 14:16 78744 בִּלְתִּ֞י HTn particle:negative noun:potential preposition: None ? :J 396 | Numbers 15:6 79423 שְׁלִשִׁ֥ית HAofsa adjective:ordinal number noun:: None ? : 397 | Numbers 15:7 79431 שְׁלִשִׁ֣ית HAofsa adjective:ordinal number noun:: None ? : 398 | Numbers 16:11 80257 לָכֵ֗ן HR preposition adverb:conjunctive adverb: HD adverb : 399 | Numbers 20:12 82793 לָכֵ֗ן HR preposition adverb:conjunctive adverb: HD adverb : 400 | Numbers 21:20 83515 יְשִׁימֹֽן HNcmsa noun:common proper noun::place None ? : 401 | Numbers 21:23 83574 יָ֑הְצָה HNp noun:proper name proper noun::place HSd suffix:directional he : 402 | Numbers 22:22 84243 אַ֣ף HTa particle:affirmation noun:: None ? : 403 | Numbers 22:27 84375 אַ֣ף HTa particle:affirmation noun:: None ? : 404 | Numbers 22:35 84561 אֶ֗פֶס HNcmsa noun:common noun:copulative noun: None ? : 405 | Numbers 23:13 84916 אֶ֚פֶס HNcmsa noun:common noun:copulative noun: None ? : 406 | Numbers 23:18 85008 בְּנֹ֥ו HNcmsc noun:common noun:: HSp3ms suffix:pronominal :W 407 | Numbers 23:19 85020 הַ HTd particle:definite article interrogative particle:interrogative particle: None ? : 408 | Numbers 23:28 85172 יְשִׁימֹֽן HNcmsa noun:common proper noun::place None ? : 409 | Numbers 24:3 85261 בְּנֹ֣ו HNcmsc noun:common noun:: HSp3ms suffix:pronominal :W 410 | Numbers 24:10 85353 אַ֤ף HTa particle:affirmation noun:: None ? : 411 | Numbers 24:15 85463 בְּנֹ֣ו HNcmsc noun:common noun:: HSp3ms suffix:pronominal :W 412 | Numbers 24:24 85594 כִּתִּ֔ים HNp noun:proper name adjective:gentilic: None ? : 413 | Numbers 25:6 85715 מִּדְיָנִ֔ית HAafsa adjective:adjective adjective:gentilic: None ? : 414 | Numbers 25:12 85827 לָכֵ֖ן HR preposition adverb:conjunctive adverb: HD adverb : 415 | Numbers 25:14 85865 מִּדְיָנִ֔ית HAafsa adjective:adjective adjective:gentilic: None ? : 416 | Numbers 25:15 85882 מִּדְיָנִ֖ית HAafsa adjective:adjective adjective:gentilic: None ? : 417 | Numbers 26:54 86682 מְעַ֕ט HAamsa adjective:adjective noun:potential adverb: None ? : 418 | Numbers 26:56 86712 מְעָֽט HAamsa adjective:adjective noun:potential adverb: None ? : 419 | Numbers 27:7 87019 כֵּ֗ן HTm particle:demonstrative adjective:: None ? : 420 | Numbers 28:14 87586 שְׁלִישִׁ֧ת HAofsc adjective:ordinal number noun:: None ? : 421 | Numbers 29:20 88226 עַשְׁתֵּי HAobpc adjective:ordinal number noun:cardinal: None ? : 422 | Numbers 31:5 88938 אַלְפֵ֣י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 423 | Numbers 31:48 89753 אַלְפֵ֣י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 424 | Numbers 33:8 90793 הַֽחִירֹ֔ת HTd particle:definite article proper noun::place HNp noun:proper name : 425 | Numbers 33:54 91338 מְעַט֙ HAamsa adjective:adjective noun:potential adverb: None ? : 426 | Numbers 34:4 91462 מַעֲלֵ֤ה עַקְרַבִּים֙ HNcmsc noun:common proper noun::place HNp noun:proper name : 427 | Numbers 34:5 91485 נַ֣חְלָה HNcmsc noun:common noun:: HSh suffix:paragogic he :H 428 | Numbers 35:8 92000 מְעַ֖ט HAamsa adjective:adjective noun:potential adverb: None ? : 429 | Numbers 36:5 92642 כֵּ֛ן HTm particle:demonstrative adjective:: None ? : 430 | Deuteronomy 1:28 93375 אָנָ֣ה HD adverb interrogative particle:: None ? : 431 | Deuteronomy 2:10 93935 אֵמִ֥ים HNp noun:proper name adjective:gentilic: None ? : 432 | Deuteronomy 2:11 93961 אֵמִֽים HNp noun:proper name adjective:gentilic: None ? : 433 | Deuteronomy 2:23 94173 עַוִּ֛ים HNp noun:proper name adjective:gentilic: None ? : 434 | Deuteronomy 2:32 94380 יָֽהְצָה HNp noun:proper name proper noun::place HSd suffix:directional he : 435 | Deuteronomy 15:4 102036 אֶ֕פֶס HNcmsa noun:common noun:copulative noun: None ? : 436 | Deuteronomy 20:19 104749 הָֽ HTi particle:interrogative article:: None ? : 437 | Deuteronomy 26:14 107496 אֹנִ֜י HNcmsa noun:common noun:: None ? p: 438 | Deuteronomy 32:30 111836 רְבָבָ֑ה HNcfsa noun:common noun:noun of multitude: None ? : 439 | Deuteronomy 32:36 111913 אֶ֖פֶס HNcmsa noun:common noun:copulative noun: None ? : 440 | Deuteronomy 33:2 112261 רִבְבֹ֣ת HNcfpc noun:common noun:noun of multitude: None ? : 441 | Deuteronomy 33:17 112492 אַפְסֵי HNcmpc noun:common noun:copulative noun: None ? : 442 | Deuteronomy 33:17 112496 רִבְבֹ֣ות HNcfpc noun:common noun:noun of multitude: None ? : 443 | Deuteronomy 33:17 112500 אַלְפֵ֥י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 444 | Joshua 2:4 113452 כֵּ֗ן HTm particle:demonstrative adjective:: None ? : 445 | Joshua 2:5 113478 אָ֥נָה HD adverb interrogative particle:: None ? : 446 | Joshua 8:16 117206 עיר HNcfsa noun:common proper noun::place None ? : 447 | Joshua 11:17 119844 חָלָק֙ HNp noun:proper name adjective:: None ? : 448 | Joshua 11:21 119941 עֲנָקִים֙ HNgmpa noun:gentilic noun:: None ? : 449 | Joshua 12:7 120198 חָלָ֖ק HNp noun:proper name adjective:: None ? : 450 | Joshua 12:23 120349 גֹּויִ֥ם HNcmpa noun:common proper noun::place None ? : 451 | Joshua 13:3 120432 עַוִּֽים HNp noun:proper name adjective:gentilic: None ? : 452 | Joshua 13:18 120715 יַ֥הְצָה HNp noun:proper name proper noun::place HSd suffix:directional he : 453 | Joshua 14:15 121375 קִרְיַ֣ת אַרְבַּ֔ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 454 | Joshua 14:15 121382 עֲנָקִ֖ים HNgmpa noun:gentilic noun:: None ? : 455 | Joshua 15:3 121431 מַעֲלֵ֤ה עַקְרַבִּים֙ HNcmsc noun:common proper noun::place HNp noun:proper name : 456 | Joshua 15:7 121528 מַעֲלֵ֣ה אֲדֻמִּ֔ים HNcmsc noun:common proper noun::place HNp noun:proper name : 457 | Joshua 15:8 121552 בֶן־הִנֹּ֗ם HNcmsc noun:common proper noun::place HNp noun:proper name : 458 | Joshua 15:13 121692 קִרְיַ֥ת אַרְבַּ֛ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 459 | Joshua 15:28 121880 שֶׁ֖בַע HAcfsa adjective:cardinal number proper noun::place None ? : 460 | Joshua 15:54 122085 קִרְיַ֥ת אַרְבַּ֛ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 461 | Joshua 16:6 122280 יָנֹֽוחָה HNp noun:proper name proper noun::place HSd suffix:directional he : 462 | Joshua 16:7 122284 יָּנֹ֖וחָה HNp noun:proper name proper noun::place HSd suffix:directional he : 463 | Joshua 18:3 122889 אָ֨נָה֙ HD adverb interrogative particle:: None ? : 464 | Joshua 18:16 123233 בֶן־הִנֹּ֔ם HNcmsc noun:common proper noun::place HNp noun:proper name : 465 | Joshua 18:23 123351 עַוִּ֥ים HNp noun:proper name adjective:gentilic: None ? : 466 | Joshua 19:2 123442 שֶׁ֥בַע HAcfsa adjective:cardinal number proper noun::place None ? : 467 | Joshua 19:2 123444 שֶׁ֖בַע HAcfsa adjective:cardinal number proper noun::place None ? : 468 | Joshua 19:13 123591 עִתָּ֣ה HNp noun:proper name noun:: None ? :H 469 | Joshua 19:22 123689 שׁחצומה HNp noun:proper name proper noun::place HSd suffix:directional he : 470 | Joshua 20:5 124236 בְלִי HTn particle:negative noun:potential preposition: None ? : 471 | Joshua 20:7 124314 קִרְיַ֥ת אַרְבַּ֛ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 472 | Joshua 21:11 124642 קִרְיַת֩ אַרְבַּ֨ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 473 | Joshua 21:36 125065 יַ֖הְצָה HNp noun:proper name proper noun::place HSd suffix:directional he : 474 | Joshua 22:14 125620 אַלְפֵ֥י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 475 | Joshua 22:17 125678 מְעַט HAamsa adjective:adjective noun:potential adverb: None ? : 476 | Joshua 22:21 125802 אַלְפֵ֥י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 477 | Joshua 22:29 126002 חָלִילָה֩ HTj particle:interjection interjection:: HSd suffix:directional he : 478 | Joshua 22:30 126048 אַלְפֵ֤י HAcbpc adjective:cardinal number noun:noun of multitude: None ? : 479 | Judges 1:10 127655 קִרְיַ֣ת אַרְבַּ֑ע HNp noun:proper name proper noun::place HAcfsa adjective:cardinal number : 480 | Judges 3:15 129021 בֶּן HNgmsc noun:gentilic noun:: None ? : 481 | Judges 4:9 129565 אֶ֚פֶס HNcmsa noun:common noun:copulative noun: None ? : 482 | Judges 6:11 130644 אֲבִ֣י HNgmsa noun:gentilic noun:: None ? :J 483 | Judges 6:15 130744 אַלְפִּי֙ HNcmsc noun:common noun:noun of multitude: HSp1cs suffix:pronominal p: 484 | Judges 6:24 130965 אֲבִ֥י HNgmsa noun:gentilic noun:: None ? :J 485 | Judges 8:7 132275 לָכֵ֗ן HR preposition adverb:conjunctive adverb: HD adverb : 486 | Judges 10:13 134370 לָכֵ֥ן HR preposition adverb:conjunctive adverb: HD adverb : 487 | Judges 11:7 134603 מַדּ֜וּעַ HD adverb interrogative particle:: None ? : 488 | Judges 11:8 134617 לָכֵן֙ HR preposition adverb:conjunctive adverb: HD adverb : 489 | Judges 11:20 134916 יָ֑הְצָה HNp noun:proper name proper noun::place HSd suffix:directional he : 490 | Judges 12:5 135520 הַֽ HTd particle:definite article interrogative particle:interrogative particle: None ? : 491 | Judges 12:6 135540 כֵּ֔ן HTm particle:demonstrative adjective:: None ? : 492 | Judges 13:2 135722 דָּנִ֖י HNp noun:proper name adjective:gentilic: None ? : 493 | Judges 13:8 135894 הַ HRd preposition:definite article article:: None ? : 494 | Judges 13:14 136024 צִוִּיתִ֖יהָ HVpp1cs verb verb:: HPp3fs pronoun:personal p: 495 | Judges 13:17 136078 דבריך HNcmpc noun:common noun:: HPp2ms pronoun:personal p: 496 | Judges 13:23 136199 הֶרְאָ֖נוּ HVhp3ms verb verb:: HPp1cp pronoun:personal p: 497 | Judges 14:14 136543 הָֽ HRd preposition:definite article article:: None ? : 498 | Judges 14:15 136592 הַ HTd particle:definite article interrogative particle:interrogative particle: None ? : 499 | Judges 14:15 136594 יָרְשֵׁ֕נוּ HVqc verb verb:: HPp1cp pronoun:personal p: 500 | Judges 15:6 136867 תִּמְנִ֔י HNp noun:proper name adjective:gentilic: None ? : 501 | Judges 16:25 137798 כי HC conjunction preposition:: None ? : 502 | Judges 19:17 139512 אָ֥נָה HD adverb interrogative particle:: None ? : 503 | Judges 19:23 139678 אַל HTn particle:negative preposition:: None ? : 504 | Judges 20:1 139908 שֶׁ֔בַע HAcfsa adjective:cardinal number proper noun::place None ? : 505 | Judges 20:10 140090 רְבָבָ֔ה HNcfsa noun:common noun:noun of multitude: None ? : 506 | 1_Samuel 1:1 141547 צֹופִ֖ים HNp noun:proper name verb:: None ? : 507 | 1_Samuel 2:3 142163 לא HTn particle:negative preposition:: None ? p: 508 | 1_Samuel 2:10 142254 אַפְסֵי HNcmpc noun:common noun:copulative noun: None ? : 509 | 1_Samuel 2:16 142413 לו HR preposition negative particle:: HSp3ms suffix:pronominal : 510 | 1_Samuel 2:30 142709 לָכֵ֗ן HR preposition adverb:conjunctive adverb: HD adverb : 511 | 1_Samuel 3:19 143241 אָֽרְצָה HNcbsa noun:common noun:: HSh suffix:paragogic he :H 512 | 1_Samuel 4:21 143798 אִֽי־כָבֹוד֙ HTj particle:interjection proper noun::person HNp noun:proper name : 513 | 1_Samuel 5:1 143835 מֵ HC conjunction preposition:: None ? : 514 | 1_Samuel 6:14 144464 בֵּֽית HNgmsa noun:gentilic noun:: None ? : 515 | 1_Samuel 6:18 144605 בֵּֽית HNgmsa noun:gentilic noun:: None ? : 516 | 1_Samuel 7:9 144889 יעלה HVhw3ms verb verb:: None ? p: 517 | 1_Samuel 9:26 146165 גג HNcmsa noun:common noun:: None ? :H 518 | 1_Samuel 10:19 146675 אַלְפֵיכֶֽם HAcbpc adjective:cardinal number noun:noun of multitude: HSp2mp suffix:pronominal p: 519 | 1_Samuel 14:6 148475 מְעָֽט HAamsa adjective:adjective noun:potential adverb: None ? : 520 | 1_Samuel 16:1 150296 בֵּֽית HNgmsa noun:gentilic noun:: None ? : 521 | 1_Samuel 18:1 152178 יאהבו HVqw3ms verb verb:: None ? p: 522 | 1_Samuel 18:7 152312 רִבְבֹתָֽיו HNcfpc noun:common noun:noun of multitude: HSp3ms suffix:pronominal p: 523 | 1_Samuel 18:8 152331 רְבָבֹ֔ות HNcfpa noun:common noun:noun of multitude: None ? : 524 | 1_Samuel 20:2 153448 לו HR preposition negative particle:: HSp3ms suffix:pronominal : 525 | 1_Samuel 20:19 153835 אָֽזֶל HNp noun:proper name proper noun:: None ? : 526 | 1_Samuel 21:3 154426 פְּלֹנִ֖י HPf pronoun:indefinite noun:: None ? : 527 | 1_Samuel 21:9 154567 אִ֛ין HTn particle:negative conjunction:: None ? : 528 | 1_Samuel 23:17 155706 כֵּֽן HTm particle:demonstrative adjective:: None ? : 529 | 1_Samuel 23:27 155935 מַהֲרָ֣ה HVpv2ms verb verb:: HSd suffix:directional he : 530 | 1_Samuel 26:22 158119 החנית HTd particle:definite article noun:: HNcfsa noun:common : 531 | 1_Samuel 27:10 158430 אַל HTn particle:negative interrogative particle:: None ? : 532 | 2_Samuel 1:21 160873 בְּלִ֖י HTn particle:negative noun:potential preposition: None ? : 533 | 2_Samuel 2:1 160989 אָ֥נָה HD adverb interrogative particle:: None ? : 534 | 2_Samuel 4:6 162726 הֵנָּה HPp3fp pronoun:personal adverb:: None ? : 535 | 2_Samuel 9:3 165010 אֶ֨פֶס HNcmsa noun:common noun:copulative noun: None ? : 536 | 2_Samuel 10:9 165489 בישׂראל HR preposition proper noun::person HNp noun:proper name : 537 | 2_Samuel 11:3 165789 בַּת־שֶׁ֣בַע HNp noun:proper name proper noun::person HAcfsa adjective:cardinal number : 538 | 2_Samuel 12:14 166694 אֶ֗פֶס HNcmsa noun:common noun:copulative noun: None ? : 539 | 2_Samuel 12:24 166948 בַּת־שֶׁ֣בַע HNp noun:proper name proper noun::person HAcfsa adjective:cardinal number : 540 | 2_Samuel 14:19 168490 אִ֣שׁ HTa particle:affirmation noun:copulative noun: None ? : 541 | 2_Samuel 14:20 168522 עֲב֤וּר HR preposition noun:: None ? : 542 | 2_Samuel 15:18 169279 הַ HRd preposition:definite article article:: None ? : 543 | 2_Samuel 15:27 169519 הֲ HTd particle:definite article interrogative particle:interrogative particle: None ? : 544 | 2_Samuel 16:2 169797 ול HC conjunction conjunction:: HR preposition : 545 | 2_Samuel 16:10 170001 כי HC conjunction adverb:: None ? : 546 | 2_Samuel 16:10 170003 וכי HC conjunction conjunction:: HC conjunction : 547 | 2_Samuel 16:18 170180 לא HTn particle:negative preposition:: None ? p: 548 | 2_Samuel 17:11 170536 שֶׁ֔בַע HAcfsa adjective:cardinal number proper noun::place None ? : 549 | 2_Samuel 17:14 170641 עֲב֗וּר HC conjunction noun:: None ? : 550 | 2_Samuel 18:2 171091 שְּׁלִשִׁ֔ת HAofsa adjective:ordinal number noun:: None ? : 551 | 2_Samuel 19:4 172015 הַ HR preposition article:: None ? : 552 | 2_Samuel 19:7 172098 לא HTn particle:negative conjunction:: None ? : 553 | 2_Samuel 19:32 172761 ב HR preposition article:: None ? : 554 | 2_Samuel 19:41 172967 ויעברו HC conjunction verb:: HVhw3mp verb : 555 | 2_Samuel 20:1 173094 שֶׁ֥בַע HAcfsa adjective:cardinal number proper noun::person None ? : 556 | 2_Samuel 20:2 173131 שֶׁ֣בַע HAcfsa adjective:cardinal number proper noun::person None ? : 557 | 2_Samuel 20:6 173223 שֶׁ֥בַע HAcfsa adjective:cardinal number proper noun::person None ? : 558 | 2_Samuel 20:7 173266 שֶׁ֥בַע HAcfsa adjective:cardinal number proper noun::person None ? : 559 | 2_Samuel 20:10 173356 שֶׁ֥בַע HAcfsa adjective:cardinal number proper noun::person None ? : 560 | 2_Samuel 20:13 173435 שֶׁ֥בַע HAcfsa adjective:cardinal number proper noun::person None ? : 561 | 2_Samuel 20:21 173590 שֶׁ֧בַע HAcfsa adjective:cardinal number proper noun::person None ? : 562 | 2_Samuel 20:22 173638 שֶׁ֤בַע HAcfsa adjective:cardinal number proper noun::person None ? : 563 | 2_Samuel 21:9 173947 שׁבעתים HAcfda adjective:cardinal number noun:cardinal: None ? p: 564 | 2_Samuel 21:12 174040 שׁם HD adverb adverb:: None ? :H 565 | 2_Samuel 21:12 174041 הפלשׁתים HTd particle:definite article adjective:gentilic: HNgmpa noun:gentilic : 566 | 2_Samuel 21:16 174131 רָפָ֗ה HNgmsa noun:gentilic proper noun::person None ? : 567 | 2_Samuel 21:18 174206 רָפָֽה HNgmsa noun:gentilic proper noun::person None ? : 568 | 2_Samuel 21:19 174221 אֹרְגִ֜ים HNp noun:proper name verb:: None ? : 569 | 2_Samuel 21:20 174264 רָפָֽה HNgmsa noun:gentilic proper noun::person None ? : 570 | 2_Samuel 21:22 174282 רָפָ֖ה HNgmsa noun:gentilic proper noun::person None ? : 571 | 2_Samuel 23:8 174938 שָּׁלִשִׁ֗י HAcbpa adjective:cardinal number adjective:ordinal: None ? : 572 | 2_Samuel 23:18 175174 שׁלשׁי HAomsa adjective:ordinal number noun:cardinal: None ? : 573 | 2_Samuel 23:21 175246 אשׁר HTr particle:relative noun:distributive noun: None ? : 574 | 2_Samuel 24:2 175467 שֶׁ֔בַע HAcfsa adjective:cardinal number proper noun::place None ? : 575 | 2_Samuel 24:3 175492 כָּהֵ֤ם HR preposition preposition:: HPp3mp pronoun:personal p: 576 | 2_Samuel 24:3 175494 כָהֵם֙ HR preposition preposition:: HPp3mp pronoun:personal p: 577 | 2_Samuel 24:6 175577 יַּ֔עַן HNp noun:proper name noun:potential preposition: None ? : 578 | 2_Samuel 24:15 175803 שֶׁ֔בַע HAcfsa adjective:cardinal number proper noun::place None ? : 579 | 1_Kings 1:11 176306 בַּת־שֶׁ֤בַע HNp noun:proper name proper noun::person HAcfsa adjective:cardinal number : 580 | 1_Kings 6:1 180086 זִ֗ו HNp noun:proper name proper noun::measurement unit None ? : 581 | 1_Kings 6:31 180714 חֲמִשִֽׁית HAofsa adjective:ordinal number noun:: None ? : 582 | 1_Kings 6:37 180817 זִֽו HNp noun:proper name proper noun::measurement unit None ? : 583 | 1_Kings 6:38 180827 בּ֗וּל HNp noun:proper name proper noun::measurement unit None ? : 584 | 1_Kings 10:28 184980 מִקְוֵ֕ה HR preposition noun:: HNp noun:proper name : 585 | 1_Kings 10:28 184985 מִקְוֵ֖ה HR preposition noun:: HNp noun:proper name : 586 | 1_Kings 12:33 186762 לבד HR preposition noun:: HNcmsa noun:common p: 587 | 1_Kings 19:3 191457 שֶׁ֖בַע HAcfsa adjective:cardinal number proper noun::place None ? : 588 | 1_Kings 21:8 193187 הספרים HTd particle:definite article noun:: HNcmpa noun:common : 589 | 1_Kings 22:49 194648 עשׂר HAcmsa adjective:cardinal number verb:: None ? : 590 | 2_Kings 5:13 197770 אָבִי֙ HTe particle:exhortation noun:: None ? p: 591 | 2_Kings 5:18 197926 יִסְלַח־נא HVqj3ms verb verb:: HTe particle:exhortation : 592 | 2_Kings 6:8 198300 פְּלֹנִ֥י HPf pronoun:indefinite noun:: None ? : 593 | 2_Kings 6:25 198699 חרייונים HNcmsc noun:common noun:: HNcfpa noun:common : 594 | 2_Kings 7:13 199325 ההמון HTd particle:definite article noun:: HNcmsa noun:common : 595 | 2_Kings 8:10 199810 לא HTn particle:negative preposition:: None ? p: 596 | 2_Kings 11:1 202008 וראתה HC conjunction verb:: HVqp3fs verb : 597 | 2_Kings 11:4 202091 כָּרִי֙ HNgmsa noun:gentilic proper noun::people None ? : 598 | 2_Kings 12:9 202743 בִלְתִּ֥י HTn particle:negative noun:potential preposition: None ? :J 599 | 2_Kings 16:17 205493 ואת HC conjunction preposition:: HTo particle:direct object marker : 600 | 2_Kings 18:23 207062 אַשּׁ֑וּר HNgmsa noun:gentilic proper noun::place None ? : 601 | 2_Kings 18:26 207135 אֲרָמִ֔ית HNgfsa noun:gentilic adjective:: None ? : 602 | 2_Kings 20:4 208263 העיר HTd particle:definite article noun:: HNcfsa noun:common : 603 | 2_Kings 22:5 209332 בבית HR preposition noun:: HNcmsc noun:common : 604 | 2_Kings 25:2 211367 עַשְׁתֵּ֣י HAobpc adjective:ordinal number noun:cardinal: None ? : 605 | 2_Kings 25:27 212011 אֱוִ֣יל מְרֹדַךְ֩ HAamsa adjective:adjective proper noun::person HNp noun:proper name : 606 | Isaiah 1:5 212149 וְ HR preposition conjunction:: None ? : 607 | Isaiah 3:15 213130 מ HR preposition interrogative pronoun:: None ? : 608 | Isaiah 3:24 213264 כִּי HC conjunction noun:: None ? : 609 | Isaiah 3:26 213278 אָנ֥וּ HD adverb verb:: None ? : 610 | Isaiah 5:14 213670 לִ HC conjunction preposition:: None ? : 611 | Isaiah 5:14 213671 בְלִי HTn particle:negative noun:potential preposition: None ? : 612 | Isaiah 5:29 213937 ושׁאג HC conjunction verb:: HVqq3ms verb : 613 | Isaiah 8:8 214885 עִמָּ֥נוּ HNp noun:proper name preposition:: None ? p: 614 | Isaiah 9:2 215180 לא HTn particle:negative preposition:: None ? p: 615 | Isaiah 10:13 215746 כַּאבִּ֖יר HR preposition adjective:: HAamsa adjective:adjective : 616 | Isaiah 10:29 216023 לָ֑נוּ HR preposition verb:: HSp1cp suffix:pronominal : 617 | Isaiah 11:15 216378 בַּעְיָ֣ם HR preposition noun:: HNcmsc noun:common : 618 | Isaiah 14:6 216937 בְּלִ֥י HTn particle:negative noun:potential preposition: None ? : 619 | Isaiah 19:8 218263 אָנוּ֙ HD adverb verb:: None ? : 620 | Isaiah 22:5 219058 שֹׁ֥ועַ HNcmsa noun:common proper noun::people None ? : 621 | Isaiah 23:2 219433 אִ֑י HTj particle:interjection noun:: None ? : 622 | Isaiah 23:6 219486 אִֽי HTj particle:interjection noun:: None ? : 623 | Isaiah 25:10 220252 במי HR preposition preposition:: HNcmpc noun:common : 624 | Isaiah 28:8 220953 בְּלִ֖י HTn particle:negative noun:potential preposition: None ? : 625 | Isaiah 29:11 221546 הספר HTd particle:definite article noun:: HNcmsa noun:common : 626 | Isaiah 32:10 222803 בְּלִ֥י HTn particle:negative noun:potential preposition: None ? : 627 | Isaiah 34:16 223547 קִבְּצָֽן HVpp3ms verb verb:: HSn suffix:paragogic nun p: 628 | Isaiah 36:11 223994 אֲרָמִ֔ית HNgfsa noun:gentilic adjective:: None ? : 629 | Isaiah 43:14 227171 בָֽרִיחִים֙ HRd preposition:definite article adjective:: HNcmpa noun:common : 630 | Isaiah 44:24 227813 מי HNcmpc noun:common preposition:: None ? : 631 | Isaiah 47:8 228642 אַפְסִ֣י HNcmsc noun:common noun:copulative noun: HSp1cs suffix:pronominal :J 632 | Isaiah 47:10 228692 אַפְסִ֥י HNcmsc noun:common noun:copulative noun: HSp1cs suffix:pronominal :J 633 | Isaiah 49:5 229224 לא HTn particle:negative preposition:: None ? p: 634 | Isaiah 51:10 230046 הַ HTi particle:interrogative article:: None ? : 635 | Isaiah 56:9 231491 חַיְתֹ֣ו HNcfsc noun:common noun:: None ? :W 636 | Isaiah 56:9 231497 חַיְתֹ֖ו HNcfsc noun:common noun:: None ? :W 637 | Isaiah 59:18 232540 עַ֤ל HR preposition noun:: None ? : 638 | Isaiah 59:18 232543 עַ֣ל HR preposition noun:: None ? : 639 | Isaiah 62:4 233305 בָ֔הּ HNp noun:proper name preposition:: None ? p: 640 | Isaiah 63:9 233608 לא HTn particle:negative preposition:: None ? p: 641 | Jeremiah 1:3 235046 עַשְׁתֵּ֣י HAobpc adjective:ordinal number noun:cardinal: None ? : 642 | Jeremiah 4:5 236639 ותקעו HC conjunction verb:: HVqv2mp verb : 643 | Jeremiah 5:13 237333 דִּבֵּ֖ר HNcmsa noun:common verb:quotation verb: None ? : 644 | Jeremiah 5:24 237563 וירה HC conjunction noun:: HNcmsa noun:common : 645 | Jeremiah 8:1 238957 ויציאו HC conjunction verb:: HVhi3mp verb : 646 | Jeremiah 9:24 239866 מ֖וּל HR preposition verb:: None ? : 647 | Jeremiah 10:11 240081 דִּֽי ATr particle:relative preposition:: None ? : 648 | Jeremiah 11:14 240654 אֵינֶ֣נִּי HTi particle:interrogative noun:copulative noun: HSp1cs suffix:pronominal p:N 649 | Jeremiah 16:19 243077 אַפְסֵי HD adverb noun:copulative noun: None ? : 650 | Jeremiah 18:3 243711 הו HSp3ms suffix:pronominal personal pronoun::demonstrative personal pronoun None ? : 651 | Jeremiah 23:18 246312 דברי HC conjunction noun:: HVqw3ms verb p: 652 | Jeremiah 36:32 255103 הֵֽמָּה HSp3mp suffix:pronominal personal pronoun::demonstrative personal pronoun None ? : 653 | Jeremiah 38:11 255908 הסחבות HTd particle:definite article noun:: HNcfpa noun:common : 654 | Jeremiah 38:16 256032 את אֲשֶׁר֩ HTo particle:direct object marker conjunction:: HTr particle:relative : 655 | Jeremiah 39:12 256632 כִּ֗י אם HC conjunction conjunction:: HC conjunction : 656 | Jeremiah 41:17 257763 כמוהם HR preposition proper noun::person HSp3mp suffix:pronominal : 657 | Jeremiah 47:4 260331 אִ֥י HTj particle:interjection noun:: None ? : 658 | Jeremiah 49:37 261838 וְ HR preposition conjunction:: None ? : 659 | Jeremiah 51:1 262760 קָמָ֑י HNp noun:proper name verb:: None ? p: 660 | Jeremiah 51:3 262783 יִדְרֹ֤ךְ ידרך HVqi3ms verb verb:: HVqi3ms verb : 661 | Jeremiah 52:5 264015 עַשְׁתֵּ֣י HAobpc adjective:ordinal number noun:cardinal: None ? : 662 | Jeremiah 52:31 264670 אֱוִ֣יל מְרֹדַךְ֩ HAamsa adjective:adjective proper noun::person HNp noun:proper name : 663 | Ezekiel 3:15 265794 אשׁר HTr particle:relative verb:: None ? : 664 | Ezekiel 5:2 266454 שְׁלִשִׁ֗ית HAofsa adjective:ordinal number noun:: None ? : 665 | Ezekiel 5:12 266684 שְׁלִשִׁתֵ֞יךְ HAofsc adjective:ordinal number noun:: HSp2fs suffix:pronominal p: 666 | Ezekiel 8:2 267682 חַשְׁמַֽלָה HNcmsa noun:common noun:: HSh suffix:paragogic he :H 667 | Ezekiel 8:6 267779 מ HR preposition interrogative pronoun:: None ? : 668 | Ezekiel 8:6 267780 הם HSp3mp suffix:pronominal personal pronoun::demonstrative personal pronoun None ? : 669 | Ezekiel 9:5 268212 על HR preposition negative particle:: None ? : 670 | Ezekiel 14:4 270435 בה HR preposition verb:: HSp3fs suffix:pronominal : 671 | Ezekiel 21:19 274855 שְׁלִישִׁ֨תָה֙ HAofsa adjective:ordinal number noun:: HSh suffix:paragogic he p: 672 | Ezekiel 26:1 277403 עַשְׁתֵּֽי HAobpc adjective:ordinal number noun:cardinal: None ? : 673 | Ezekiel 27:10 277956 פָּרַ֨ס HNp noun:proper name proper noun::gentilic None ? : 674 | Ezekiel 31:14 280049 אֵלֵיהֶ֛ם HNcmpc noun:common preposition:: HSp3mp suffix:pronominal p: 675 | Ezekiel 38:5 283893 פָּרַ֛ס HNp noun:proper name proper noun::gentilic None ? : 676 | Ezekiel 41:8 286298 אַצִּֽילָה HNcfsa noun:common noun:: None ? :H 677 | Ezekiel 42:16 287061 אמות HNcfpc noun:common noun:cardinal: None ? : 678 | Ezekiel 46:15 289435 ועשׂו HC conjunction verb:: HVqq3cp verb : 679 | Ezekiel 47:13 289970 גֵּ֤ה HPdxms pronoun:demonstrative adjective:: None ? : 680 | Hosea 1:4 290995 מְעַ֗ט HAamsa adjective:adjective noun:potential adverb: None ? : 681 | Hosea 1:6 291035 לֹ֣א רֻחָ֑מָה HTn particle:negative proper noun::person HNp noun:proper name : 682 | Hosea 1:8 291077 לֹ֣א רֻחָ֑מָה HTn particle:negative proper noun::person HNp noun:proper name : 683 | Hosea 1:9 291087 לֹ֣א עַמִּ֑י HTn particle:negative proper noun::person HNp noun:proper name : 684 | Hosea 2:3 291156 רֻחָֽמָה HVPp3fs verb proper noun::person None ? : 685 | Hosea 2:25 291576 לֹ֣א רֻחָ֑מָה HTn particle:negative proper noun::person HNp noun:proper name : 686 | Hosea 8:10 292729 מְּעָ֔ט HAamsa adjective:adjective noun:potential adverb: None ? : 687 | Joel 3:2 294935 הֵ֔מָּה HPdxmp pronoun:demonstrative personal pronoun::demonstrative personal pronoun None ? : 688 | Joel 4:1 295010 הֵ֖מָּה HPdxmp pronoun:demonstrative personal pronoun::demonstrative personal pronoun None ? : 689 | Joel 4:8 295158 שְׁבָאיִ֖ם HNgmpa noun:gentilic proper noun::people None ? : 690 | Joel 4:14 295248 חָר֑וּץ HNp noun:proper name verb:: None ? : 691 | Joel 4:14 295256 חָרֽוּץ HNp noun:proper name verb:: None ? : 692 | Amos 5:14 296739 כֵ֞ן HD adverb adjective:: None ? : 693 | Amos 5:25 296903 הַ HTi particle:interrogative article:: None ? : 694 | Amos 6:2 296971 רַבָּ֑ה HNp noun:proper name adjective:: None ? : 695 | Jonah 2:4 298983 וְ HR preposition conjunction:: None ? : 696 | Jonah 3:5 299160 וְ HR preposition conjunction:: None ? : 697 | Jonah 4:11 299540 וּ HR preposition conjunction:: None ? : 698 | Micah 6:10 301011 אִשׁ֙ HTa particle:affirmation noun:copulative noun: None ? : 699 | Habakkuk 2:19 302777 דּוּמָ֑ם HNcmsa noun:common adverb:: None ? : 700 | Habakkuk 2:20 302797 הַ֥ס HTj particle:interjection verb:: None ? : 701 | Zephaniah 1:7 303210 הַ֕ס HTj particle:interjection verb:: None ? : 702 | Zephaniah 2:14 303702 חַיְתֹו HNcfsc noun:common noun:: HSp3ms suffix:pronominal :W 703 | Zephaniah 2:15 303738 אַפְסִ֣י HNcmsc noun:common noun:copulative noun: HSp1cs suffix:pronominal :J 704 | Zephaniah 3:8 303876 קָבְצִ֣י HVqc verb verb:: HSp1cs suffix:pronominal :J 705 | Haggai 1:6 304220 מְעָ֗ט HAamsa adjective:adjective noun:potential adverb: None ? : 706 | Haggai 2:6 304609 הֶ HR preposition article:: None ? : 707 | Haggai 2:19 304903 הַ HRd preposition:definite article article:: None ? : 708 | Zechariah 1:7 305127 עַשְׁתֵּֽי HAobpc adjective:ordinal number noun:cardinal: None ? : 709 | Zechariah 1:7 305132 שְׁבָ֔ט HNp noun:proper name proper noun::measurement unit None ? : 710 | Zechariah 2:17 305651 הַ֥ס HTj particle:interjection verb:: None ? : 711 | Zechariah 5:9 306339 הֵ֥נָּה HSp3fp suffix:pronominal personal pronoun::demonstrative personal pronoun None ? : 712 | Zechariah 7:1 306722 כִסְלֵֽו HNp noun:proper name proper noun::measurement unit None ? : 713 | Zechariah 9:12 307691 הַ HRd preposition:definite article article:: None ? : 714 | Malachi 2:12 310011 יַעֲשֶׂ֨נָּה֙ HVqi3ms verb verb:: HSn suffix:paragogic nun p:N 715 | Psalms 10:10 311879 ודכה HC conjunction verb:: HVqq3ms verb : 716 | Psalms 18:32 312991 זוּלָתִ֥י HR preposition noun:potential preposition: HSp1cs suffix:pronominal :J 717 | Psalms 50:10 318736 חַיְתֹו HNcfsc noun:common noun:: HSp3ms suffix:pronominal :W 718 | Psalms 68:19 321430 לַ HTd particle:definite article preposition:: None ? : 719 | Psalms 79:2 324276 חַיְתֹו HNcfsc noun:common noun:: HSp3ms suffix:pronominal :W 720 | Psalms 79:12 324389 שִׁ֭בְעָתַיִם HNcfda noun:common noun:cardinal: None ? : 721 | Psalms 83:18 324995 עֲדֵי HNcmpc noun:common preposition:: None ? : 722 | Psalms 88:1 325547 לְ HC conjunction preposition:: None ? : 723 | Psalms 90:12 326358 כֵּ֣ן HTm particle:demonstrative adjective:: None ? : 724 | Psalms 92:8 326635 עֲדֵי HNcmpc noun:common preposition:: None ? : 725 | Psalms 102:4 327766 כְּמֹו HR preposition preposition:: HPf pronoun:indefinite : 726 | Psalms 104:11 328333 חַיְתֹ֣ו HNcfsc noun:common noun:: HSp3ms suffix:pronominal :W 727 | Psalms 104:20 328430 חַיְתֹו HNcfsc noun:common noun:: HSp3ms suffix:pronominal :W 728 | Psalms 114:8 330720 מַעְיְנֹו HNcmsc noun:common noun:: HSp3ms suffix:pronominal :W 729 | Psalms 116:15 331012 מָּ֗וְתָה HNcmsa noun:common noun:: HSh suffix:paragogic he :H 730 | Psalms 124:4 332957 נַ֝֗חְלָה HNcmsa noun:common noun:: HSh suffix:paragogic he :H 731 | Psalms 140:10 334669 מְסִבָּ֑י HVhrmpc verb noun:potential adverb: HSp1cs suffix:pronominal p: 732 | Job 9:35 338583 כֵ֥ן HD adverb adjective:: None ? : 733 | Job 19:29 340913 שׁדין HTr particle:relative noun:: HNcmsa noun:common : 734 | Job 22:30 341761 אִֽי HTj particle:interjection negative particle:: None ? : 735 | Job 24:25 342192 אַ֗ל HTn particle:negative noun:: None ? : 736 | Job 30:24 343333 לָהֶ֥ן HC conjunction preposition:: None ? p: 737 | Job 34:36 344714 אָבִ֗י HTj particle:interjection noun:: None ? p: 738 | Proverbs 2:7 347304 וצפן HC conjunction verb:: HVqq3ms verb : 739 | Proverbs 11:19 349797 כֵּן HTm particle:demonstrative adjective:: None ? : 740 | Proverbs 13:20 350345 וחכם HC conjunction verb:: HVqv2ms verb : 741 | Proverbs 17:27 351608 וקר HC conjunction adjective:: HAamsc adjective:adjective : 742 | Proverbs 23:5 353047 ועיף HC conjunction verb:: HVqq3ms verb : 743 | Proverbs 23:29 353279 אֲבֹ֡וי HTj particle:interjection noun:: None ? : 744 | Proverbs 27:17 354461 יָ֑חַד HVhi3ms verb noun:potential adverb: None ? : 745 | Proverbs 27:17 354464 יַ֣חַד HVhi3ms verb noun:potential adverb: None ? : 746 | Proverbs 28:2 354604 כֵּ֣ן HTm particle:demonstrative adjective:: None ? : 747 | Proverbs 31:4 355542 או HC conjunction interrogative particle:: None ? : 748 | Ruth 1:13 356040 לָהֵ֣ן HC conjunction adverb:conjunctive adverb: None ? : 749 | Ruth 1:13 356042 עַ֚ד HD adverb preposition:: None ? : 750 | Ruth 1:13 356046 לָהֵן֙ HC conjunction adverb:conjunctive adverb: None ? : 751 | Ruth 1:20 356185 מָרָ֔א HNp noun:proper name adjective:: None ? : 752 | Ruth 3:12 356983 כִּ֥י אם HC conjunction conjunction:: HC conjunction : 753 | Ruth 4:1 357146 פְּלֹנִ֣י HPf pronoun:indefinite noun:: None ? : 754 | Song_of_songs 2:13 357961 לכי HVqv2fs verb preposition:: None ? p: 755 | Song_of_songs 6:5 358746 הֵ֖ם HSp3mp suffix:pronominal personal pronoun::demonstrative personal pronoun None ? : 756 | Song_of_songs 6:11 358845 הֲ HTd particle:definite article interrogative particle:interrogative particle: None ? : 757 | Song_of_songs 6:12 358857 עַמִּי HNcmsc noun:common noun:: HSp1cs suffix:pronominal :J 758 | Ecclesiastes 4:10 360736 אִ֣י HTj particle:interjection interrogative particle:: None ? : 759 | Ecclesiastes 5:15 361138 כָּל HR preposition noun:distributive noun: HR preposition : 760 | Ecclesiastes 8:10 362086 כֵּן HTm particle:demonstrative adjective:: None ? : 761 | Ecclesiastes 9:12 362649 כָּהֵ֗ם HR preposition preposition:: HPp3mp pronoun:personal p: 762 | Ecclesiastes 10:3 362783 שׁה HTr particle:relative conjunction:: HTd particle:definite article : 763 | Ecclesiastes 10:16 362944 אִֽי HTj particle:interjection interrogative particle:: None ? : 764 | Ecclesiastes 10:20 363025 הכנפים HTd particle:definite article noun:: HNcfda noun:common : 765 | Ecclesiastes 12:12 363465 הֵ֖מָּה HPdxmp pronoun:demonstrative personal pronoun::demonstrative personal pronoun None ? : 766 | Lamentations 4:3 364992 כי HC conjunction preposition:: None ? : 767 | Lamentations 4:12 365120 וכל HC conjunction noun:distributive noun: HNcmsc noun:common : 768 | Esther 1:3 365509 פָּרַ֣ס HNp noun:proper name proper noun::gentilic None ? : 769 | Esther 1:14 365778 פָּרַ֣ס HNp noun:proper name proper noun::gentilic None ? : 770 | Esther 1:18 365888 פָּֽרַס HNp noun:proper name proper noun::gentilic None ? : 771 | Esther 1:19 365923 פָֽרַס HNp noun:proper name proper noun::gentilic None ? : 772 | Esther 2:16 366483 טֵבֵ֑ת HNp noun:proper name proper noun::measurement unit None ? : 773 | Esther 3:7 366816 נִיסָ֔ן HNp noun:proper name proper noun::measurement unit None ? : 774 | Esther 3:7 366846 אֲדָֽר HNp noun:proper name proper noun::measurement unit None ? : 775 | Esther 3:13 367061 אֲדָ֑ר HNp noun:proper name proper noun::measurement unit None ? : 776 | Esther 5:13 367885 יְּהוּדִ֔י HAamsa adjective:adjective adjective:gentilic: None ? : 777 | Esther 8:9 368891 סִיוָ֗ן HNp noun:proper name proper noun::measurement unit None ? : 778 | Esther 9:13 369457 יְּהוּדִים֙ HAampa adjective:adjective adjective:gentilic: None ? : 779 | Esther 9:18 369580 יהודיים HNcmpa noun:common adjective:gentilic: None ? : 780 | Esther 10:2 370049 פָרָֽס HNp noun:proper name proper noun::gentilic None ? : 781 | Daniel 2:4 370609 אֲרָמִ֑ית HNgfsa noun:gentilic adjective:: None ? : 782 | Daniel 2:5 370629 אַזְדָּ֑א AAafsa adjective:adjective adverb:: None ? : 783 | Daniel 2:6 370643 הֵ֨ן ATm particle:demonstrative conjunction:: None ? : 784 | Daniel 2:6 370657 לָהֵ֕ן AC conjunction adverb:conjunctive adverb: None ? : 785 | Daniel 2:7 370663 תִנְיָנ֖וּת AAobpa adjective:ordinal number adverb:: None ? : 786 | Daniel 2:7 370672 פִשְׁרָ֥ה ANcmsc noun:common noun:: ASp3ms suffix:pronominal :> 787 | Daniel 2:8 370682 דִּ֥י ATr particle:relative preposition:: None ? : 788 | Daniel 2:8 370686 כָּ AC conjunction preposition:: None ? : 789 | Daniel 2:8 370687 ל AC conjunction preposition:: None ? : 790 | Daniel 2:8 370689 דִּ֣י AC conjunction preposition:: None ? : 791 | Daniel 2:8 370691 דִּ֥י ATr particle:relative preposition:: None ? : 792 | Daniel 2:8 370692 אַזְדָּ֖א AAafsa adjective:adjective adverb:: None ? : 793 | Daniel 2:9 370695 דִּ֣י ATr particle:relative preposition:: None ? : 794 | Daniel 2:9 370713 דִּ֥י ATr particle:relative preposition:: None ? : 795 | Daniel 2:9 370716 לָהֵ֗ן AC conjunction adverb:conjunctive adverb: None ? : 796 | Daniel 2:9 370722 דִּ֥י ATr particle:relative preposition:: None ? : 797 | Daniel 2:10 370732 אִיתַ֤י ATa particle:affirmation noun:copulative noun: None ? : 798 | Daniel 2:10 370736 דִּ֚י ATr particle:relative preposition:: None ? : 799 | Daniel 2:11 370765 דִֽי ATr particle:relative preposition:: None ? : 800 | Daniel 2:11 370772 אִיתַ֔י ATa particle:affirmation noun:copulative noun: None ? : 801 | Daniel 2:11 370773 דִּ֥י ATr particle:relative preposition:: None ? : 802 | Daniel 2:11 370779 דִּ֚י ATr particle:relative preposition:: None ? : 803 | Daniel 2:11 370784 אִיתֹֽוהִי ATa particle:affirmation noun:copulative noun: ASp3ms suffix:pronominal p: 804 | Daniel 2:12 370788 דְּנָ֔ה AC conjunction demonstrative pronoun:: None ? : 805 | Daniel 2:20 370943 הִֽיא ATa particle:affirmation personal pronoun:: None ? : 806 | Daniel 2:22 370970 מָ֣ה APfxbs pronoun:indefinite interrogative pronoun:: None ? : 807 | Daniel 2:24 371003 דְּנָ֗ה AC conjunction demonstrative pronoun:: None ? : 808 | Daniel 2:26 371070 איתיך ATa particle:affirmation noun:copulative noun: ASp2ms suffix:pronominal p: 809 | Daniel 2:26 371076 חֲזֵ֖ית ATr particle:relative verb:: None ? : 810 | Daniel 2:28 371099 בְּרַ֡ם AC conjunction adverb:: None ? : 811 | Daniel 2:28 371100 אִיתַ֞י ATa particle:affirmation noun:copulative noun: None ? : 812 | Daniel 2:28 371111 מָ֛ה APfxbs pronoun:indefinite interrogative pronoun:: None ? : 813 | Daniel 2:28 371124 הֽוּא ATa particle:affirmation personal pronoun::demonstrative personal pronoun None ? : 814 | Daniel 2:29 371131 מָ֛ה APfxbs pronoun:indefinite interrogative pronoun:: None ? : 815 | Daniel 2:29 371140 מָה APfxbs pronoun:indefinite interrogative pronoun:: None ? : 816 | Daniel 2:30 371149 אִיתַ֥י ATa particle:affirmation noun:copulative noun: None ? : 817 | Daniel 2:32 371191 ה֣וּא APd3ms pronoun:demonstrative personal pronoun::demonstrative personal pronoun None ? : 818 | Daniel 2:38 371325 ה֔וּא ATa particle:affirmation personal pronoun::demonstrative personal pronoun None ? : 819 | Daniel 2:44 371456 אִנּ֗וּן APdxmp pronoun:demonstrative personal pronoun::demonstrative personal pronoun None ? : 820 | Daniel 2:45 371511 מָ֛ה APfxbs pronoun:indefinite interrogative pronoun:: None ? : 821 | Daniel 2:47 371551 ה֣וּא ATa particle:affirmation personal pronoun::demonstrative personal pronoun None ? : 822 | Daniel 3:6 371726 מַן APf3bs pronoun:indefinite interrogative pronoun:: None ? : 823 | Daniel 3:6 371727 דִּי APf3bs pronoun:indefinite preposition:: None ? : 824 | Daniel 3:7 371743 דְּנָ֡ה AC conjunction demonstrative pronoun:: None ? : 825 | Daniel 3:8 371778 דְּנָה֙ AC conjunction demonstrative pronoun:: None ? : 826 | Daniel 3:11 371827 מַן APf3cs pronoun:indefinite interrogative pronoun:: None ? : 827 | Daniel 3:11 371828 דִּי APf3cs pronoun:indefinite preposition:: None ? : 828 | Daniel 3:12 371839 אִיתַ֞י ATa particle:affirmation noun:copulative noun: None ? : 829 | Daniel 3:14 371900 צְדָּ֕א ANcmsa noun:common adverb:: None ? : 830 | Daniel 3:14 371908 אִֽיתֵיכֹון֙ ATa particle:affirmation noun:copulative noun: ASp2mp suffix:pronominal p: 831 | Daniel 3:15 371959 מַן APi3cs pronoun:interrogative interrogative pronoun:: None ? : 832 | Daniel 3:15 371960 ה֣וּא ATa particle:affirmation personal pronoun::demonstrative personal pronoun None ? : 833 | Daniel 3:22 372095 דְּנָ֗ה AC conjunction demonstrative pronoun:: None ? : 834 | Daniel 3:25 372184 רביעיא AAomsd adjective:ordinal number adjective:ordinal: ATd particle:definite article : 835 | Daniel 3:33 372377 מָ֣ה APfxcs pronoun:indefinite interrogative pronoun:: None ? : 836 | Daniel 3:33 372382 מָ֣ה APfxcs pronoun:indefinite interrogative pronoun:: None ? : 837 | Daniel 4:12 372589 בְּרַ֨ם AC conjunction adverb:: None ? : 838 | Daniel 4:12 372604 דִּ֣י AT particle preposition:: None ? : 839 | Daniel 4:14 372653 מַן APfxcs pronoun:indefinite interrogative pronoun:: None ? : 840 | Daniel 4:14 372654 דִּ֤י APfxcs pronoun:indefinite preposition:: None ? : 841 | Daniel 4:15 372671 פִּשְׁרֵ֣א ANcmsd noun:common noun:: ATd particle:definite article p: 842 | Daniel 4:16 372712 פִשְׁרֵא֙ ANcmsd noun:common noun:: ATd particle:definite article p: 843 | Daniel 4:19 372766 ה֣וּא APdxms pronoun:demonstrative personal pronoun::demonstrative personal pronoun None ? : 844 | Daniel 4:20 372800 בְּרַ֨ם AC conjunction adverb:: None ? : 845 | Daniel 4:20 372815 דִּ֣י AT particle preposition:: None ? : 846 | Daniel 4:21 372844 מַלְכָּֽא ANcmsc noun:common noun:: ASp1cs suffix:pronominal :> 847 | Daniel 4:22 372866 לָ֣ךְ AR preposition preposition:: ATo particle:direct object marker p: 848 | Daniel 4:22 372884 מַן APrxcs pronoun:relative interrogative pronoun:: None ? : 849 | Daniel 4:22 372885 דִּ֥י APrxcs pronoun:relative preposition:: None ? : 850 | Daniel 4:23 372901 דִּ֣י AAafsa adjective:adjective preposition:: None ? : 851 | Daniel 4:24 372906 לָהֵ֣ן AC conjunction adverb:conjunctive adverb: None ? : 852 | Daniel 4:26 372939 דִּ֥י AT particle preposition:: None ? : 853 | Daniel 4:29 373013 מַן APrxcs pronoun:relative interrogative pronoun:: None ? : 854 | Daniel 4:29 373014 דִּ֥י APrxcs pronoun:relative preposition:: None ? : 855 | Daniel 4:32 373110 מָ֥ה APixbs pronoun:interrogative interrogative pronoun:: None ? : 856 | Daniel 5:2 373196 אֲב֔וּהִי ANcmsc noun:common noun:: ASp3ms suffix:pronominal p:W 857 | Daniel 5:5 373253 דִּ֣י AT particle preposition:: None ? : 858 | Daniel 5:5 373263 דִּֽי AT particle preposition:: None ? : 859 | Daniel 5:5 373266 דִּ֣י AT particle preposition:: None ? : 860 | Daniel 5:7 373324 דִֽי AT particle preposition:: None ? : 861 | Daniel 5:8 373345 פשׁרא ANcmsd noun:common noun:: ATd particle:definite article p: 862 | Daniel 5:11 373400 אֲב֗וּךְ ANcmsc noun:common noun:: ASp2ms suffix:pronominal p:W 863 | Daniel 5:11 373414 אֲב֔וּךְ ANcmsc noun:common noun:: ASp2ms suffix:pronominal p:W 864 | Daniel 5:11 373421 אֲב֥וּךְ ANcmsc noun:common noun:: ASp2ms suffix:pronominal p:W 865 | Daniel 5:13 373469 ה֤וּא ATa particle:affirmation personal pronoun::demonstrative personal pronoun None ? : 866 | Daniel 5:16 373552 תַלְתָּ֥א AAobsa adjective:ordinal number noun:: None ? :> 867 | Daniel 5:18 373594 אֲבֽוּךְ ANcmsc noun:common noun:: ASp2ms suffix:pronominal p:W 868 | Daniel 5:21 373690 דִּ֥י APf3cs pronoun:indefinite preposition:: None ? : 869 | Daniel 5:25 373781 מְנֵ֥א ANxxxa noun:unknown noun:: None ? : 870 | Daniel 5:25 373782 מְנֵ֖א ANxxxa noun:unknown noun:: None ? : 871 | Daniel 5:25 373783 תְּקֵ֥ל ANxxxa noun:unknown noun:: None ? : 872 | Daniel 5:25 373785 פַרְסִֽין ANxxxa noun:unknown noun:: None ? : 873 | Daniel 5:26 373789 מְנֵ֕א ANxxxa noun:unknown noun:: None ? : 874 | Daniel 5:27 373795 תְּקֵ֑ל ANxxxa noun:unknown noun:: None ? : 875 | Daniel 5:28 373802 פְּרֵ֑ס ANxxxa noun:unknown noun:: None ? : 876 | Daniel 5:28 373808 מָדַ֥י ANgmsd noun:gentilic proper noun::place None ? : 877 | Daniel 5:28 373810 פָרָֽס ANgmsd noun:gentilic proper noun::place None ? : 878 | Daniel 5:29 373832 תַּלְתָּ֖א AAobsa adjective:ordinal number noun:: None ? :> 879 | Daniel 6:6 373966 עֲלֹ֖והִי AR preposition preposition:: APp3ms pronoun:personal p: 880 | Daniel 6:10 374047 דְּנָ֑ה AC conjunction demonstrative pronoun:: None ? : 881 | Daniel 6:18 374276 חֲדָ֔ה ANcfsa noun:common noun:cardinal: None ? : 882 | Daniel 7:5 374648 שׁניה ANcfpd noun:common noun:: ATd particle:definite article p: 883 | Daniel 7:6 374673 גביה ANcmpd noun:common noun:: ATd particle:definite article p: 884 | Daniel 7:6 374682 לַֽהּ AC conjunction preposition:: AAcbsa adjective:cardinal number p: 885 | Daniel 7:7 374712 רגליה ANcfpd noun:common noun:: ATd particle:definite article p: 886 | Daniel 7:7 374721 קָֽדָמַ֔יהּ ANcfsd noun:common noun:potential preposition: ATd particle:definite article p: 887 | Daniel 7:8 374744 קדמיה AAamsd adjective:adjective noun:potential preposition: ATd particle:definite article p: 888 | Daniel 7:16 374909 חַד֙ AAomsa adjective:ordinal number noun:cardinal: None ? : 889 | Daniel 7:16 374913 יַצִּיבָ֥א AAafsa adjective:adjective adjective:: None ? :> 890 | Daniel 7:17 374932 אַרְבְּעָ֥ה AAabsa adjective:adjective noun:cardinal: None ? : 891 | Daniel 7:22 375025 עַתִּיק֙ ANp noun:proper name adjective:: None ? : 892 | Daniel 7:23 375040 כֵּן֮ AAampa adjective:adjective adverb:: None ? : 893 | Daniel 7:23 375045 רביעיא AAomsd adjective:ordinal number adjective:ordinal: ATd particle:definite article : 894 | Daniel 7:23 375052 כָּל AVqi3fs verb noun:distributive noun: None ? : 895 | Daniel 8:13 375489 פַּֽלְמֹונִ֣י HPf pronoun:indefinite noun:: None ? : 896 | Daniel 8:20 375623 פָרָֽס HNp noun:proper name proper noun::gentilic None ? : 897 | Daniel 10:1 376447 פָּרַ֔ס HNp noun:proper name proper noun::gentilic None ? : 898 | Daniel 10:13 376732 פָּרַ֗ס HNp noun:proper name proper noun::gentilic None ? : 899 | Daniel 11:12 377183 רִבֹּאֹ֖ות HNcbpa noun:common noun:cardinal: None ? : 900 | Ezra 2:69 379064 רִבֹּ֣אות HNcbpa noun:common noun:cardinal: None ? : 901 | Ezra 4:2 379543 כָכֶ֔ם HRd preposition:definite article preposition:: HPp2mp pronoun:personal p: 902 | Ezra 4:3 379576 לָ֔נוּ HRd preposition:definite article preposition:: HPp1cp pronoun:personal p: 903 | Ezra 4:7 379664 אֲרָמִ֖ית HNgfsa noun:gentilic adjective:: None ? : 904 | Ezra 4:7 379667 אֲרָמִֽית HNgfsa noun:gentilic adjective:: None ? : 905 | Ezra 4:9 379698 ארכוי ANgmpc noun:gentilic adjective:gentilic: None ? :> 906 | Ezra 4:9 379701 דהוא ATr particle:relative adjective:gentilic: ATa particle:affirmation :> 907 | Ezra 4:10 379721 עֲבַֽר ANp noun:proper name noun:potential preposition: None ? : 908 | Ezra 4:11 379736 עֲבַֽר ANp noun:proper name noun:potential preposition: None ? : 909 | Ezra 4:12 379760 שׁורי ANcmpc noun:common noun:: None ? :> 910 | Ezra 4:16 379862 דְּנָ֔ה AC conjunction demonstrative pronoun:: None ? : 911 | Ezra 4:16 379865 עֲבַ֣ר ANp noun:proper name noun:potential preposition: None ? : 912 | Ezra 4:17 379889 עֲבַֽר ANp noun:proper name noun:potential preposition: None ? : 913 | Ezra 4:20 379934 עֲבַ֣ר ANp noun:proper name noun:potential preposition: None ? : 914 | Ezra 5:3 380078 עֲבַֽר ANp noun:proper name noun:potential preposition: None ? : 915 | Ezra 5:3 380088 מַן APi3ms pronoun:interrogative interrogative pronoun:: None ? : 916 | Ezra 5:4 380105 מַן APi pronoun:interrogative interrogative pronoun:: None ? : 917 | Ezra 5:4 380106 אִנּוּן֙ ATa particle:affirmation personal pronoun::demonstrative personal pronoun None ? : 918 | Ezra 5:6 380141 עֲבַֽר ANp noun:proper name noun:potential preposition: None ? : 919 | Ezra 5:6 380150 עֲבַ֣ר ANp noun:proper name noun:potential preposition: None ? : 920 | Ezra 5:9 380209 מַן APi pronoun:interrogative interrogative pronoun:: None ? : 921 | Ezra 5:11 380243 הִמֹּ֡ו ATa particle:affirmation personal pronoun:: None ? : 922 | Ezra 5:13 380294 בְּרַם֙ AC conjunction adverb:: None ? : 923 | Ezra 6:6 380552 עֲבַֽר ANp noun:proper name noun:potential preposition: None ? : 924 | Ezra 6:11 380670 מִנִּי֮ ANcmpc noun:common preposition:: ASp3ms suffix:pronominal p: 925 | Ezra 7:17 381250 דְּנָה֩ AC conjunction demonstrative pronoun:: None ? : 926 | Ezra 7:18 381276 דִי֩ APfxcs pronoun:indefinite preposition:: None ? : 927 | Ezra 7:23 381386 מָ֤ה APixcs pronoun:interrogative interrogative pronoun:: None ? : 928 | Nehemiah 7:70 387099 רִבֹּ֑ות HNcbpa noun:common noun:cardinal: None ? : 929 | Nehemiah 8:11 387494 הַ֔סּוּ HTj particle:interjection verb:: None ? : 930 | Nehemiah 9:17 388162 וחסד HC conjunction noun:: HNcmsa noun:common : 931 | 1_Chronicles 1:7 391303 תַרְשִׁ֑ישָׁה HNp noun:proper name proper noun::place HSh suffix:paragogic he :H 932 | 1_Chronicles 4:8 392917 הַצֹּבֵבָ֑ה HTd particle:definite article proper noun::person HNp noun:proper name : 933 | 1_Chronicles 5:13 393659 שֶׁבַע HAcfsa adjective:cardinal number proper noun::person None ? : 934 | 1_Chronicles 6:9 394169 תַּ֤חַת HR preposition proper noun::person None ? : 935 | 1_Chronicles 6:22 394302 תַּ֨חַת֙ HR preposition proper noun::person None ? : 936 | 1_Chronicles 15:13 399241 מַ HTi particle:interrogative preposition:: None ? : 937 | 1_Chronicles 20:6 401777 רָפָֽא HNgmsa noun:gentilic proper noun::person None ? : 938 | 1_Chronicles 20:8 401793 רָפָ֖א HNgmsa noun:gentilic proper noun::person None ? : 939 | 1_Chronicles 24:15 403686 הַפִּצֵּ֖ץ HTd particle:definite article proper noun::person HNp noun:proper name : 940 | 2_Chronicles 4:16 408462 אָבִ֛יו HNp noun:proper name noun:: None ? p:J 941 | 2_Chronicles 29:36 421816 הַ HTr particle:relative article:: None ? : 942 | 2_Chronicles 30:2 421878 הַ HRd preposition:definite article article:: None ? : 943 | 2_Chronicles 30:2 421879 שֵּׁנִֽי HNcbsa noun:common adjective:ordinal: None ? : 944 | 2_Chronicles 36:17 426402 כשׂדיים HNgmpa noun:gentilic proper noun::place None ? : 945 | --------------------------------------------------------------------------------