-
Notifications
You must be signed in to change notification settings - Fork 3
/
dictionary.js
4878 lines (4878 loc) ยท 116 KB
/
dictionary.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
dictionary = {
"๐ท๐ฃอ": {
"means": "single",
"type": ""
},
"๐ท๐ฃอ๐ธ๐ฒ๐": {
"means": "one",
"type": ""
},
"๐ฒ๐๐บ๐": {
"means": "stomach",
"type": ""
},
"๐ท๐๐ฉ๐ชอ๐๐๐ช๐ป๐ถ": {
"means": "stomach",
"type": ""
},
"๐ฃ๐ค๐ชอ๐ฎ๐ค๐๐ค๐ฃ๐ต๐": {
"means": "act like",
"type": ""
},
"๐ช๐ค'๐อ": {
"means": "act like",
"type": ""
},
"๐ต๐อ๐ฒ๐ ๐ช๐ต๐ฃ๐ฎ๐อ๐ก๐": {
"means": "afraid",
"type": ""
},
"๐ต๐อ๐ฒ๐ ๐ช๐ฎ๐ ": {
"means": "afraid",
"type": ""
},
"๐ฉ๐ชอ๐ฌ๐": {
"means": "fist",
"type": ""
},
"๐ช๐ฉ๐ฃอ๐ป๐ฃอ": {
"means": "be afraid (of)",
"type": ""
},
"๐จ๐ฃอ๐ค๐๐ฎ๐": {
"means": "black person (African American)",
"type": ""
},
"๐จ๐ฃอ๐๐ฎ๐": {
"means": "black person (African American)",
"type": ""
},
"๐ฉ๐ฃ๐ค๐ ๐ฎ๐๐ฌ๐": {
"means": "black person (African American)",
"type": ""
},
"๐๐ต๐ช๐ก๐": {
"means": "again",
"type": ""
},
"๐ฏ๐ฃ": {
"means": "more",
"type": ""
},
"๐ช๐ฎ๐ฃ": {
"means": "get out of (e.g., a vehicle)",
"type": ""
},
"๐ช๐ท๐ฃ๐ฎ๐ฃ": {
"means": "jump (intransitive)",
"type": ""
},
"๐ค๐๐ฏ๐๐ฉ๐อ": {
"means": "that's all",
"type": ""
},
"๐ค๐๐ฏ๐ซ๐ค๐": {
"means": "that's all",
"type": ""
},
"๐ก๐๐ฒ๐ฃ": {
"means": "repeatedly",
"type": ""
},
"๐ฏ๐ฐ๐อ": {
"means": "keep on (doing something)",
"type": ""
},
"๐ต๐ช๐ก๐": {
"means": "nearly",
"type": ""
},
"๐ก๐ช๐ฉ๐ฃ": {
"means": "nearly",
"type": ""
},
"๐๐ฏ๐ค๐ฃ": {
"means": "otherwise",
"type": ""
},
"๐ฏ๐ค๐ฃ": {
"means": "too (also)",
"type": ""
},
"๐ฏ๐ค๐ฃ๐ฐ๐อ": {
"means": "too (also)",
"type": ""
},
"'๐ก๐๐ฒ๐ฃ": {
"means": "always",
"type": ""
},
"๐ฃ๐ค๐ฃ๐ก๐": {
"means": "repeatedly",
"type": ""
},
"๐ค๐๐ฏ๐ชอ๐": {
"means": "always",
"type": ""
},
"๐ฉ๐อ": {
"means": "well (interjection)",
"type": ""
},
"๐ฏ๐ชอ๐ฏ๐ชอ๐ท๐": {
"means": "always",
"type": ""
},
"๐ช๐ต๐ฃ๐บ๐อ": {
"means": "be among",
"type": ""
},
"๐ช๐จ๐อ๐ต๐ฃอ": {
"means": "live (verb)",
"type": ""
},
"๐ท๐๐ก๐ช๐ก๐ช๐ฐ๐": {
"means": "humorous",
"type": ""
},
"๐ท๐๐ก๐ช๐ฐ๐": {
"means": "humorous",
"type": ""
},
"๐ค๐ช๐": {
"means": "but",
"type": ""
},
"๐ฌ๐๐ฐ๐อ": {
"means": "when (conjunction)",
"type": ""
},
"๐ค๐๐ค๐ชอ ๐ฐ๐อ": {
"means": "whereupon",
"type": ""
},
"๐ค๐๐ต๐ชอ": {
"means": "and then",
"type": ""
},
"๐ต๐ถ๐ง๐อ": {
"means": "make someone angry",
"type": ""
},
"๐ท๐๐ป๐ฃอ ๐ฌ๐ฃ๐ป๐ฃ ๐ค๐๐ธ๐": {
"means": "make someone angry",
"type": ""
},
"๐ก๐ช": {
"means": "bark (as a dog does)",
"type": ""
},
"๐ก๐ช๐ฐ๐อ": {
"means": "yell",
"type": ""
},
"๐ก๐ช๐ท๐๐ต๐๐ฏ๐ค๐ฃ": {
"means": "everybody, everyone",
"type": ""
},
"๐ฌ๐": {
"means": "positional articles [posit]",
"type": ""
},
"๐ก๐ช๐ท๐๐ฒ๐๐ฏ๐ค๐ฃ": {
"means": "everything",
"type": ""
},
" ๐ฐ๐๐ฐ๐อ": {
"means": "anything",
"type": ""
},
"๐ฒ๐ฃอ": {
"means": "show (intransitive)",
"type": ""
},
"๐ฃ๐ต๐ชอ๐ฌ๐": {
"means": "appear",
"type": ""
},
"๐ท๐๐ฒ๐ฃอ": {
"means": "show (intransitive)",
"type": ""
},
"๐ต๐อ๐ฒ๐": {
"means": "hearts (suit in a deck of cards)",
"type": ""
},
"๐๐ค๐ชอ": {
"means": "thus",
"type": ""
},
"๐จ๐ฃอ๐ชอ๐ฌ๐ ๐ฏ๐๐ฌ๐": {
"means": "April",
"type": ""
},
"๐จ๐ฃอ๐ชอ๐ฌ๐ ๐ท๐๐ฐ๐ช๐ฌ๐": {
"means": "April",
"type": ""
},
"๐๐ฒ๐ฃ๐ฐ๐อ": {
"means": "brush arbor",
"type": ""
},
"๐ท๐๐ป๐๐ฒ๐ฃ": {
"means": "tent",
"type": ""
},
"๐ช๐ฎ๐ค๐ฃ": {
"means": "arch of the foot",
"type": ""
},
"๐ฎ๐ฃ๐ช๐ฎ๐ค๐ฃ": {
"means": "arch of the foot",
"type": ""
},
"๐ช๐ฃ๐": {
"means": "discuss",
"type": ""
},
"๐ฐ๐๐ค๐ ๐ฃ๐": {
"means": "argument",
"type": ""
},
"๐๐ค๐ชอ": {
"means": "armband",
"type": ""
},
"๐๐ฌ๐ฃ๐ช๐ง๐อ": {
"means": "armband",
"type": ""
},
"๐๐ค๐ฃ๐ฐ๐": {
"means": "soldier",
"type": ""
},
"๐๐ค๐ฃ๐ฐ๐ ๐ช๐จ๐อ๐ต๐ฃอ": {
"means": "army",
"type": ""
},
"๐ฐ๐๐ค๐ ๐ช๐จ๐อ๐ต๐ฃอ": {
"means": "go to war",
"type": ""
},
"๐ฐ๐๐ค๐ ๐ช๐ฉ๐อ๐ป๐ฃอ": {
"means": "be in the armed forces",
"type": ""
},
"๐๐ค๐ฃ๐ธ๐": {
"means": "walk around",
"type": ""
},
"๐๐ฌ๐ฏ๐": {
"means": "walk around",
"type": ""
},
"๐๐จ๐อ๐ฐ๐ ๐ค๐ฃ๐ง๐ฃ๐ค๐ซ๐ธ๐": {
"means": "turn oneself around",
"type": ""
},
"๐ค๐ฃ๐ง๐ฃ๐ฎ๐อ": {
"means": "turn oneself around",
"type": ""
},
"๐ค๐อ": {
"means": "vein (blood vessel)",
"type": ""
},
"๐ง๐ถ๐ฏ๐ถ๐ฌ๐": {
"means": "vein (blood vessel)",
"type": ""
},
"๐ท๐๐ฐ๐": {
"means": "prayer",
"type": ""
},
"๐ท๐๐ฏ๐ฃ": {
"means": "hired worker",
"type": ""
},
"๐ค๐๐ก๐ฃ๐ค๐ ๐ช๐ค'๐อ": {
"means": "assistant chief",
"type": ""
},
"๐ค๐๐ก๐ฃ๐ค๐ ๐ช๐ฐ๐ธ๐อ": {
"means": "assistant chief",
"type": ""
},
"๐ฒ๐ฃ": {
"means": "to",
"type": ""
},
"๐ค๐ฃ": {
"means": "to",
"type": ""
},
"๐ก๐ง๐๐บ๐ฃ๐ฌ๐": {
"means": "August",
"type": ""
},
"๐จ๐ฃอ๐ชอ๐ฌ๐ ๐ค๐ฃ๐๐ฐ๐ช๐ฌ๐": {
"means": "August",
"type": ""
},
"๐ฐ๐ช๐ฐ๐อ๐ก๐": {
"means": "one with authority",
"type": ""
},
"๐ท๐๐ฐ๐ชอ๐ค๐": {
"means": "one with authority",
"type": ""
},
"๐ฃ๐ค๐ฃ๐ต๐": {
"means": "wake up, wake (intransitive)",
"type": ""
},
"๐ธ๐ฃ ": {
"means": "awaken (intransitive)",
"type": ""
},
"๐ฉ๐ฃ๐ต๐": {
"means": "be without",
"type": ""
},
"๐ท๐๐ค'๐ถ": {
"means": "give away",
"type": ""
},
"๐จ๐อ๐ต๐ฃอ": {
"means": "stay",
"type": ""
},
"๐ช๐ค๐๐๐": {
"means": "go away",
"type": ""
},
" ๐๐ต๐ฃอ๐๐ต๐": {
"means": "take away",
"type": ""
},
"๐๐ต๐ฃอ๐จ๐อ๐ต๐ฃอ": {
"means": "take away",
"type": ""
},
"๐ต๐ฃ๐ฒ๐ฃ๐บ๐": {
"means": "take away",
"type": ""
},
"๐จ๐อ๐ก๐ฃอ๐ฎ๐ค๐(?)": {
"means": "axe",
"type": ""
},
"๐จ๐อ๐ก๐ฃอ๐ฎ๐ฌ๐": {
"means": "axe",
"type": ""
},
"๐๐ค๐ฏ๐ฃ": {
"means": "arrive, come, or get back",
"type": ""
},
"๐๐ค๐ถ": {
"means": "get",
"type": ""
},
"๐๐ง๐": {
"means": "arrive, come, or get back",
"type": ""
},
"๐๐ง๐ฃ": {
"means": "arrive, come, or get back",
"type": ""
},
"๐๐ต๐ฃอ๐๐ค๐ฏ๐ฃ": {
"means": "bring or take back",
"type": ""
},
"๐๐ต๐ฃอ๐๐ค๐ถ": {
"means": "bring or take back",
"type": ""
},
"๐๐ต๐ฃอ๐๐ง๐": {
"means": "bring or take back",
"type": ""
},
"๐๐ต๐ฃอ๐๐ง๐ฃ": {
"means": "bring or take back",
"type": ""
},
"๐ก๐ชอ๐ป๐ฃ": {
"means": "wicked",
"type": ""
},
"๐ฌ๐ฃ๐ป๐ฃ": {
"means": "wicked",
"type": ""
},
"๐ช๐ก๐๐ฎ๐๐ป๐ฃ": {
"means": "quickly",
"type": ""
},
"๐ฃ๐บ๐ฃ๐บ๐ฃ๐ค๐": {
"means": "evil, evil things",
"type": ""
},
"๐ฐ๐๐ฐ๐อ ๐ก๐ชอ๐ป๐ฃอ": {
"means": "evil, evil things",
"type": ""
},
"๐ฉ๐อ๐ฉ๐ถ๐ก๐ถ๐ช๐ป๐ถ๐ก๐": {
"means": "tobacco bag",
"type": ""
},
"๐ฉ๐อ๐ฉ๐ฃอ๐ชอ๐ค๐ถ๐ป๐ถ": {
"means": "tobacco bag",
"type": ""
},
"๐ฎ๐ฐ๐": {
"means": "smooth",
"type": ""
},
"๐ฏ๐ฐ๐๐ก๐": {
"means": "bald",
"type": ""
},
"๐ต๐ถ๐ฏ๐ฐ๐": {
"means": "make bald or bare",
"type": ""
},
"๐ต๐ถ๐ฏ๐ฐ๐๐ฏ๐ฐ๐": {
"means": "make bald or bare",
"type": ""
},
"๐ฌ๐๐ฏ๐ฐ๐": {
"means": "bald head",
"type": ""
},
"๐ท๐๐ง๐ฃ๐ฏ๐ฐ๐": {
"means": "bald head",
"type": ""
},
"๐ฌ๐๐ฒ๐๐ฉ๐ฃ ๐ต๐๐ฐ๐อ ๐ฒ๐ฃ": {
"means": "saloon (bar)",
"type": ""
},
" ๐ฌ๐๐ฒ๐๐ฉ๐ฃ๐ฒ๐ฃ": {
"means": "bar",
"type": ""
},
"๐ช๐๐ป๐ถ": {
"means": "rack (barbecue rack)",
"type": ""
},
"๐ท๐๐ป๐ถ": {
"means": "rack (barbecue rack)",
"type": ""
},
"๐ช๐ก๐ช": {
"means": "bark (as a dog does)",
"type": ""
},
"๐ก๐ฃอ๐ฒ๐": {
"means": "dish",
"type": ""
},
"๐ธ๐ถ๐ก๐": {
"means": "hide (animal skin)",
"type": ""
},
"๐ค๐๐บ๐อ": {
"means": "bawl out",
"type": ""
},
"๐ฐ๐ช๐ฉ๐ฃ๐ต๐": {
"means": "bawl out",
"type": ""
},
"๐๐ฒ๐ฃ": {
"means": "exist",
"type": ""
},
"๐๐ฒ๐ฃ๐ค๐": {
"means": "be here or there",
"type": ""
},
"๐ก๐ฃอ๐ฎ๐ค๐": {
"means": "beads",
"type": ""
},
"๐ฐ๐ช๐ฒ๐ ๐ต๐ฃ๐ง๐๐ฒ๐ (?)": {
"means": "beads",
"type": ""
},
"๐ท๐๐ฌ๐ถ๐ฏ๐ค๐": {
"means": "beads",
"type": ""
},
"๐ก๐ชอ๐๐ฃอ๐ค๐": {
"means": "green beans",
"type": ""
},
"๐ก๐ชอ๐๐ฃอ๐ค๐ ๐ฐ๐ช๐ก๐ช ๐ป๐ฃอ": {
"means": "green beans",
"type": ""
},
"๐ก๐ฃอ": {
"means": "whiskers",
"type": ""
},
"๐ฃอ๐ก๐ฃอ": {
"means": "beard",
"type": ""
},
"๐ต๐๐ง๐ฃอ": {
"means": "handsome",
"type": ""
},
" ๐ช๐ฐ๐๐บ๐ ": {
"means": "beautiful",
"type": ""
},
"๐ป๐อ๐ฌ๐๐ฐ๐ช": {
"means": "beaver",
"type": ""
},
"๐ป๐๐ฌ๐": {
"means": "beaver",
"type": ""
},
"๐๐ป๐อ": {
"means": "lie down",
"type": ""
},
"๐ช๐ป๐อ": {
"means": "lie down",
"type": ""
},
"๐ค๐๐ท๐๐ฒ๐๐ป๐๐ฉ๐ฃ": {
"means": "beer",
"type": ""
},
"๐ฉ๐ฃ ๐๐ฌ๐ถ๐ธ๐ [๐r๐ฒ๐๐ฒ]": {
"means": "beer",
"type": ""
},
"๐ช๐ต๐ช๐ฐ๐อ": {
"means": "straight (virtuous)",
"type": ""
},
"๐ช๐ต๐ช๐ฐ๐อ๐ค๐ฃ๐ต๐": {
"means": "good behavior",
"type": ""
},
"๐ฃ๐ค'๐ช": {
"means": "burp",
"type": ""
},
" ๐ท๐๐ท๐๐ค'๐ช": {
"means": "belch",
"type": ""
},
"๐๐ป๐ฃอ": {
"means": "believe",
"type": ""
},
"๐๐ต๐": {
"means": "think about",
"type": ""
},
"๐ฃ๐ฐ๐": {
"means": "their, theirs",
"type": ""
},
"๐ฃ๐ฐ๐๐ฌ๐ฃ": {
"means": "their, theirs",
"type": ""
},
"๐ฃ๐ค'๐ถ๐ฒ๐": {
"means": "try hard, try one's best",
"type": ""
},
"๐ท๐๐ฏ๐ค๐อ": {
"means": "try hard, try one's best",
"type": ""
},
"๐ค๐ฃ๐ฉ๐ฃ": {
"means": "get well",
"type": ""
},
"๐ค๐ฃ๐ฐ๐อ๐ก๐": {
"means": "get well",
"type": ""
},
"๐ค๐ช๐ฐ๐": {
"means": "beyond",
"type": ""
},
"๐ค๐ช๐ฐ๐๐ก๐": {
"means": "yonder",
"type": ""
},
"๐ฒ๐๐ต๐ ๐๐ง๐ฃอ": {
"means": "bicycle",
"type": ""
},
"๐ฒ๐๐ง๐ฃอ ๐๐ง๐ฃอ": {
"means": "bicycle",
"type": ""
},
"๐ฐ๐อ": {
"means": "when (conjunction)",
"type": ""
},
"๐ฐ๐อ๐ค๐": {
"means": "large",
"type": ""
},
"๐ง๐อ๐ต๐": {
"means": "large",
"type": ""
},
" ๐ฐ๐๐ฉ๐อ๐ค'๐": {
"means": "bill (paper money)",
"type": ""
},
"๐ฐ๐๐ฉ๐อ๐ค'๐ ๐จ๐อ๐บ๐๐ฎ๐ค๐": {
"means": "paper money",
"type": ""
},
"๐ก๐๐ฌ๐": {
"means": "some",
"type": ""
},
"๐ก๐ถ๐ป๐ฃอ": {
"means": "a bit (of)",
"type": ""
},
"๐ค๐๐ฏ๐ฌ๐": {
"means": "bit (fragment)",
"type": ""
},
"๐ช๐ฏ๐ฌ๐๐ป๐ฃอ": {
"means": "pennies (small change)",
"type": ""
},
"๐ก๐๐ธ๐ฃอ": {
"means": "blanket",
"type": ""
},
"๐จ๐ฃอ": {
"means": "female",
"type": ""
},
"๐ช๐จ๐ฃ๐ป๐": {
"means": "quilt",
"type": ""
},
"๐ต๐๐ค'๐๐ต๐": {
"means": "take care of",
"type": ""
},
"๐ต๐ถ๐ต๐๐ง๐ฃอ": {
"means": "bless",
"type": ""
},
"๐ฃ๐ฎ๐ฐ๐": {
"means": "bless with",
"type": ""
},
"๐ฃ๐ฏ๐ฐ๐ช๐ฌ๐": {
"means": "bless with",
"type": ""
},
"๐ช๐ฌ๐๐ธ๐": {
"means": "bloom (verb)",
"type": ""
},
"๐ฌ๐๐ธ๐๐ฒ๐b๐ง๐ช๐ฎ๐ฎ๐ช๐จ (v๐rb)": {
"means": "bloom (verb)",
"type": ""
},
"๐ฃอ๐ป๐ฃอ๐๐ค๐ฃ๐ค๐": {
"means": "bobcat",
"type": ""
},
"๐ง๐ฃอ๐ธ๐ ": {
"means": "bobcat",
"type": ""
},
"๐ช๐ต๐ช๐ท๐๐ต๐": {
"means": "supervisor",
"type": ""
},
"๐ท๐๐ค๐๐ธ๐": {
"means": "supervisor",
"type": ""
},
"๐ช๐ต๐ช๐ต๐": {
"means": "boss an event",
"type": ""
},
"๐ช๐ค๐ฃ๐ก๐อ": {
"means": "oversee an event",
"type": ""
},
"๐ต๐ชอ๐ฌ๐": {
"means": "both of them",
"type": ""
},
"๐๐ต๐ชอ๐ฌ๐": {
"means": "both of them",
"type": ""
},
"๐ช๐ป๐ถ": {
"means": "cup",
"type": ""
},
"๐ช๐ป๐ถ ": {
"means": "bottle",
"type": ""
},
"๐ฐ๐๐ฉ๐ฃ๐๐ช๐ป๐ถ": {
"means": "bowl (noun)",
"type": ""
},
"๐ค๐๐ธ๐": {
"means": "branch (of a tree or a stream)",
"type": ""
},
"๐ค๐๐ธ๐ ๐ป๐ฃอ": {
"means": "branch (of a tree or a stream)",
"type": ""
},
"๐ป๐อ๐ธ๐๐ป๐ฃอ": {
"means": "small twigs of a tree or bush",
"type": ""
},
"๐ป๐อ๐ป๐ฃอ": {
"means": "small twigs of a tree or bush",
"type": ""
},
"๐ค๐๐ง๐๐ค๐": {
"means": "shatter (intransitive)",
"type": ""
},
"๐ธ๐ชอ": {
"means": "be broken",
"type": ""
},
"๐ค๐ฃ๐ธ๐ชอ": {
"means": "break one's own (e.g., a body part)",
"type": ""
},
"๐ง๐ฃ๐ธ๐ชอ": {
"means": "break one's own (e.g., a body part)",
"type": ""
},
"๐๐๐ต๐": {
"means": "broad",
"type": ""
},
"๐ค๐๐ธ๐ชอ (๐ท๐ก๐๐ฉ ๐ถ๐ฎ๐๐ฐ ๐ท๐ฃ๐ฐ๐ก ๐ฒ๐ช๐ฉ๐ฐ๐ฃ๐ฉ๐ถ๐๐ฐ๐ฃv๐ ๐๐ฎ๐ฌ๐๐ฒ๐ฐ ๐จ๐r๐ค๐r ๐๐ค๐ธ๐ ๐ชr ๐๐ฌ๐)": {
"means": "be broken",
"type": ""
},
"๐ต๐อ๐ฒ๐ ๐ต๐ถ๐ฎ๐๐ค๐ฃ": {
"means": "broken heart",
"type": ""
},
"๐ต๐อ๐ฒ๐ ๐ธ๐ชอ ": {
"means": "broken heart",
"type": ""
},
"๐ท๐ฃ๐ป๐ฃอ๐ต๐ '๐จy ๐ช๐ง๐ฐ๐r ๐๐ช๐ฐ๐ก๐r' (๐ฎ๐ฌ๐๐๐ค๐r ๐ฃ๐ฎ ๐จ๐๐ง๐)": {
"means": "brother (specifically, older brother of a male)",
"type": ""
},
"๐ต๐ฃ๐ป๐ฃอ๐ต๐ 'y๐ช๐ถr ๐ช๐ง๐ฐ๐r ๐๐ช๐ฐ๐ก๐r' (๐๐ฐ๐ฐr๐๐ฎ๐ฎ๐ ๐ฃ๐ฎ ๐จ๐๐ง๐)": {
"means": "brother (specifically, older brother of a male)",
"type": ""
},
"๐ฃ๐ป๐ฃอ๐ต๐ '๐ก๐ฃ๐ฎ ๐ช๐ง๐ฐ๐r ๐๐ช๐ฐ๐ก๐r'": {
"means": "brother (specifically, older brother of a male)",
"type": ""
},
"๐ท๐ฃ๐ฎ๐ชอ๐๐ป๐ฃอ '๐จy y๐ช๐ถ๐ฉg๐r ๐๐ช๐ฐ๐ก๐r' (๐ฎ๐ฌ๐๐๐ค๐r ๐ฃ๐ฎ f๐๐จ๐๐ง๐)": {
"means": "brother (specifically, younger brother of a female)",
"type": ""
},
"๐ต๐ฃ๐ฎ๐ชอ๐๐ป๐ฃอ 'y๐ช๐ถr y๐ช๐ถ๐ฉg๐r ๐๐ช๐ฐ๐ก๐r' (๐๐ฐ๐ฐr๐๐ฎ๐ฎ๐ ๐ฃ๐ฎ f๐๐จ๐๐ง๐)": {
"means": "brother (specifically, younger brother of a female)",
"type": ""
},
"๐ฃ๐ฎ๐ชอ๐๐ป๐ฃอ '๐ก๐r y๐ช๐ถ๐ฉg๐r ๐๐ช๐ฐ๐ก๐r'": {
"means": "brother (specifically, younger brother of a female)",
"type": ""
},
"๐ท๐ฃ๐ฎ๐ชอ๐ค๐ '๐จy y๐ช๐ถ๐ฉg๐r ๐๐ช๐ฐ๐ก๐r' (๐ฎ๐ฌ๐๐๐ค๐r ๐ฃ๐ฎ ๐จ๐๐ง๐)": {
"means": "brother (specifically, younger brother of a male)",
"type": ""
},
"๐ต๐ฃ๐ฎ๐ชอ๐ค๐ 'y๐ช๐ถr y๐ช๐ถ๐ฉg๐r ๐๐ช๐ฐ๐ก๐r' (๐๐ฐ๐ฐr๐๐ฎ๐ฎ๐ ๐ฃ๐ฎ ๐จ๐๐ง๐)": {
"means": "brother (specifically, younger brother of a male)",
"type": ""
},
"๐ฃ๐ฎ๐ชอ๐ค๐ '๐ก๐ฃ๐ฎ y๐ช๐ถ๐ฉg๐r ๐๐ช๐ฐ๐ก๐r'": {
"means": "brother (specifically, younger brother of a male)",
"type": ""
},
"๐ท๐ฃ๐ฐ๐อ๐ก๐ ๐ชr ๐ฐ๐อ๐ก๐ '๐จy ๐๐ช๐ฐ๐ก๐r-๐ฃ๐ฉ-๐ง๐๐ท' (๐ฎ๐ฌ๐๐๐ค๐r ๐ฃ๐ฎ ๐จ๐๐ง๐)": {
"means": "brother-in-law (specifically, brother-in-law of a male)",
"type": ""
},
"๐ต๐ฃ๐ฐ๐อ๐ก๐ 'y๐ช๐ถr ๐๐ช๐ฐ๐ก๐r-๐ฃ๐ฉ-๐ง๐๐ท' (๐๐ฐ๐ฐr๐๐ฎ๐ฎ๐ ๐ฃ๐ฎ ๐จ๐๐ง๐)": {
"means": "brother-in-law (specifically, brother-in-law of a male)",
"type": ""
},
"๐ฃ๐ฐ๐อ๐ก๐ '๐ก๐ฃ๐ฎ ๐๐ช๐ฐ๐ก๐r-๐ฃ๐ฉ-๐ง๐๐ท'": {
"means": "brother-in-law (specifically, brother-in-law of a male)",
"type": ""
},
"๐ท๐ฃ๐ฏ๐ฃ๐ค'๐ '๐จy ๐๐ช๐ฐ๐ก๐r-๐ฃ๐ฉ-๐ง๐๐ท' (๐ฎ๐ฌ๐๐๐ค๐r ๐ฃ๐ฎ f๐๐จ๐๐ง๐)": {
"means": "brother-in-law (specifically, brother-in-law of a female)",
"type": ""
},
"๐ต๐ฃ๐ฏ๐ฃ๐ค'๐ 'y๐ช๐ถr ๐๐ช๐ฐ๐ก๐r-๐ฃ๐ฉ-๐ง๐๐ท' (๐๐ฐ๐ฐr๐๐ฎ๐ฎ๐ ๐ฃ๐ฎ f๐๐จ๐๐ง๐)": {
"means": "brother-in-law (specifically, brother-in-law of a female)",
"type": ""
},
"๐ฃ๐ฏ๐ฃ๐ค'๐ '๐ก๐r ๐๐ช๐ฐ๐ก๐r-๐ฃ๐ฉ-๐ง๐๐ท'": {
"means": "brother-in-law (specifically, brother-in-law of a female)",
"type": ""
},
"๐บ๐ฃ๐ก๐ฃ": {
"means": "yellow",
"type": ""
},
"๐บ๐ฃ๐บ๐ฃ": {
"means": "brown (adjective)",
"type": ""
},
"๐ป๐ฃ๐ก๐ฃ": {
"means": "brown (adjective)",
"type": ""
},
"๐ค๐ฃ๐ฌ๐ฏ๐": {
"means": "curry the mane or coat of an animal",
"type": ""
},
"๐ท๐๐ค๐๐ฌ๐ฏ๐": {
"means": "curry the mane or coat of an animal",
"type": ""
},
"๐ฐ๐": {
"means": "toward",
"type": ""
},
"๐ฐ๐ ๐ฐ๐อ๐ค๐": {
"means": "buck",
"type": ""
},
"๐ต๐ช๐ธ๐": {
"means": "buffalo",
"type": ""
},
"๐ฒ๐": {
"means": "positional articles [posit]",
"type": ""
},
"๐ก๐ถ๐ฐ๐อ๐ค๐": {
"means": "many",
"type": ""
},
"๐ก๐ถ๐ท๐๐ง๐ฃ": {
"means": "many",
"type": ""
},
"๐ช๐ฎ๐": {
"means": "burn (verb)",
"type": ""
},
"๐ฐ๐๐ต๐ฃอ๐ค๐ ๐ค๐๐ธ๐": {
"means": "burn (verb)",
"type": ""
},
"๐ฐ๐๐ง๐ฃอ": {
"means": "burn (verb)",
"type": ""
},
"๐ท๐๐ท๐๐ค'๐ช": {
"means": "burp",
"type": ""
},
"๐อ๐ป๐ฃ": {
"means": "or",
"type": ""
},
"๐ฉ๐อ [๐ฃ๐ฉ๐ฐ๐rj]": {
"means": "but",
"type": ""
},
"๐ฃอ๐ง๐๐ก๐": {
"means": "buttocks",
"type": ""
},
"๐ชอ๐ฌ๐": {
"means": "buttocks",
"type": ""
},
"๐ฃ๐ฌ๐ฏ๐": {
"means": "pass by",
"type": ""
},
"๐๐ท๐๐ป๐ฃอ ๐ฉ๐อ๐ค๐": {
"means": "by car",
"type": ""
},
"๐ช๐ต๐ฃ๐ฐ๐อ ๐ช๐ง๐ฃอ": {
"means": "by car",
"type": ""
},
"๐๐ท๐๐ป๐ฃอ": {
"means": "by oneself",
"type": ""
},
"๐ช๐ค๐อ๐ฒ๐ฃ": {
"means": "single",
"type": ""
},
"๐จ๐อ๐บ๐๐ฃ๐ ๐ก๐ฃ๐ต๐": {
"means": "call by phone",
"type": ""
},
"๐ช๐ค๐ฃ๐": {
"means": "call by phone",
"type": ""
},
"๐๐ฒ๐ฃ": {
"means": "make camp",
"type": ""
},
"๐ต๐อ๐ฒ๐๐ป๐ฃ": {
"means": "cannot",
"type": ""
},
"๐ต๐ถ๐ฒ'๐๐ค๐": {
"means": "cannot",
"type": ""
},
"๐ฐ๐๐ฉ๐อ๐ค'๐": {
"means": "playing cards (noun)",
"type": ""
},
"๐ฐ๐๐ฉ๐อ๐ค'๐ ๐ต๐ฃ๐ก๐ฃ๐ฒ๐": {
"means": "playing cards (noun)",
"type": ""
},
"๐๐ฐ๐ชอ๐ฌ๐": {
"means": "take care of",
"type": ""
},
"๐ช๐ค๐๐ฏ๐อ": {
"means": "take care of",
"type": ""
},
"๐ช๐ค๐๐ฏ๐": {
"means": "take care of",
"type": ""
},
"๐ท๐๐ฉ๐๐ฏ๐ ": {
"means": "take care of",
"type": ""
},
"๐๐ต๐ฃอ๐๐ต๐": {
"means": "take away",
"type": ""
},
"๐ฃอ": {
"means": "wear",
"type": ""
},
"๐ค'๐ฃอ": {
"means": "carry",
"type": ""