liblevenshtein 0.9.1

Levenshtein/Universal Automata for approximate string matching using various dictionary backends
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
// Hebrew Base Phonetic Rules
// ==========================
// Phonetic rules for Hebrew (עברית) using Hebrew script.
// Maps Hebrew letters and vowel points to Latin phonetic representations.
//
// Hebrew is an abjad where vowels are typically omitted or indicated
// with optional diacritical marks (niqqud). This file handles:
//   - All 22 consonant letters plus 5 final forms
//   - Niqqud (vowel points) transliteration
//   - Dagesh modifications for בכפ
//   - Shin/Sin distinction
//
// Key features:
//   - Gutturals: א, ה, ח, ע (can be silent or indicate vowels)
//   - Begadkefat letters: ב, ג, ד, כ, פ, ת (historically had two sounds)
//   - Final forms: ך, ם, ן, ף, ץ
//   - Shin dot (שׁ) vs Sin dot (שׂ)
//
// Rule IDs: 2150-2199

@name "Hebrew Base Phonetic Rules"
@version "1.0.0"
@author "liblevenshtein"
@description "Phonetic normalization rules for Hebrew script"

// ============================================================
// CONSONANTS WITH DAGESH (harder pronunciation)
// ============================================================
// Must come before plain consonants

// בּ (bet with dagesh) → b
[id: 2150, name: "bet dagesh", weight: 0.05, group: hebrew_dagesh]
בּ -> b;

// כּ (kaf with dagesh) → k
[id: 2151, name: "kaf dagesh", weight: 0.05, group: hebrew_dagesh]
כּ -> k;

// פּ (pe with dagesh) → p
[id: 2152, name: "pe dagesh", weight: 0.05, group: hebrew_dagesh]
פּ -> p;

// גּ (gimel with dagesh) → ɡ (same as without dagesh in Modern Hebrew)
[id: 2153, name: "gimel dagesh", weight: 0.05, group: hebrew_dagesh, ipa: "/ɡ/"]
גּ -> ɡ;

// דּ (dalet with dagesh) → d (same as without dagesh in Modern Hebrew)
[id: 2154, name: "dalet dagesh", weight: 0.05, group: hebrew_dagesh]
דּ -> d;

// תּ (tav with dagesh) → t (same as without dagesh in Modern Hebrew)
[id: 2157, name: "tav dagesh", weight: 0.05, group: hebrew_dagesh]
תּ -> t;

// ============================================================
// SHIN/SIN DISTINCTION
// ============================================================

// שׁ (shin with shin dot) → ʃ
[id: 2155, name: "shin with dot", weight: 0.05, group: hebrew_sibilants, ipa: "/ʃ/"]
שׁ -> ʃ;

// שׂ (sin with sin dot) → s
[id: 2156, name: "sin with dot", weight: 0.05, group: hebrew_sibilants]
שׂ -> s;

// ============================================================
// BASIC CONSONANTS
// ============================================================

// א (alef) → ' (glottal stop, often silent)
[id: 2160, name: "alef", weight: 0.1, group: hebrew_consonants]
א -> ';

// ב (bet without dagesh) → v
[id: 2161, name: "bet", weight: 0.1, group: hebrew_consonants]
ב -> v;

// ג (gimel) → ɡ
[id: 2162, name: "gimel", weight: 0.1, group: hebrew_consonants, ipa: "/ɡ/"]
ג -> ɡ;

// ד (dalet) → d
[id: 2163, name: "dalet", weight: 0.1, group: hebrew_consonants]
ד -> d;

// ה (he) → h
[id: 2164, name: "he", weight: 0.1, group: hebrew_consonants]
ה -> h;

// ו (vav) → v
[id: 2165, name: "vav", weight: 0.1, group: hebrew_consonants]
ו -> v;

// ז (zayin) → z
[id: 2166, name: "zayin", weight: 0.1, group: hebrew_consonants]
ז -> z;

// ח (het) → x (velar fricative)
[id: 2167, name: "het", weight: 0.1, group: hebrew_consonants, ipa: "/x/"]
ח -> x;

// ט (tet) → t
[id: 2168, name: "tet", weight: 0.1, group: hebrew_consonants]
ט -> t;

// י (yod) → y
[id: 2169, name: "yod", weight: 0.1, group: hebrew_consonants]
י -> y;

// כ (kaf without dagesh) → x
[id: 2170, name: "kaf", weight: 0.1, group: hebrew_consonants, ipa: "/x/"]
כ -> x;

// ל (lamed) → l
[id: 2171, name: "lamed", weight: 0.1, group: hebrew_consonants]
ל -> l;

// מ (mem) → m
[id: 2172, name: "mem", weight: 0.1, group: hebrew_consonants]
מ -> m;

// נ (nun) → n
[id: 2173, name: "nun", weight: 0.1, group: hebrew_consonants]
נ -> n;

// ס (samekh) → s
[id: 2174, name: "samekh", weight: 0.1, group: hebrew_consonants]
ס -> s;

// ע (ayin) → ' (guttural, often silent)
[id: 2175, name: "ayin", weight: 0.1, group: hebrew_consonants]
ע -> ';

// פ (pe without dagesh) → f
[id: 2176, name: "pe", weight: 0.1, group: hebrew_consonants]
פ -> f;

// צ (tsadi) → t͡s
[id: 2177, name: "tsadi", weight: 0.1, group: hebrew_consonants, ipa: "/t͡s/"]
צ -> t͡s;

// ק (qof) → k
[id: 2178, name: "qof", weight: 0.1, group: hebrew_consonants]
ק -> k;

// ר (resh) → r
[id: 2179, name: "resh", weight: 0.1, group: hebrew_consonants]
ר -> r;

// ש (shin, unmarked) → ʃ (default to shin pronunciation)
[id: 2180, name: "shin", weight: 0.1, group: hebrew_consonants, ipa: "/ʃ/"]
ש -> ʃ;

// ת (tav) → t
[id: 2181, name: "tav", weight: 0.1, group: hebrew_consonants]
ת -> t;

// ============================================================
// FINAL LETTER FORMS
// ============================================================

// ך (final kaf) → x
[id: 2185, name: "final kaf", weight: 0.1, group: hebrew_finals, ipa: "/x/"]
ך -> x;

// ם (final mem) → m
[id: 2186, name: "final mem", weight: 0.1, group: hebrew_finals]
ם -> m;

// ן (final nun) → n
[id: 2187, name: "final nun", weight: 0.1, group: hebrew_finals]
ן -> n;

// ף (final pe) → f
[id: 2188, name: "final pe", weight: 0.1, group: hebrew_finals]
ף -> f;

// ץ (final tsadi) → t͡s
[id: 2189, name: "final tsadi", weight: 0.1, group: hebrew_finals, ipa: "/t͡s/"]
ץ -> t͡s;

// ============================================================
// NIQQUD (VOWEL POINTS)
// ============================================================

// ְ (sheva) → e (or silent)
[id: 2190, name: "sheva", weight: 0.15, group: hebrew_vowels]
ְ -> e;

// ֱ (hataf segol) → e
[id: 2191, name: "hataf segol", weight: 0.15, group: hebrew_vowels]
ֱ -> e;

// ֲ (hataf patah) → a
[id: 2192, name: "hataf patah", weight: 0.15, group: hebrew_vowels]
ֲ -> a;

// ֳ (hataf qamats) → o
[id: 2193, name: "hataf qamats", weight: 0.15, group: hebrew_vowels]
ֳ -> o;

// ִ (hiriq) → i
[id: 2194, name: "hiriq", weight: 0.15, group: hebrew_vowels]
ִ -> i;

// ֵ (tsere) → e
[id: 2195, name: "tsere", weight: 0.15, group: hebrew_vowels]
ֵ -> e;

// ֶ (segol) → e
[id: 2196, name: "segol", weight: 0.15, group: hebrew_vowels]
ֶ -> e;

// ַ (patah) → a
[id: 2197, name: "patah", weight: 0.15, group: hebrew_vowels]
ַ -> a;

// ָ (qamats) → a (or o in some dialects)
[id: 2198, name: "qamats", weight: 0.15, group: hebrew_vowels]
ָ -> a;

// ֹ (holam) → o
[id: 2199, name: "holam", weight: 0.15, group: hebrew_vowels]
ֹ -> o;

// ֻ (qubuts) → u
[id: 2200, name: "qubuts", weight: 0.15, group: hebrew_vowels]
ֻ -> u;

// ============================================================
// SILENT MARKERS AND SIMPLIFICATIONS
// ============================================================

// Remove glottal stops for simpler matching
[id: 2205, name: "remove glottal", weight: 0.2, group: hebrew_simplification]
' -> ;

// Double consonant simplification (gemination)
[id: 2206, name: "double velar fricative", weight: 0.2, group: hebrew_simplification]
xx -> x;

[id: 2207, name: "double sh", weight: 0.2, group: hebrew_simplification]
ʃʃ -> ʃ;

[id: 2208, name: "double ts affricate", weight: 0.2, group: hebrew_simplification]
t͡st͡s -> t͡s;

// ============================================================
// HISTORICAL SPIRANTIZATION (Begadkefat)
// ============================================================
// In Biblical/Tiberian Hebrew, the six Begadkefat letters (ב ג ד כ פ ת)
// had two pronunciations: stop (with dagesh) and fricative (without).
// Modern Hebrew only preserves this for ב כ פ.
//
// DESIGN NOTE: Non-Determinism Resolution
// ----------------------------------------
// The following rules (ג→ɣ, ד→ð, ת→θ) appear to conflict with the
// stop rules above (ג→ɡ, ד→d, ת→t). This is intentional:
//
// - Stop rules have weight 0.1 (lower weight = higher priority)
// - Spirant rules have weight 0.25 (lower priority)
//
// During matching, both outputs are generated as valid alternatives,
// but the stop pronunciation receives a lower distance score,
// prioritizing Modern Israeli Hebrew pronunciation while still
// allowing historical/Yemenite/Sephardic matches.
//
// For strict Modern Hebrew matching, these spirant rules can be
// removed or given very high weights (0.9+) to effectively disable them.

// ג (gimel) → ɣ (voiced velar fricative, historical)
// In modern Israeli Hebrew: always ɡ
[id: 2210, name: "gimel spirant historical", weight: 0.25, group: hebrew_spirantization, ipa: "/ɣ/"]
ג -> ɣ;

// ד (dalet) → ð (voiced dental fricative, historical)
// In modern Israeli Hebrew: always d
[id: 2211, name: "dalet spirant historical", weight: 0.25, group: hebrew_spirantization, ipa: "/ð/"]
ד -> ð;

// ת (tav) → θ (voiceless dental fricative, historical)
// In modern Israeli Hebrew: always t
// Still used in some Yemenite and Sephardic pronunciations
[id: 2212, name: "tav spirant historical", weight: 0.25, group: hebrew_spirantization, ipa: "/θ/"]
ת -> θ;

// ============================================================
// BEIDER-MORSE HEBREW PATTERNS (Latin Transliteration)
// ============================================================
// Rules for matching Hebrew names written in Latin alphabet
// Based on Beider-Morse Phonetic Matching for Hebrew
// Rule IDs: 3800-3899

// ------------------------------------------------------------
// CH/KH VARIANTS (ח and כ transliteration)
// ------------------------------------------------------------

// ch → x (common transliteration for het/khaf)
[id: 3800, name: "ch to kh bm hebrew", weight: 0.10, group: bm_hebrew_trans, ipa: "/x/"]
ch -> x;

// kh → x (alternative transliteration)
[id: 3801, name: "kh to x bm hebrew", weight: 0.10, group: bm_hebrew_trans, ipa: "/x/"]
kh -> x;

// h → x / _# (word-final h often from het)
[id: 3802, name: "final h to kh bm hebrew", weight: 0.20, group: bm_hebrew_trans, ipa: "/x/"]
h -> x / _#;

// ------------------------------------------------------------
// TZ/TS VARIANTS (צ transliteration)
// ------------------------------------------------------------

// tz → t͡s
[id: 3805, name: "tz to ts bm hebrew", weight: 0.10, group: bm_hebrew_trans, ipa: "/t͡s/"]
tz -> t͡s;

// ts → t͡s
[id: 3806, name: "ts to ts bm hebrew", weight: 0.10, group: bm_hebrew_trans, ipa: "/t͡s/"]
ts -> t͡s;

// z → t͡s / t_ (tz variant)
[id: 3807, name: "z after t bm hebrew", weight: 0.15, group: bm_hebrew_trans, ipa: "/t͡s/"]
tz -> t͡s;

// ------------------------------------------------------------
// SH/SCH VARIANTS (ש transliteration)
// ------------------------------------------------------------

// sch → ʃ (German-influenced)
[id: 3810, name: "sch to sh bm hebrew", weight: 0.10, group: bm_hebrew_trans, ipa: "/ʃ/"]
sch -> ʃ;

// sh → ʃ
[id: 3811, name: "sh to sh bm hebrew", weight: 0.10, group: bm_hebrew_trans, ipa: "/ʃ/"]
sh -> ʃ;

// ------------------------------------------------------------
// V/W/B VARIANTS (ב and ו transliteration)
// ------------------------------------------------------------

// w → v (common in older transliterations)
[id: 3815, name: "w to v bm hebrew", weight: 0.15, group: bm_hebrew_trans]
w -> v;

// b → v (bet without dagesh)
[id: 3816, name: "b to v bm hebrew", weight: 0.20, group: bm_hebrew_trans]
b -> v;

// v → b / #_ (initial v often bet with dagesh)
[id: 3817, name: "initial v to b bm hebrew", weight: 0.20, group: bm_hebrew_trans]
v -> b / #_;

// ------------------------------------------------------------
// Q/K VARIANTS (ק and כּ transliteration)
// ------------------------------------------------------------

// q → k (qof)
[id: 3820, name: "q to k bm hebrew", weight: 0.10, group: bm_hebrew_trans]
q -> k;

// c → k / _[aou] (before back vowels)
[id: 3821, name: "c to k bm hebrew", weight: 0.15, group: bm_hebrew_trans]
c -> k / _[aou];

// ck → k
[id: 3822, name: "ck to k bm hebrew", weight: 0.10, group: bm_hebrew_trans]
ck -> k;

// ------------------------------------------------------------
// Y/J/I VARIANTS (י transliteration)
// ------------------------------------------------------------

// j → y (European transliteration)
[id: 3825, name: "j to y bm hebrew", weight: 0.15, group: bm_hebrew_trans]
j -> y;

// y → i / _# (word-final y as vowel)
[id: 3826, name: "final y to i bm hebrew", weight: 0.15, group: bm_hebrew_trans]
y -> i / _#;

// i → y / #_ (initial i before vowel)
[id: 3827, name: "initial i to y bm hebrew", weight: 0.20, group: bm_hebrew_trans]
i -> y / #_[aeiou];

// ------------------------------------------------------------
// PH/F VARIANTS (פ transliteration)
// ------------------------------------------------------------

// ph → f
[id: 3830, name: "ph to f bm hebrew", weight: 0.10, group: bm_hebrew_trans]
ph -> f;

// ff → f
[id: 3831, name: "double f bm hebrew", weight: 0.10, group: bm_hebrew_trans]
ff -> f;

// ------------------------------------------------------------
// COMMON NAME SUFFIXES
// ------------------------------------------------------------

// -owitz → -ovit͡s (patronymic)
[id: 3835, name: "owitz suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
owitz -> ovit͡s / _#;

// -owicz → -ovit͡s
[id: 3836, name: "owicz suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
owicz -> ovit͡s / _#;

// -witz → -vit͡s
[id: 3837, name: "witz suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
witz -> vit͡s / _#;

// -ovitch → -ovit͡ʃ
[id: 3838, name: "ovitch suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
ovitch -> ovit͡ʃ / _#;

// -stein → -ʃtaɪn
[id: 3840, name: "stein suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix, ipa: "/ʃtaɪn/"]
stein -> ʃtaɪn / _#;

// -berg → -berɡ
[id: 3841, name: "berg suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
berg -> berɡ / _#;

// -man/-mann → -man
[id: 3842, name: "mann suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
mann -> man / _#;

// -son → -son/-zon
[id: 3843, name: "son suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
son -> son / _#;

// -sohn → -zon (German variant)
[id: 3844, name: "sohn suffix bm hebrew", weight: 0.10, group: bm_hebrew_suffix]
sohn -> zon / _#;

// ------------------------------------------------------------
// COMMON NAME PREFIXES
// ------------------------------------------------------------

// ben- → ben (Hebrew "son of")
[id: 3850, name: "ben prefix bm hebrew", weight: 0.05, group: bm_hebrew_prefix]
ben -> ben / #_;

// bar- → bar (Aramaic "son of")
[id: 3851, name: "bar prefix bm hebrew", weight: 0.05, group: bm_hebrew_prefix]
bar -> bar / #_;

// bat- → bat (Hebrew "daughter of")
[id: 3852, name: "bat prefix bm hebrew", weight: 0.05, group: bm_hebrew_prefix]
bat -> bat / #_;

// el- → el (theophoric element)
[id: 3853, name: "el prefix bm hebrew", weight: 0.10, group: bm_hebrew_prefix]
el -> el / #_;

// ------------------------------------------------------------
// THEOPHORIC NAME ELEMENTS
// ------------------------------------------------------------

// -el → -el (God)
[id: 3855, name: "el suffix bm hebrew", weight: 0.05, group: bm_hebrew_theophoric]
el -> el / _#;

// -yahu/-yah → -ya (YHWH)
[id: 3856, name: "yahu suffix bm hebrew", weight: 0.10, group: bm_hebrew_theophoric]
yahu -> ya / _#;

[id: 3857, name: "yah suffix bm hebrew", weight: 0.10, group: bm_hebrew_theophoric]
yah -> ya / _#;

// -iah → -iya (variant)
[id: 3858, name: "iah suffix bm hebrew", weight: 0.10, group: bm_hebrew_theophoric]
iah -> iya / _#;

// ------------------------------------------------------------
// VOWEL VARIANTS (abjad effects)
// ------------------------------------------------------------

// ee → i (hiriq)
[id: 3860, name: "ee to i bm hebrew", weight: 0.15, group: bm_hebrew_vowel]
ee -> i;

// ei → ay (tsere-yod)
[id: 3861, name: "ei to ay bm hebrew", weight: 0.15, group: bm_hebrew_vowel]
ei -> ay;

// ai → ay
[id: 3862, name: "ai to ay bm hebrew", weight: 0.10, group: bm_hebrew_vowel]
ai -> ay;

// ou → u (qubuts)
[id: 3863, name: "ou to u bm hebrew", weight: 0.15, group: bm_hebrew_vowel]
ou -> u;

// oo → u (shuruk)
[id: 3864, name: "oo to u bm hebrew", weight: 0.15, group: bm_hebrew_vowel]
oo -> u;

// ah → a (patah-he)
[id: 3865, name: "ah to a bm hebrew", weight: 0.10, group: bm_hebrew_vowel]
ah -> a / _#;

// oh → o (holam-he)
[id: 3866, name: "oh to o bm hebrew", weight: 0.10, group: bm_hebrew_vowel]
oh -> o / _#;

// ------------------------------------------------------------
// DOUBLE CONSONANT SIMPLIFICATION
// ------------------------------------------------------------

// Double letters (gemination in Hebrew)
[id: 3870, name: "double b bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
bb -> b;

[id: 3871, name: "double d bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
dd -> d;

[id: 3872, name: "double g bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
gg -> ɡ;

[id: 3873, name: "double k bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
kk -> k;

[id: 3874, name: "double l bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
ll -> l;

[id: 3875, name: "double m bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
mm -> m;

[id: 3876, name: "double n bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
nn -> n;

[id: 3877, name: "double p bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
pp -> p;

[id: 3878, name: "double r bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
rr -> r;

[id: 3879, name: "double s bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
ss -> s;

[id: 3880, name: "double t bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
tt -> t;

[id: 3881, name: "double z bm hebrew", weight: 0.15, group: bm_hebrew_gemination]
zz -> z;

// ------------------------------------------------------------
// COMMON HEBREW NAME PATTERNS
// ------------------------------------------------------------

// David variants
[id: 3885, name: "dawid to david bm hebrew", weight: 0.10, group: bm_hebrew_names]
dawid -> david;

// Moshe variants
[id: 3886, name: "mosche to moshe bm hebrew", weight: 0.10, group: bm_hebrew_names]
mosche -> moʃe;

[id: 3887, name: "moishe to moshe bm hebrew", weight: 0.10, group: bm_hebrew_names]
moishe -> moʃe;

// Yaakov variants
[id: 3888, name: "jacob to yaakov bm hebrew", weight: 0.15, group: bm_hebrew_names]
jacob -> yakov;

[id: 3889, name: "jakob to yaakov bm hebrew", weight: 0.15, group: bm_hebrew_names]
jakob -> yakov;

// Yosef variants
[id: 3890, name: "joseph to yosef bm hebrew", weight: 0.15, group: bm_hebrew_names]
joseph -> yosef;

[id: 3891, name: "josef to yosef bm hebrew", weight: 0.15, group: bm_hebrew_names]
josef -> yosef;

// Avraham variants
[id: 3892, name: "abraham to avraham bm hebrew", weight: 0.15, group: bm_hebrew_names]
abraham -> avraham;

// Yitzhak variants
[id: 3893, name: "isaac to yitzhak bm hebrew", weight: 0.15, group: bm_hebrew_names]
isaac -> yit͡sxak;

[id: 3894, name: "izaak to yitzhak bm hebrew", weight: 0.15, group: bm_hebrew_names]
izaak -> yit͡sak;

// Shlomo variants
[id: 3895, name: "solomon to shlomo bm hebrew", weight: 0.15, group: bm_hebrew_names]
solomon -> ʃlomo;

// Sarah variants
[id: 3896, name: "sara to sarah bm hebrew", weight: 0.10, group: bm_hebrew_names]
sara -> sara;

// Miriam variants
[id: 3897, name: "mary to miriam bm hebrew", weight: 0.20, group: bm_hebrew_names]
mary -> miriam;

// Rivka variants
[id: 3898, name: "rebecca to rivka bm hebrew", weight: 0.20, group: bm_hebrew_names]
rebecca -> rivka;

[id: 3899, name: "rebekah to rivka bm hebrew", weight: 0.15, group: bm_hebrew_names]
rebekah -> rivka;