forked from rc0/jbofihe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
places.dat
6907 lines (6907 loc) · 219 KB
/
places.dat
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
################################################################################
# $Header$
#
# This file was automatically generated (badly!) from the 'gismu' file
# at ftp://xiron.pc.helsinki.fi/pub/lojban/wordlists. Uncommenting
# the entries and filling them in is work in progress. Note that
# quite a lot of the gismu have come out with the wrong numbers of
# places, this has to be manually fixed.
#
# x1 utters verbally/says/phonates/speaks [vocally makes sound] x2
bacru1:A;utter
bacru2:D;uttered sound
#
# x1 is a banana/plantain [fruit/plant] of species/breed x2
badna1:D;banana
badna2:S;banana species
badna2t:species
#
# x1 is sad/depressed/dejected/[unhappy/feels sorrow/grief] about x2 (abstraction)
badri1:P;sad
badri2:D;reason* for sadness
badri2t:reason
#
# x1 runs on surface x2 using limbs x3 with gait x4
bajra1:A;run
bajra2:D;running surface
bajra3:D;running limb
bajra4:S;running gait
#
# x1 is a bundle/package/cluster/clump/pack [shape/form] containing x2, held together by x3
bakfu1:D;bundle
bakfu2:R;in bundle
bakfu3:A;hold* bundle
#
# x1 is a cow/cattle/kine/ox/[bull/steer/calf] [beef-producer/bovine] of species/breed x2
bakni1:D;cattle
bakni2:S;cattle species
bakni2t:species
#
# x1 is a quantity of/contains/is made of chalk from source x2 in form x3
bakri1:D;chalk
bakri2:D;chalk source
bakri2t:from source
bakri3:D;chalk form
bakri3t:in form
#
# x1 is a bucket/pail/can/deep, solid, wide-topped container of contents x2, made of material x3
baktu1:D;bucket
baktu2:S;bucket contents
baktu2t:contents
baktu3:S;bucket material
baktu3t:of material
#
# x1 is a bulb [body-part] of plant/species x2; [metaphor: rounded, bulgy]
balji1:D;bulb
balji2:S;bulb species
balji2t:species
#
# x1 is a balcony/overhang/ledge/shelf of building/structure x2
balni1:D;balcony
balni2:D;building* with balcony
balni2t:of building
#
# x1 is a blade of tool/weapon x2
balre1:D;blade
balre2:D;bladed weapon
balre2t:of weapon
#
# x1 is in the future of/later than/after x2 in time sequence; x1 is latter; x2 is former
balvi1:P;later
balvi2:P;earlier
#
# x1 exceeds/is beyond limit/boundary x2 from x3 in property/amount x4 (ka/ni)
bancu1:A;exceed
bancu2:D;exceeded limit
bancu3:S;reference point for excess
bancu3t:by reference
bancu4:D;excess property
bancu4t:in property
#
# x1 (event) defends/protects x2 (object/state) from threat/peril/potential x3 (event)
bandu1:A;protect
bandu2:P;protected
bandu3:D;threat
#
# x1 is an amphibian of species/breed x2
banfi1:D;amphibian
banfi2:S;amphibian species
banfi2t:species
#
# x1 is a/the language/dialect used by x2 to express/communicate x3 (si'o/du'u, not quote)
bangu1:D;language
bangu2:A;use* language
bangu3:R;communicated* by language
bangu3t:to express
#
# x1 is great/grand in property x2 (ka) by standard x3
banli1:P;great
banli2:D;property* of greatness
banli3:D;standard* of greatness
#
# x1 grows/expands [an increasing development] to size/into form x2 from x3
banro1:A;expand
banro2:D;size*/form* after expansion
banro2t:into form
banro3:D;size*/form* before expansion
banro3t:from form
#
# x1 is a bank owned by/in banking system x2 for banking function(s) x3 (event)
banxa1:D;bank
banxa2:D;banking system
banxa2t:in system
banxa3:D;banking function
banxa3t:for function
#
# x1 (object) suffices/is enough/sufficient for purpose x2 under conditions x3
banzu1:P;sufficient
banzu2:D;purpose* for which sufficient
banzu3:D;condition* for sufficiency
#
# x1 [force] (ka) forces/compels event x2 to occur; x1 determines property x2 to manifest
bapli1:A;compel
bapli2:R;compelled to occur
bapli2t:compelled
#
# x1 is big/large in property/dimension(s) x2 (ka) as compared with standard/norm x3
barda1:P;large
barda2:D;large dimension
barda2t:dimension
barda3:D;largeness standard
barda3t:standard
#
# x1 arches/curves over/around x2 and is made of x3; x1 is an arch over/around x2 of material x3
bargu1:P;curved
bargu2:P;surrounded by curve
bargu2t:around
bargu3:S;arch material
bargu3t:of material
#
# x1 is a tavern/bar/pub serving x2 to audience/patrons x3
barja1:D;tavern
barja2:R;served by tavern
barja2t:serving
barja3:D;patron* of tavern
barja3t:to patrons
#
# x1(s) is a/are mark(s)/spot(s) on x2 of material x3
barna1:D;mark
barna2:P;marked
barna3:S;mark material
barna3t:of material
#
# x1 is on the outside of x2; x1 is exterior to x2
bartu1:P;outside
bartu2:D;non-container
#
# x1 emphasizes/accentuates/gives emphasis/stress/accent to x2 by (action) x3
basna1:A;emphasize
basna2:P;emphasized
basna3:D;emphatic action
#
# x1 replaces/substitutes for/instead of x2 in circumstance x3; x1 is a replacement/substitute
basti1:D;substitute
basti2:P;substituted
basti3:S;substitution circumstances
basti3t:in circumstances
#
# x1 bites/pinches x2 on/at specific locus x3 with x4
batci1:A;bite
batci2:P;bitten
batci3:S;locus of bite
batci3t:at locus
batci4:D;biting tool
batci4t:with tool
#
# x1 is a button/knob/[handle] on/for item x2, with purpose x3, made of material x4
batke1:D;button
batke2:R;having button
batke3:D;purpose* of button
batke3t:for purpose
batke4:S;button material
batke4t:of material
#
# x1 is a quantity of barley [grain] of species/strain x2
bavmi1:S;barley
bavmi2:S;barley species
bavmi2t:of species
#
# x1 reflects Malay-Indonesian common language/culture in aspect x2
baxso1:P;Malay
baxso2:D;Malay aspect
#
# x1 is foolish/silly in event/action/property [folly] (ka) x2; x1 is a boob
bebna1:P;foolish
bebna2:D;foolish act
#
# x1 reflects North American culture/nationality/geography in aspect x2
bemro1:P;North American
bemro2:D;North American aspect
#
# x1 is a crew/team/gang/squad/band of persons x2 directed/led by x3 organized for purpose x4
bende1:D;team
bende2:D;team member
bende3:D;team leader
bende4:D;team purpose
#
# x1 reflects Bengali/Bangladesh culture/nationality/language in aspect x2
bengo1:P;Bengali
bengo2:D;Bengali aspect
#
# x1 transfers/sends/transmits x2 to receiver x3 from transmitter/origin x4 via means/medium x5
benji1:A;send
benji2:P;sent
benji3:D;receiver
benji4:D;transmitter
benji5:D;transmission means
benji5t:by means
#
# x1 is a son of mother/father/parents x2 [not necessarily biological]
bersa1:D;son
bersa2:D;parent* of son
#
# x1 is to the north/northern side [right-hand-rule pole] of x2 according to frame of reference x3
berti1:P;to the north
berti2:P;to the south
berti3:D;northness reference frame
berti3t:reference frame
#
# x1 is a/the brain [body-part] of x2; [metaphor: intelligence, mental control]
besna1:D;brain
besna2:D;body* with brain
besna2t:of body
#
# x1 is a/the abdomen/belly/lower trunk [body-part] of x2; [metaphor: midsection]
betfu1:D;abdomen
betfu2:D;body* with abdomen
betfu2t:of body
#
# x1 is a tragedy/disaster/tragic for x2
betri1:D;tragedy
betri2:A;suffer* tragedy
betri2t:sufferer
#
# x1 carries/hauls/bears/transports cargo x2 to x3 from x4 over path x5; x1 is a carrier/[porter]
bevri1:A;carry
bevri2:D;carried cargo
bevri3:D;destination* of carrying
bevri4:D;origin* of carrying
bevri5:D;route* of carrying
#
# x1 is a bead/pebble [shape/form] of material x2
bidju1:D;bead
bidju2:D;bead material
bidju2t:material
#
# x1 is a bee/wasp/hornet of species/breed x2
bifce1:D;bee
bifce2:S;bee species
bifce2t:of species
#
# x1 whips/lashes/snaps [a sudden violent motion]
bikla1:A;lash
#
# x1 is bound/obliged to/has the duty to do/be x2 in/by standard/agreement x3; x1 must do x2
bilga1:P;obliged
bilga2:D;duty
bilga3:S;standard for obligation
#
# x1 is ill/sick/diseased with symptoms x2 from disease x3
bilma1:P;ill
bilma2:D;symptom
bilma3:D;disease
#
# x1 is military/regimented/is strongly organized/prepared by system x2 for purpose x3
bilni1:P;regimented
bilni2:D;regimenting system
bilni2t:by system
bilni3:D;purpose* of regimentation
bilni3t:for purpose
#
# x1 reflects Indonesian culture/nationality/language in aspect x2
bindo1:P;Indonesian
bindo2:D;Indonesian aspect
#
# x1 insures/indemnifies x2 (person) against peril x3 (event) providing benefit(s) x4 (event)
binra1:A;indemnify
binra2:P;indemnified
binra3:D;indemnified peril
binra3t:against peril
binra4:D;benefit* from indemnity
binra4t:providing benefit
#
# x1 becomes/changes/converts/transforms into x2 under conditions x3
binxo1:A;become
binxo2:D;result* of becoming
binxo3:D;becoming condition
#
# x1 is made of/contains/is a amount of beer/ale/brew brewed from x2
birje1:S;beer
birje2:R;brewed to make beer
birje2t:brewed from
#
# x1 is a/the arm [body-part] of x2; [metaphor: branch with strength]
birka1:D;arm
birka2:D;body* having arm
#
# x1 is certain/sure/positive/convinced that x2 is true
birti1:P;convinced
birti2:P;convincing
#
# x1 is a quantity of/is made of/contains ice [frozen crystal] of composition/material x2
bisli1:S;ice
bisli2:S;ice material
bisli2t:of material
#
# x1 is a wall/fence separating x2 and x3 (unordered) of/in structure x4
bitmu1:D;wall*/fence*
bitmu2:R;separated by wall
bitmu2t:separated
bitmu3:R;separated by wall
bitmu3t:separated
bitmu4:D;structure* with wall
bitmu4t:in structure
#
# x1 is white/very-light colored [color adjective]
blabi1:P;white
#
# x1 is a quantity of/is made of/contains glass of composition including x2
blaci1:S;glass
blaci2:S;glass composition
blaci2t:of composition
#
# x1 is blue [color adjective]
blanu1:P;blue
#
# x1 is a block [3-dimensional shape/form] of material x2, surfaces/sides x3
bliku1:D;block
bliku2:S;block material
bliku3:D;block side
#
# x1 is a boat/ship/vessel [vehicle] for carrying x2, propelled by x3
bloti1:D;boat*/ship*
bloti2:D;boat/ship cargo
bloti3:A;propel* boat/ship
#
# x1 is a ball/sphere/orb/globe [shape/form] of material x2; x1 is a spherical object [made of x2]
bolci1:D;sphere
bolci2:S;sphere material
bolci2t:of material
#
# x1 is a/the bone/ivory [body-part], performing function x2 in body of x3; [metaphor: calcium]
bongu1:D;bone
bongu2:D;bone function
bongu3:D;body* with bone
bongu3t:of body
#
# x1 is a bottle/jar/urn/flask/closable container for x2, made of material x3 with lid x4
botpi1:D;flask
botpi2:S;flask contents
botpi2t:for contents
botpi3:S;flask material
botpi3t:of material
botpi4:D;flask lid
botpi4t:with lid
#
# x1 is a sheet/foil/blanket [2-dimensional shape/form flexible in 3 dimensions] of material x2
boxfo1:D;sheet
boxfo2:S;sheet material
boxfo2t:of material
#
# x1 is a wave [periodic pattern] in medium x2, wave-form x3, wave-length x4, frequency x5
boxna1:D;wave
boxna2:S;wave medium
boxna2t:in medium
boxna3:D;waveform
boxna4:D;wavelength
boxna5:D;frequency
#
# x1 is an enemy/opponent/adversary/foe of x2 in struggle x3
bradi1:D;enemy
bradi2:R;with enemy
bradi3:D;struggle* involving enemies
bradi3t:in struggle
#
# x1 is hail/sleet/freezing rain/solid precipitation of material/composition including x2
bratu1:S;solid precipitation
bratu2:S;solid precipitation composition
bratu2t:of composition
#
# x1 reflects Brazilian culture/nationality/language in aspect x2
brazo1:P;Brazilian
brazo2:D;Brazilian aspect
#
# x1 is ready/prepared for x2 (event)
bredi1:P;ready
bredi2:P;prepared for
#
# x1 (text) is a predicate relationship with relation x2 among arguments (sequence/set) x3
bridi1:D;predicate text
bridi2:D;predicate relation
bridi3:D;predicate argument
#
# x1 is a breeze/wind/gale from direction x2 with speed x3; x1 blows from x2
brife1:D;wind
brife2:D;wind direction
brife3:D;wind speed
#
# x1 is an office/bureau/work-place of worker x2 at location x3
briju1:D;office
briju2:D;office worker
briju2t:worker
briju3:D;office location
briju3t:location
#
# x1 reflects British/United Kingdom culture/nationality in aspect x2
brito1:P;British
brito2:D;aspect* of Britishness
#
# 1st assignable variable predicate (context determines place structure)
#broda1:DSAP;
#broda2:DSAP;
#
# 2nd assignable variable predicate (context determines place structure)
#brode1:DSAP;
#brode2:DSAP;
#
# 3rd assignable variable predicate (context determines place structure)
#brodi1:DSAP;
#brodi2:DSAP;
#
# 4th assignable variable predicate (context determines place structure)
#brodo1:DSAP;
#brodo2:DSAP;
#
# 5th assignable variable predicate (context determines place structure)
#brodu1:DSAP;
#brodu2:DSAP;
#
# x1 is brother of/fraternal to x2 by bond/tie/standard/parent(s) x3; [not necess. biological]
bruna1:D;brother
bruna2:P;having brother
bruna3:D;bond* of brotherhood
#
# x1 pertains to the Buddhist culture/religion/ethos in aspect x2
budjo1:P;Buddhist
budjo2:D;Buddhist aspect
#
# x1 is an amount of cloth/fabric of type/material x2
bukpu1:S;cloth
bukpu2:S;cloth material
bukpu2t:of material
#
# x1 is foggy/misty/covered by a fog/mist/vapor of liquid x2
bumru1:P;foggy
bumru2:S;fog liquid
bumru2t:of liquid
#
# x1 is x2 (def. 1) local weight unit(s) [non-metric], standard x3, subunits [e.g. ounces] x4
bunda1:R;having non-metric weight
bunda1t:weighed thing
bunda2:S;number of non-metric weight units
bunda2t:weight
bunda3:S;non-metric weighing standard
bunda3t:by standard
bunda4:D;weight subunit
bunda4t:with subunit
#
# x1 is brown/tan [color adjective]
bunre1:P;brown
#
# x1 is a brush for purpose x2 (event) with bristles x3
burcu1:D;brush
burcu2:D;brush purpose
burcu2t:for purpose
burcu3:S;bristles
#
# x1 is embarrassed/disconcerted/flustered/ill-at-ease about/under conditions x2 (abstraction)
burna1:P;embarrassed
burna2:S;conditions for embarrassment
burna2t:under conditions
#
# x1 is current at/in the present of/during/concurrent/simultaneous with x2 in time
cabna1:P;current
cabna2:D;reference* for being current
#
# x1 is apparatus/mechanism/device/equipment for function x2 controlled/[triggered] by x3 (agent)
cabra1:S;apparatus
cabra2:D;function* of apparatus
cabra3:A;control* apparatus
#
# x1 is x2 hours in duration (default is 1 hour) by standard x3
cacra1:R;measured in hours
cacra2:S;number of hours
cacra3:S;standard for hour
cacra3t:by standard
#
# x1 walks/strides/paces on surface x2 using limbs x3
cadzu1:A;walk
cadzu2:D;walking surface
cadzu2t:on surface
cadzu3:D;walking limbs
cadzu3t:using limbs
#
# x1 (event) often/frequently/commonly/customarily occurs/recurs by standard x2
cafne1:P;frequent
cafne2:D;standard* for being frequent
#
# x1 is made of/contains/is a quantity of chocolate/cocoa
cakla1:S;chocolate
#
# x1 is a shell/husk [hard, protective covering] around x2 composed of x3
calku1:D;shell
calku2:R;enclosed by shell
calku2t:enclosing
calku3:S;shell composition
calku3t:of composition
#
# x1 vanishes/disappears from location x2; x1 ceases to be observed at x2 using senses/sensor x3
canci1:A;vanish
canci2:D;location* vanished from
canci2t:from location
canci3:D;sensor* no longer sensing
canci3t:affected sensor
#
# x1 is idle/at rest/inactive
cando1:P;idle
#
# x1 is a farm/ranch at x2, farmed by x3, raising/producing x4; (adjective:) x1 is agrarian
cange1:D;farm
cange1a:agrarian
cange2:D;farm location
cange2t:at location
cange3:D;farmer
cange4:S;farm produce
#
# x1 exchanges/trades/barters commodity x2 for x3 with x4; x1, x4 is a trader/merchant/businessman
canja1:A;trade
canja2:D;traded commodity
canja3:S;remuneration for trade
canja3t:in exchange for
canja4:D;trading partner
canja4t:trade with
#
# x1 is a window/portal/opening [portal] in wall/building/structure x2
canko1:D;window
canko2:D;windowed structure
canko2t:in structure
#
# x1 is space/volume/region/room [at-least-3-dimensional area] occupied by x2
canlu1:S;space
canlu2:A;occupy space
#
# x1 is a shovel/spade [bladed digging implement] for digging x2
canpa1:D;shovel
canpa2:R;dug by shovel
#
# x1 is a quantity of/contains/is made of sand/grit from source x2 of composition including x3
canre1:S;sand/grit
canre2:D;sand/grit source
canre3:S;sand/grit composition
#
# x1 is a/the gut(s)/entrails/intestines/viscera/innards/digestive system [body-part] of x2
canti1:S;guts
canti2:D;body* with guts
canti2t:of body
#
# x1 is a cart/carriage/wagon [wheeled vehicle] for carrying x2, propelled by x3
carce1:D;carriage
carce2:R;carried by carriage
carce3:S;means of propelling carriage
carce3t:propelled by
#
# x1 is intense/bright/saturated/brilliant in property (ka) x2 as received/measured by observer x3
carmi1:P;intense
carmi2:D;intense property
carmi3:A;observe* intensity
#
# x1 turns/rotates/revolves around axis x2 in direction x3
carna1:A;rotate
carna2:D;rotation axis
carna2t:about axis
carna3:D;rotation direction
carna3t:in direction
#
# x1 is a chart/diagram/map of/about x2 showing formation/data-points x3
cartu1:D;chart
cartu2:D;chart topic
cartu2t:about topic
cartu3:S;chart data
#
# x1 rains/showers/[precipitates] to x2 from x3; x1 is precipitation [not limited to 'rain']
carvi1:S;precipitation
carvi2:D;precipitation target
carvi3:D;precipitation source
#
# x1(s) (mass normally, but 1 individual/jo'u possible) discuss(es)/talk(s) about topic/subject x2
casnu1:A;discuss
casnu2:D;discussion topic
#
# x1 [agent] shoves/pushes x2 at locus x3
catke1:A;push
catke2:P;pushed
catke3:S;locus of pushing
#
# x1 looks at/examines/views/inspects/regards/watches/gazes at x2
catlu1:A;look* at
catlu2:P;looked at
#
# x1 has authority/is an official in/on/over matter/sphere/persons x2 derived on basis x3
catni1:R;with authority
catni2:R;under authority
catni3:S;basis of authority
#
# x1 (agent) kills/slaughters/murders x2 by action/method x3
catra1:A;kill
catra2:P;killed
catra3:S;method of killing
#
# x1 is shallow in extent in direction/property x2 away from reference point x3 by standard x4
caxno1:P;shallow
caxno2:S;shallow direction
caxno3:D;reference point* for shallowness
caxno3t:from reference point
caxno4:S;standard of shallowness
caxno4t:by standard
#
# x1 launches/fires/shoots projectile/missile x2, propelled by x3 [propellant/propulsion]
cecla1:A;launch
cecla2:D;projectile
cecla3:S;propulsion means
#
# x1 is a community/colony of organisms x2
cecmu1:D;community
cecmu2:D;organism* in community
cecmu2t:with organism
#
# x1 is an era/epoch/age characterized by x2 (event/property/interval/idea)
cedra1:D;era
cedra2:P;characterising an era
#
# x1 varies/changes in property/quantity x2 (ka/ni) in amount/degree x3 under conditions x4
cenba1:A;vary
cenba2:D;variant property
cenba2t:in property
cenba3:D;degree* of variation
cenba3t:in degree
cenba4:S;conditions for variation
cenba4t:under conditions
#
# x1 is holy/sacred to person/people/culture/religion/cult/group x2
censa1:P;holy
censa2:A;consider* holy(ness)
#
# x1 is a hundredth [1/100; 1x10**-2] of x2 in dimension/aspect x3 (default is units)
centi1:D;hundredth
centi2:R;having hundredth
centi3:D;hundredth aspect
centi3t:in aspect
#
# x1 is an heir to/is to inherit x2 (object/quality) from x3 according to rule x4
cerda1:D;heir
cerda2:R;inherited
cerda3:R;having heir
cerda4:D;rule* for inheritance
cerda4t:by rule
#
# x1 is a morning [dawn until after typical start-of-work for locale] of day x2 at location x3
cerni1:D;morning
cerni2:D;day* of morning
cerni2t:day
cerni3:D;location* of morning
cerni3t:location
#
# x1 is an expert/pro/has prowess in/is skilled at x2 (event/activity) by standard x3
certu1:P;skilled
certu2:P;requiring skill
certu3:S;standard of skill
#
# x1 is a/the god/deity of people(s)/religion x2 with dominion over x3 [sphere]; x1 is divine
cevni1:D;god
cevni2:D;people* having god
cevni3:D;sphere* of god
#
# x1 [state/event/process] commences/initiates/starts/begins to occur; (intransitive verb)
cfari1:A;commence
#
# x1 is a work of fiction about plot/theme/subject x2/under convention x2 by author x3
cfika1:S;fiction
cfika2:D;fiction plot
cfika3:D;author* of fiction
cfika3t:by author
#
# x1 (property - ka) is a flaw/fault/defect in x2 causing x3
cfila1:D;defect
cfila2:P;defective
cfila3:R;caused by defect
#
# x1 is a wedge [shape/form/tool] of material x2
cfine1:D;wedge
cfine2:S;wedge material
#
# x1 (event/state) confuses/baffles x2 [observer] due to [confusing] property x3 (ka)
cfipu1:A;confuse
cfipu2:P;confused
cfipu3:D;confusing property
#
# x1 is blood/vital fluid of organism x2
ciblu1:D;vital fluid
ciblu2:D;organism* with vital fluid
ciblu2t:of organism
#
# x1 is cyan/turquoise/greenish-blue [color adjective]
cicna1:D;cyan
#
# x1 is food/feed/nutriment for x2; x1 is edible/gives nutrition to x2
cidja1:S;food
cidja2:P;fed
#
# x1 is a/the knee/elbow/knuckle [hinged joint, body-part] of limb x2 of body x3
cidni1:D;knee*/elbow*
cidni2:D;hinged limb
cidni3:D;body* with hinged limb
cidni3t:of body
#
# x1 is a quantity of/contains/is made of hydrogen (H); [metaphor: light, flammable]
cidro1:S;hydrogen
#
# x1 is an infant/baby [helpless through youth/incomplete development] of species x2
cifnu1:D;infant
cifnu2:S;species of infant
cifnu2t:of species
#
# x1 is a/the gland [body-part] secreting x2, of body x3; x2 is a secretion of x1
cigla1:D;gland
cigla2:D;secretion
cigla3:D;body* with gland
cigla3t:of body
#
# (adjective:) x1 is awake/alert/conscious
cikna1:P;awake
#
# x1 repairs/mends/fixes x2 for use x3
cikre1:A;repair
cikre2:P;repaired
cikre3:D;use* for repair
#
# x1 (person) explains x2 (event/state/property) to x3 with explanation x4 (du'u)
ciksi1:A;explain
ciksi2:P;explained
ciksi3:A;receive* explanation
ciksi4:D;explanation
#
# (adjective:) x1 is wild/untamed
cilce1:P;wild
#
# x1 is moist/wet/damp with liquid x2
cilmo1:P;moist
cilmo2:D;moistening liquid
cilmo2t:with liquid
#
# x1 learns x2 (du'u) about subject x3 from source x4 (obj./event) by method x5 (event/process)
cilre1:A;learn
cilre2:R;learned
cilre3:D;learned subject*
cilre4:D;source* for learning
cilre5:D;method* of learning
#
# x1 is a thread/filament/wire [shape/form] of material x2
cilta1:D;thread
cilta2:S;thread material
cilta2t:of material
#
# x1 (property - ka) is a dimension of space/object x2 according to rules/model x3
cimde1:D;dimension
cimde2:D;dimensioned object
cimde2t:of object
cimde3:D;dimension model
cimde3t:according to
#
# x1 is infinite/unending/eternal in property/dimension x2, to degree x3 (quantity)/of type x3
cimni1:P;eternal
cimni2:D;eternal property
cimni3:S;eternal degree
cimni3t:to degree
#
# x1 (agent) kisses/busses x2 at locus x3
cinba1:A;kiss
cinba2:P;kissed
cinba3:S;locus of kiss
#
# x1 is an oak, a type of tree of species/strain x2
cindu1:D;oak
cindu2:S;oak species
cindu2t:of species
#
# x1 is a lion/[lioness] of species/breed x2
cinfo1:D;lion
cinfo2:S;lion species
cinfo2t:of species
#
# x1 is a wrinkle/crease/fold [shape/form] in x2
cinje1:D;crease
cinje2:P;creased
#
# x1 is an insect/arthropod of species x2; [bug/beetle]
cinki1:D;insect
cinki2:S;insect species
cinki2t:of species
#
# x1 is thin in direction/dimension x2 by standard x3; [relatively short in smallest dimension]
cinla1:P;thin
cinla2:D;direction* of thinness
cinla2t:thin direction
cinla3:D;standard* of thinness
cinla3t:by standard
#
# x1 feels emotion x2 (ka) about x3
cinmo1:P;emotional
cinmo2:D;emotion
cinmo3:D;emotion subject
cinmo3t:about
#
# x1 (abstraction) interests/is interesting to x2; x2 is interested in x1
cinri1:P;interesting
cinri2:P;interested
#
# x1 in activity/state x2 exhibits sexuality/gender/sexual orientation x3 (ka) by standard x4
cinse1:P;sexual
cinse2:D;sexual activity
cinse3:S;sexuality
cinse4:D;sexual standard
#
# x1 [material] is a paint of pigment/active substance x2, in a base of x3
cinta1:S;paint
cinta2:D;pigment
cinta3:S;paint base
#
# x1 is a/are tong(s)/chopsticks/pincers/tweezers/pliers [tool/body-part] for x2 to pinch x3
cinza1:S;tongs
cinza2:R;using tongs
cinza3:R;pinched by tongs
#
# x1 is a bird/avian/fowl of species x2
cipni1:D;bird
cipni2:S;bird species
cipni2t:of species
#
# x1 (process/event) is a test for/proof of property/state x2 in subject x3 (individ./set/mass)
cipra1:D;test
cipra2:D;tested property
cipra3:P;tested
#
# x1 loses person/thing x2 at/near x3; x1 loses property/feature x2 in conditions/situation x3
cirko1:A;lose
cirko2:P;lost
cirko3:D;location* of loss
#
# x1 is a quantity of/contains cheese/curd from source x2
cirla1:S;cheese
cirla2:D;cheese source
#
# x1 inscribes/writes x2 on display/storage medium x3 with writing implement x4; x1 is a scribe
ciska1:A;write
ciska2:P;written
ciska3:D;writing medium
ciska4:D;writing implement
#
# x1 smiles/grins (facial expression)
cisma1:A;smile
#
# x1 (mass) system interrelated by structure x2 among components x3 (set) displaying x4 (ka)
ciste1:D;system
ciste2:D;system structure
ciste3:D;system component
ciste4:D;system property
#
# x1 eats/ingests/consumes (transitive verb) x2
citka1:A;eat
citka2:P;eaten
#
# x1 is young/youthful [relatively short in elapsed duration] by standard x2
citno1:P;young
citno2:D;standard* for youth
#
# x1 is a history of x2 according to x3 (person)/from point-of-view x3
citri1:S;history
citri2:R;having history
citri3:D;view* of history
#
# x1 is a season/is seasonal [cyclical interval], defined by interval/property x2, of year(s) x3
citsi1:D;season
citsi2:D;season interval
citsi3:D;season year
#
# x1 is a louse/flea [blood-sucking arthropod] of species/breed x2, parasitic on x3
civla1:D;flea
civla2:S;flea species
civla2t:of species
civla3:D;flea victim
#
# x1 is strange/weird/deviant/bizarre/odd to x2 in property x3 (ka)
cizra1:P;strange
cizra2:A;consider* strange
cizra3:D;strange property
#
# x1 is a quantity of/contains/is made of rubber/latex from source x2 of composition including x3
ckabu1:S;rubber
ckabu2:D;rubber source
ckabu2t:from source
ckabu3:D;rubber composition
ckabu3t:of composition
#
# x1 is made of/contains/is a quantity of coffee from source/bean/grain x2
ckafi1:S;coffee
ckafi2:D;coffee source
ckafi2t:from source
#
# x1 has/is characterized by property/feature/trait/aspect/dimension x2 (ka); x2 is manifest in x1
ckaji1:R;having property
ckaji2:D;property
#
# x1 is a bed/pallet of material x2 for holding/supporting x3 (person/object/event)
ckana1:D;bed
ckana2:S;bed material
ckana2t:material
ckana3:R;supported by bed
ckana3t:supported
#
# x1 is perilous/dangerous/potentially harmful to x2 under conditions x3
ckape1:P;dangerous
ckape2:R;at risk of harm
ckape2t:harmful to
ckape3:S;conditions for danger
ckape3t:under conditions
#
# x1 ridicules/mocks/scoffs at x2 about x3 (property/event) by doing activity x4 (event)
ckasu1:A;ridicule
ckasu2:P;ridiculed
ckasu3:D;topic* of ridicule
ckasu3t:topic
ckasu4:D;event* leading to ridicule
ckasu4t:causal event
#
# x1 feels ashamed/mortified/humiliated under conditions x2 before community/audience x3
ckeji1:P;ashamed
ckeji2:S;shame conditions
ckeji2t:under conditions
ckeji3:S;audience of shame
ckeji3t:before audience
#
# x1 is a key fitting/releasing/opening/unlocking lock x2, and having relevant properties x3
ckiku1:D;key
ckiku2:D;lock
ckiku3:D;key property
#
# x1 (si'o) is a scale of units for measuring/observing/determining x2 (state)
ckilu1:D;unit scale
ckilu2:R;measured in units
#
# x1 is related to/associated with/akin to x2 by relationship x3
ckini1:R;akin
ckini2:D;reference
ckini2t:akin to
ckini3:D;akin relationship
#
# x1 is grateful/thankful to/appreciative of x2 for x3 (event/property)
ckire1:P;grateful
ckire2:A;receive* gratitude
ckire3:D;reason* for gratitude
#
# x1 is school/institute/academy at x2 teaching subject(s) x3 to audien./commun. x4 operated by x5
ckule1:D;school
ckule2:D;school location
ckule3:D;school subject
ckule4:D;school pupil
ckule5:D;school operator
#
# x1 is a conifer/pine/fir of species/strain x2 with cones x3
ckunu1:D;conifer*/pine*
ckunu2:D;conifer species
ckunu2n:conifer species:Prevent extra plural
ckunu3:D;pine cone
#
# x1 is loud/noisy at observation point x2 by standard x3
cladu1:P;loud
cladu2:D;point* for loudness
cladu2t:at point
cladu3:S;standard for loudness
cladu3t:by standard
#
# x1 is long in dimension/direction x2 (default longest dimension) by measurement standard x3
clani1:P;long
clani2:D;long dimension
clani2t:in dimension
clani3:S;standard for length
clani3t:by standard
#
# x1 is without/lacking/free of/lacks x2; x1 is x2-less
claxu1:A;lack
claxu2:P;lacked