-
Notifications
You must be signed in to change notification settings - Fork 71
/
Anatomy.kif
1958 lines (1544 loc) · 78.8 KB
/
Anatomy.kif
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
;; Anatomy.kif
;; Basic human anatomy
; from Wikipedia
; https://en.wikipedia.org/wiki/List_of_bones_of_the_human_skeleton
;; Access to and use of these products is governed by the GNU General Public
;; License <http://www.gnu.org/copyleft/gpl.html>.
;; By using these products, you agree to be bound by the terms
;; of the GPL.
;; Author: Adam Pease
;; Note that this is a catalog of adult primate bones. It would also be
;; worthwhile to catalog juvenile primate bones and relate them to the
;; adult human bones they become after fusion, and state when that
;; fusion is likely to occur.
(subclass Bone Bone)
(termFormat EnglishLanguage Bone "Bone")
(initialPart Bone Primate)
(documentation Bone EnglishLanguage "A &%Bone that is (or was) part of a &%Primate.")
(instance connectedBodyPartTypes TernaryPredicate)
(documentation connectedBodyPartTypes EnglishLanguage "Parts of a healthy organism that
are present and connected to each other.")
(domainSubclass connectedBodyPartTypes 1 BodyPart)
(domainSubclass connectedBodyPartTypes 2 BodyPart)
(domainSubclass connectedBodyPartTypes 3 Organism)
; a healthy person will have body parts of the following types connected
(=>
(and
(connectedBodyPartTypes ?P1 ?P2 ?O)
(instance ?OC ?O)
(not
(attribute ?H DiseaseOrSyndrome)))
(exists (?PC1 ?PC2)
(and
(instance ?PC1 ?P1)
(instance ?PC2 ?P2)
(not
(equal ?PC1 ?PC2))
(part ?PC1 ?OC)
(part ?PC2 ?OC)
(connected ?PC1 ?PC2))))
(=>
(connectedBodyPartTypes ?P1 ?P2 ?O)
(connectedBodyPartTypes ?P2 ?P1 ?O))
(subclass HeadBone Bone)
(termFormat EnglishLanguage HeadBone "head bone")
(documentation HeadBone EnglishLanguage "head bone")
(initialPart HeadBone Head)
(subclass CranialBone HeadBone)
(termFormat EnglishLanguage CranialBone "cranial bone")
(documentation CranialBone EnglishLanguage "cranial bone")
(subclass FrontalBone CranialBone)
(termFormat EnglishLanguage FrontalBone "frontal bone")
(documentation FrontalBone EnglishLanguage "frontal bone")
(subclass LeftParietalBone CranialBone)
(termFormat EnglishLanguage LeftParietalBone "left parietal bone")
(documentation LeftParietalBone EnglishLanguage "left parietal bone")
(subclass RightParietalBone CranialBone)
(termFormat EnglishLanguage RightParietalBone "right parietal bone")
(documentation RightParietalBone EnglishLanguage "right parietal bone")
(subclass TemporalBone CranialBone)
(termFormat EnglishLanguage TemporalBone "temporal bone")
(documentation TemporalBone EnglishLanguage "temporal bone")
(subclass LeftTemporalBone TemporalBone)
(termFormat EnglishLanguage LeftTemporalBone "left temporal bone")
(documentation LeftTemporalBone EnglishLanguage "left temporal bone")
(subclass RightTemporalBone TemporalBone)
(termFormat EnglishLanguage RightTemporalBone "right temporal bone")
(documentation RightTemporalBone EnglishLanguage "right temporal bone")
(subclass OccipitalBone CranialBone)
(termFormat EnglishLanguage OccipitalBone "occipital bone")
(documentation OccipitalBone EnglishLanguage "occipital bone")
(connectedBodyPartTypes OccipitalBone C1VertebraBone Human)
(subclass SphenoidBone CranialBone)
(termFormat EnglishLanguage SphenoidBone "sphenoid bone")
(documentation SphenoidBone EnglishLanguage "sphenoid bone")
(subclass EthmoidBone CranialBone)
(termFormat EnglishLanguage EthmoidBone "ethmoid bone")
(documentation EthmoidBone EnglishLanguage "ethmoid bone")
(subclass FacialBone HeadBone)
(termFormat EnglishLanguage FacialBone "facial bone")
(documentation FacialBone EnglishLanguage "facial bone")
(subclass ZygomaticBone FacialBone)
(subclass LeftZygomaticBone ZygomaticBone)
(termFormat EnglishLanguage LeftZygomaticBone "left zygomatic bone")
(documentation LeftZygomaticBone EnglishLanguage "left zygomatic bone")
(subclass RightZygomaticBone ZygomaticBone)
(termFormat EnglishLanguage RightZygomaticBone "right zygomatic bone")
(documentation RightZygomaticBone EnglishLanguage "right zygomatic bone")
(subclass MaxillaBone FacialBone)
(subclass LeftMaxillaBone MaxillaBone)
(termFormat EnglishLanguage LeftMaxillaBone "left maxilla bone")
(documentation LeftMaxillaBone EnglishLanguage "left maxilla bone")
(subclass RightMaxillaBone MaxillaBone)
(termFormat EnglishLanguage RightMaxillaBone "right maxilla bone")
(documentation RightMaxillaBone EnglishLanguage "right maxilla bone")
(subclass NasalBone FacialBone)
(subclass LeftNasalBone NasalBone)
(termFormat EnglishLanguage LeftNasalBone "left nasal bone")
(documentation LeftNasalBone EnglishLanguage "left nasal bone")
(subclass RightNasalBone NasalBone)
(termFormat EnglishLanguage RightNasalBone "right nasal bone")
(documentation RightNasalBone EnglishLanguage "right nasal bone")
(subclass Mandible FacialBone)
(termFormat EnglishLanguage Mandible "mandible")
(documentation Mandible EnglishLanguage "mandible")
(connectedBodyPartTypes Mandible LeftTemporalBone Human)
(connectedBodyPartTypes Mandible RightTemporalBone Human)
(subclass PalatineBone FacialBone)
(subclass LeftPalatineBone PalatineBone)
(termFormat EnglishLanguage LeftPalatineBone "left palatine bone")
(documentation LeftPalatineBone EnglishLanguage "left palatine bone")
(subclass RightPalatineBone PalatineBone)
(termFormat EnglishLanguage RightPalatineBone "right palatine bone")
(documentation RightPalatineBone EnglishLanguage "right palatine bone")
(subclass LacrimalBone FacialBone)
(subclass LeftLacrimalBone LacrimalBone)
(termFormat EnglishLanguage LeftLacrimalBone "left lacrimal bone")
(documentation LeftLacrimalBone EnglishLanguage "left lacrimal bone")
(subclass RightLacrimalBone LacrimalBone)
(termFormat EnglishLanguage RightLacrimalBone "right lacrimal bone")
(documentation RightLacrimalBone EnglishLanguage "right lacrimal bone")
(subclass VomerBone FacialBone)
(termFormat EnglishLanguage VomerBone "vomer bone")
(documentation VomerBone EnglishLanguage "vomer bone")
(subclass InferiorNasalConchaeBone FacialBone)
(subclass LeftInferiorNasalConchaeBone InferiorNasalConchaeBone)
(termFormat EnglishLanguage LeftInferiorNasalConchaeBone "left inferior nasal conchae bone")
(documentation LeftInferiorNasalConchaeBone EnglishLanguage "left inferior nasal conchae bone")
(subclass RightInferiorNasalConchaeBone InferiorNasalConchaeBone)
(termFormat EnglishLanguage RightInferiorNasalConchaeBone "right inferior nasal conchae bone")
(documentation RightInferiorNasalConchaeBone EnglishLanguage "right inferior nasal conchae bone")
(subclass InnerEarBone HeadBone)
(termFormat EnglishLanguage InnerEarBone "inner ear bone")
(documentation InnerEarBone EnglishLanguage "inner ear bone")
(subclass MalleusBone InnerEarBone)
(subclass LeftMalleusBone MalleusBone)
(termFormat EnglishLanguage LeftMalleusBone "left malleus bone")
(documentation LeftMalleusBone EnglishLanguage "left malleus bone")
(subclass RightMalleusBone MalleusBone)
(termFormat EnglishLanguage RightMalleusBone "right malleus bone")
(documentation RightMalleusBone EnglishLanguage "right malleus bone")
(subclass IncusBone InnerEarBone)
(subclass LeftIncusBone IncusBone)
(termFormat EnglishLanguage LeftIncusBone "left incus bone")
(documentation LeftIncusBone EnglishLanguage "left incus bone")
(subclass RightIncusBone IncusBone)
(termFormat EnglishLanguage RightIncusBone "right incus bone")
(documentation RightIncusBone EnglishLanguage "right incus bone")
(subclass StapesBone InnerEarBone)
(subclass LeftStapesBone StapesBone)
(termFormat EnglishLanguage LeftStapesBone "left stapes bone")
(documentation LeftStapesBone EnglishLanguage "left stapes bone")
(subclass RightStapesBone StapesBone)
(termFormat EnglishLanguage RightStapesBone "right stapes bone")
(documentation RightStapesBone EnglishLanguage "right stapes bone")
; Bones of throat (1)
(subclass ThroatBone Bone)
(termFormat EnglishLanguage ThroatBone "throat bone")
(documentation ThroatBone EnglishLanguage "throat bone")
(subclass HyoidBone ThroatBone)
(termFormat EnglishLanguage HyoidBone "hyoid bone")
(documentation HyoidBone EnglishLanguage "hyoid bone")
; Bones of shoulder girdle (4)
(subclass ShoulderGirdleBone Bone)
(termFormat EnglishLanguage ShoulderGirdleBone "shoulder girdle bone")
(documentation ShoulderGirdleBone EnglishLanguage "shoulder girdle bone")
(initialPart ShoulderGirdleBone Shoulder)
(subclass ClavicleBone ShoulderGirdleBone)
(subclass LeftClavicleBone ClavicleBone)
(termFormat EnglishLanguage LeftClavicleBone "left clavicle bone")
(documentation LeftClavicleBone EnglishLanguage "left clavicle bone")
(subclass RightClavicleBone ClavicleBone)
(termFormat EnglishLanguage RightClavicleBone "right clavicle bone")
(documentation RightClavicleBone EnglishLanguage "right clavicle bone")
(termFormat EnglishLanguage ClavicleBone "collarbone")
(subclass ScapulaBone ShoulderGirdleBone)
(subclass LeftScapulaBone ScapulaBone)
(termFormat EnglishLanguage LeftScapulaBone "left scapula bone")
(documentation LeftScapulaBone EnglishLanguage "left scapula bone")
(connectedBodyPartTypes LeftScapulaBone LeftHumerus Human)
(connectedBodyPartTypes LeftScapulaBone LeftClavicleBone Human)
(subclass RightScapulaBone ScapulaBone)
(termFormat EnglishLanguage RightScapulaBone "right scapula bone")
(documentation RightScapulaBone EnglishLanguage "right scapula bone")
(connectedBodyPartTypes RightScapulaBone RightHumerus Human)
(connectedBodyPartTypes RighttScapulaBone RightClavicleBone Human)
(termFormat EnglishLanguage ScapulaBone "shoulder blade")
; Bones of thorax (25)
(subclass ThoraxBone Bone)
(termFormat EnglishLanguage ThoraxBone "thorax bone")
(documentation ThoraxBone EnglishLanguage "thorax bone")
(initialPart ThoraxBone Torso)
(subclass Sternum ThoraxBone)
(termFormat EnglishLanguage Sternum "sternum")
(documentation Sternum EnglishLanguage "sternum")
(subclass Cartilage ConnectiveTissue)
(termFormat EnglishLanguage Cartilage "cartilage")
(documentation Cartilage EnglishLanguage "cartilage")
(subclass XyphiodProcess BodyPart)
(termFormat EnglishLanguage XyphiodProcess "xyphiod process")
(documentation XyphiodProcess EnglishLanguage "xyphiod process")
(=>
(instance ?X XyphiodProcess)
(material ?X Cartilage))
(termFormat EnglishLanguage XyphiodProcess "sternum")
(connectedBodyPartTypes XyphiodProcess Sternum Human)
; Ribs (2 x 12)
(subclass RibBone ThoraxBone)
(termFormat EnglishLanguage RibBone "rib bone")
(documentation RibBone EnglishLanguage "rib bone")
(subclass LeftRibBone RibBone)
(termFormat EnglishLanguage LeftRibBone "left rib bone")
(documentation LeftRibBone EnglishLanguage "left rib bone")
(subclass RightRibBone RibBone)
(termFormat EnglishLanguage RightRibBone "right rib bone")
(documentation RightRibBone EnglishLanguage "right rib bone")
(subclass TrueRibBone RibBone)
(termFormat EnglishLanguage TrueRibBone "true rib bone")
(documentation TrueRibBone EnglishLanguage "true rib bone")
(subclass FloatingRibBone RibBone)
(termFormat EnglishLanguage FloatingRibBone "floating rib bone")
(documentation FloatingRibBone EnglishLanguage "floating rib bone")
(documentation TrueRibBone EnglishLanguage "Rib bones that are
attached to the &%Sternum, unlike the &%FloatingRibs. There are
7 true or fixed ribs in a normal human.")
(termFormat EnglishLanguage TrueRibBone "costae verae")
(subclass LeftTrueRib1Bone TrueRibBone)
(subclass LeftTrueRib1Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib1Bone "left true rib 1 bone")
(documentation LeftTrueRib1Bone EnglishLanguage "left true rib 1 bone")
(subclass RightTrueRib1Bone TrueRibBone)
(subclass RightTrueRib1Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib1Bone "right true rib 1 bone")
(documentation RightTrueRib1Bone EnglishLanguage "right true rib 1 bone")
(connectedBodyPartTypes LeftTrueRib1Bone T1VertebraBone Human)
(connectedBodyPartTypes RightTrueRib1Bone T1VertebraBone Human)
(subclass LeftTrueRib2Bone TrueRibBone)
(subclass LeftTrueRib2Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib2Bone "left true rib 2 bone")
(documentation LeftTrueRib2Bone EnglishLanguage "left true rib 2 bone")
(subclass RightTrueRib2Bone TrueRibBone)
(subclass RightTrueRib2Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib2Bone "right true rib 2 bone")
(documentation RightTrueRib2Bone EnglishLanguage "right true rib 2 bone")
(connectedBodyPartTypes LeftTrueRib2Bone T2VertebraBone Human)
(connectedBodyPartTypes RightTrueRib2Bone T2VertebraBone Human)
(subclass LeftTrueRib3Bone TrueRibBone)
(subclass LeftTrueRib3Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib3Bone "left true rib 3 bone")
(documentation LeftTrueRib3Bone EnglishLanguage "left true rib 3 bone")
(subclass RightTrueRib3Bone TrueRibBone)
(subclass RightTrueRib3Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib3Bone "right true rib 3 bone")
(documentation RightTrueRib3Bone EnglishLanguage "right true rib 3 bone")
(connectedBodyPartTypes LeftTrueRib3Bone T3VertebraBone Human)
(connectedBodyPartTypes RightTrueRib3Bone T3VertebraBone Human)
(subclass LeftTrueRib4Bone TrueRibBone)
(subclass LeftTrueRib4Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib4Bone "left true rib 4 bone")
(documentation LeftTrueRib4Bone EnglishLanguage "left true rib 4 bone")
(subclass RightTrueRib4Bone TrueRibBone)
(subclass RightTrueRib4Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib4Bone "right true rib 4 bone")
(documentation RightTrueRib4Bone EnglishLanguage "right true rib 4 bone")
(connectedBodyPartTypes LeftTrueRib4Bone T4VertebraBone Human)
(connectedBodyPartTypes RightTrueRib4Bone T4VertebraBone Human)
(subclass LeftTrueRib5Bone TrueRibBone)
(subclass LeftTrueRib5Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib5Bone "left true rib 5 bone")
(documentation LeftTrueRib5Bone EnglishLanguage "left true rib 5 bone")
(subclass RightTrueRib5Bone TrueRibBone)
(subclass RightTrueRib5Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib5Bone "right true rib 5 bone")
(documentation RightTrueRib5Bone EnglishLanguage "right true rib 5 bone")
(connectedBodyPartTypes LeftTrueRib5Bone T5VertebraBone Human)
(connectedBodyPartTypes RightTrueRib5Bone T5VertebraBone Human)
(subclass LeftTrueRib6Bone TrueRibBone)
(subclass LeftTrueRib6Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib6Bone "left true rib 6 bone")
(documentation LeftTrueRib6Bone EnglishLanguage "left true rib 6 bone")
(subclass RightTrueRib6Bone TrueRibBone)
(subclass RightTrueRib6Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib6Bone "right true rib 6 bone")
(documentation RightTrueRib6Bone EnglishLanguage "right true rib 6 bone")
(connectedBodyPartTypes LeftTrueRib6Bone T6VertebraBone Human)
(connectedBodyPartTypes RightTrueRib6Bone T6VertebraBone Human)
(subclass LeftTrueRib7Bone TrueRibBone)
(subclass LeftTrueRib7Bone LeftRibBone)
(termFormat EnglishLanguage LeftTrueRib7Bone "left true rib 7 bone")
(documentation LeftTrueRib7Bone EnglishLanguage "left true rib 7 bone")
(subclass RightTrueRib7Bone TrueRibBone)
(subclass RightTrueRib7Bone RightRibBone)
(termFormat EnglishLanguage RightTrueRib7Bone "right true rib 7 bone")
(documentation RightTrueRib7Bone EnglishLanguage "right true rib 7 bone")
(connectedBodyPartTypes LeftTrueRib7Bone T7VertebraBone Human)
(connectedBodyPartTypes RightTrueRib7Bone T7VertebraBone Human)
(documentation FalseRibBone EnglishLanguage "Rib bones that are not
attached to the &%Sternum, unlike the &%TrueRibBones. There are
5 false ribs in a normal human, which in turn are divided into the
3 vertebrochondral ribs and 2 floating or vertebral ribs.")
(termFormat EnglishLanguage FalseRibBone "costae spuriae")
(subclass VertebrochondralRibBone FalseRibBone)
(termFormat EnglishLanguage VertebrochondralRibBone "vertebrochondral rib bone")
(documentation VertebrochondralRibBone EnglishLanguage "vertebrochondral rib bone")
(subclass VertebralRibBone FalseRibBone)
(termFormat EnglishLanguage VertebralRibBone "vertebral rib bone")
(documentation VertebralRibBone EnglishLanguage "vertebral rib bone")
(termFormat EnglishLanguage VertebralRibBone "floating rib")
(subclass LeftFalseRib8Bone VertebrochondralRibBone)
(subclass LeftFalseRib8Bone LeftRibBone)
(termFormat EnglishLanguage LeftFalseRib8Bone "left false rib 8 bone")
(documentation LeftFalseRib8Bone EnglishLanguage "left false rib 8 bone")
(subclass RightFalseRib8Bone VertebrochondralRibBone)
(subclass RightFalseRib8Bone RightRibBone)
(termFormat EnglishLanguage RightFalseRib8Bone "right false rib 8 bone")
(documentation RightFalseRib8Bone EnglishLanguage "right false rib 8 bone")
(connectedBodyPartTypes LeftFalseRib8Bone T8VertebraBone Human)
(connectedBodyPartTypes RightFalseRib8Bone T8VertebraBone Human)
(subclass LeftFalseRib9Bone VertebrochondralRibBone)
(subclass LeftFalseRib9Bone LeftRibBone)
(termFormat EnglishLanguage LeftFalseRib9Bone "left false rib 9 bone")
(documentation LeftFalseRib9Bone EnglishLanguage "left false rib 9 bone")
(subclass RightFalseRib9Bone VertebrochondralRibBone)
(subclass RightFalseRib9Bone RightRibBone)
(termFormat EnglishLanguage RightFalseRib9Bone "right false rib 9 bone")
(documentation RightFalseRib9Bone EnglishLanguage "right false rib 9 bone")
(connectedBodyPartTypes LeftFalseRib9Bone T9VertebraBone Human)
(connectedBodyPartTypes RightFalseRib9Bone T9VertebraBone Human)
(subclass LeftFalseRib10Bone VertebrochondralRibBone)
(subclass LeftFalseRib10Bone LeftRibBone)
(termFormat EnglishLanguage LeftFalseRib10Bone "left false rib 10 bone")
(documentation LeftFalseRib10Bone EnglishLanguage "left false rib 10 bone")
(subclass RightFalseRib10Bone VertebrochondralRibBone)
(subclass RightFalseRib10Bone RightRibBone)
(termFormat EnglishLanguage RightFalseRib10Bone "right false rib 10 bone")
(documentation RightFalseRib10Bone EnglishLanguage "right false rib 10 bone")
(connectedBodyPartTypes LeftFalseRib10Bone T10VertebraBone Human)
(connectedBodyPartTypes RightFalseRib10Bone T10VertebraBone Human)
(subclass LeftFalseRib11Bone VertebralRibBone)
(subclass LeftFalseRib11Bone LeftRibBone)
(termFormat EnglishLanguage LeftFalseRib11Bone "left false rib 11 bone")
(documentation LeftFalseRib11Bone EnglishLanguage "left false rib 11 bone")
(subclass RightFalseRib11Bone VertebralRibBone)
(subclass RightFalseRib11Bone RightRibBone)
(termFormat EnglishLanguage RightFalseRib11Bone "right false rib 11 bone")
(documentation RightFalseRib11Bone EnglishLanguage "right false rib1 1 bone")
(connectedBodyPartTypes LeftFalseRib11Bone T11VertebraBone Human)
(connectedBodyPartTypes RightFalseRib11Bone T11VertebraBone Human)
(subclass LeftFalseRib12Bone VertebralRibBone)
(termFormat EnglishLanguage LeftFalseRib12Bone "left false rib 12 bone")
(documentation LeftFalseRib12Bone EnglishLanguage "left false rib 12 bone")
(subclass LeftFalseRib12Bone LeftRibBone)
(subclass RightFalseRib12Bone VertebralRibBone)
(termFormat EnglishLanguage RightFalseRib12Bone "right false rib 12 bone")
(documentation RightFalseRib12Bone EnglishLanguage "right false rib 12 bone")
(subclass RightFalseRib12Bone RightRibBone)
(connectedBodyPartTypes LeftFalseRib12Bone T12VertebraBone Human)
(connectedBodyPartTypes RightFalseRib12Bone T12VertebraBone Human)
(=>
(and
(instance ?R TrueRibBone)
(part ?R ?H)
(instance ?H Human)
(not
(attribute ?H DiseaseOrSyndrome)))
(exists (?S)
(and
(instance ?S Sternum)
(part ?S ?H)
(connected ?S ?R))))
(=>
(and
(instance ?R FalseRibBone)
(part ?R ?H)
(instance ?H Human)
(not
(attribute ?H DiseaseOrSyndrome)))
(not
(exists (?S)
(and
(instance ?S Sternum)
(part ?S ?H)
(connected ?S ?R)))))
; Bones of vertebral column (24)
(subclass VertebraBone ThoraxBone)
(termFormat EnglishLanguage VertebraBone "vertebra bone")
(documentation VertebraBone EnglishLanguage "vertebra bone")
(subclass CervicalVertebraBone VertebraBone)
(termFormat EnglishLanguage CervicalVertebraBone "cervical vertebra bone")
(documentation CervicalVertebraBone EnglishLanguage "cervical vertebra bone")
(subclass C1VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C1VertebraBone "C1 vertebra bone")
(documentation C1VertebraBone EnglishLanguage "C1 vertebra bone")
(termFormat EnglishLanguage C1VertebraBone "atlas")
(subclass C2VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C2VertebraBone "C2 vertebra bone")
(documentation C2VertebraBone EnglishLanguage "C2 vertebra bone")
(termFormat EnglishLanguage C2VertebraBone "axis")
(subclass C3VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C3VertebraBone "C3 vertebra bone")
(documentation C3VertebraBone EnglishLanguage "C3 vertebra bone")
(subclass C4VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C4VertebraBone "C4 vertebra bone")
(documentation C4VertebraBone EnglishLanguage "C4 vertebra bone")
(subclass C5VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C5VertebraBone "C5 vertebra bone")
(documentation C5VertebraBone EnglishLanguage "C5 vertebra bone")
(subclass C6VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C6VertebraBone "C6 vertebra bone")
(documentation C6VertebraBone EnglishLanguage "C6 vertebra bone")
(subclass C7VertebraBone CervicalVertebraBone)
(termFormat EnglishLanguage C7VertebraBone "C7 vertebra bone")
(documentation C7VertebraBone EnglishLanguage "C7 vertebra bone")
(=>
(and
(instance ?R CervicalVertebraBone)
(part ?R ?H)
(instance ?H Human)
(not
(attribute ?H DiseaseOrSyndrome)))
(exists (?S)
(and
(instance ?S CervicalVertebraBone)
(not
(equal ?S ?R))
(part ?S ?H)
(connected ?S ?R))))
(subclass LumbarVertebraBone VertebraBone)
(termFormat EnglishLanguage LumbarVertebraBone "lumbar vertebra bone")
(documentation LumbarVertebraBone EnglishLanguage "lumbar vertebra bone")
(subclass L1VertebraBone LumbarVertebraBone)
(termFormat EnglishLanguage L1VertebraBone "L1 vertebra bone")
(documentation L1VertebraBone EnglishLanguage "L1 vertebra bone")
(subclass L2VertebraBone LumbarVertebraBone)
(termFormat EnglishLanguage L2VertebraBone "L2 vertebra bone")
(documentation L2VertebraBone EnglishLanguage "L2 vertebra bone")
(subclass L3VertebraBone LumbarVertebraBone)
(termFormat EnglishLanguage L3VertebraBone "L3 vertebra bone")
(documentation L3VertebraBone EnglishLanguage "L3 vertebra bone")
(subclass L4VertebraBone LumbarVertebraBone)
(termFormat EnglishLanguage L4VertebraBone "L4 vertebra bone")
(documentation L4VertebraBone EnglishLanguage "L4 vertebra bone")
(subclass L5VertebraBone LumbarVertebraBone)
(termFormat EnglishLanguage L5VertebraBone "L5 vertebra bone")
(documentation L5VertebraBone EnglishLanguage "L5 vertebra bone")
(=>
(and
(instance ?R LumbarVertebraBone)
(part ?R ?H)
(instance ?H Human)
(not
(attribute ?H DiseaseOrSyndrome)))
(exists (?S)
(and
(instance ?S LumbarVertebraBone)
(not
(equal ?S ?R))
(part ?S ?H)
(connected ?S ?R))))
(subclass ThoracicVertebraBone VertebraBone)
(termFormat EnglishLanguage ThoracicVertebraBone "thoracic vertebra bone")
(documentation ThoracicVertebraBone EnglishLanguage "thoracic vertebra bone")
(subclass T1VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T1VertebraBone "T1 vertebra bone")
(documentation T1VertebraBone EnglishLanguage "T1 vertebra bone")
(subclass T2VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T2VertebraBone "T2 vertebra bone")
(documentation T2VertebraBone EnglishLanguage "T2 vertebra bone")
(subclass T3VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T3VertebraBone "T3 Vertebra Bone")
(documentation T3VertebraBone EnglishLanguage "T3 Vertebra Bone")
(subclass T4VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T4VertebraBone "T4 vertebra bone")
(documentation T4VertebraBone EnglishLanguage "T4 vertebra bone")
(subclass T5VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T5VertebraBone "T5 vertebra bone")
(documentation T5VertebraBone EnglishLanguage "T5 vertebra bone")
(subclass T6VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T6VertebraBone "T6 Vertebra Bone")
(documentation T6VertebraBone EnglishLanguage "T6 Vertebra Bone")
(subclass T7VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T7VertebraBone "T7 vertebra bone")
(documentation T7VertebraBone EnglishLanguage "T7 vertebra bone")
(subclass T8VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T8VertebraBone "T8 vertebra bone")
(documentation T8VertebraBone EnglishLanguage "T8 vertebra bone")
(subclass T9VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T9VertebraBone "T9 Vertebra Bone")
(documentation T9VertebraBone EnglishLanguage "T9 Vertebra Bone")
(subclass T10VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T10VertebraBone "T10 vertebra bone")
(documentation T10VertebraBone EnglishLanguage "T10 vertebra bone")
(subclass T11VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T11VertebraBone "T11 vertebra bone")
(documentation T11VertebraBone EnglishLanguage "T11 vertebra bone")
(subclass T12VertebraBone ThoracicVertebraBone)
(termFormat EnglishLanguage T12VertebraBone "T12 vertebra bone")
(documentation T12VertebraBone EnglishLanguage "T12 vertebra bone")
(=>
(and
(instance ?R ThoracicVertebraBone)
(part ?R ?H)
(instance ?H Human)
(not
(attribute ?H DiseaseOrSyndrome)))
(exists (?S)
(and
(instance ?S ThoracicVertebraBone)
(not
(equal ?S ?R))
(part ?S ?H)
(connected ?S ?R))))
(subclass ArmBone Bone)
(termFormat EnglishLanguage ArmBone "arm bone")
(documentation ArmBone EnglishLanguage "arm bone")
(initialPart ArmBone Arm)
; Bones of arms (6)
(subclass Humerus ArmBone)
(termFormat EnglishLanguage Humerus "humerus")
(documentation Humerus EnglishLanguage "humerus")
(subclass LeftHumerus Humerus)
(termFormat EnglishLanguage LeftHumerus "left humerus")
(documentation LeftHumerus EnglishLanguage "left humerus")
(subclass RightHumerus Humerus)
(termFormat EnglishLanguage RightHumerus "right humerus")
(documentation RightHumerus EnglishLanguage "right humerus")
(subclass Ulna ArmBone)
(termFormat EnglishLanguage Ulna "ulna")
(documentation Ulna EnglishLanguage "The ulna (pl. ulnae or ulnas) is a long bone found in the forearm that stretches
from the elbow to the smallest finger, and when in anatomical position, is found on the medial side of the forearm.
[from Wikipedia]")
(subclass LeftUlna Ulna)
(termFormat EnglishLanguage LeftUlna "left ulna")
(documentation LeftUlna EnglishLanguage "left ulna")
(connectedBodyPartTypes LeftUlna LeftHumerus Human)
(connectedBodyPartTypes LeftUlna LeftRadius Human)
(subclass RightUlna Ulna)
(termFormat EnglishLanguage RightUlna "right ulna")
(documentation RightUlna EnglishLanguage "right ulna")
(connectedBodyPartTypes RightUlna RightHumerus Human)
(connectedBodyPartTypes RightUlna RightRadius Human)
(subclass Radius ArmBone)
(termFormat EnglishLanguage Radius "radius")
(documentation Radius EnglishLanguage "The ulna (pl. ulnae or ulnas) is a long bone found in the forearm that stretches
from the elbow to the smallest finger, and when in anatomical position, is found on the medial side of the forearm.
[from Wikipedia]")
(subclass LeftRadius Radius)
(termFormat EnglishLanguage LeftRadius "left radius")
(documentation LeftRadius EnglishLanguage "left radius")
(subclass RightRadius Radius)
(termFormat EnglishLanguage RightRadius "right radius")
(documentation RightRadius EnglishLanguage "right radius")
; Bones of hands (54)
; Wrist (carpal) bones
(subclass WristBone ArmBone)
(termFormat EnglishLanguage WristBone "wrist bone")
(documentation WristBone EnglishLanguage "wrist bone")
(initialPart WristBone Hand)
(subclass ScaphoidBone WristBone)
(subclass LeftScaphoid ScaphoidBone)
(termFormat EnglishLanguage LeftScaphoid "left scaphoid")
(documentation LeftScaphoid EnglishLanguage "left scaphoid")
(subclass NavicularBone WristBone)
(subclass LeftNavicular NavicularBone)
(termFormat EnglishLanguage LeftNavicular "left navicular")
(documentation LeftNavicular EnglishLanguage "left navicular")
(subclass LunateBone WristBone)
(subclass LeftLunate LunateBone)
(termFormat EnglishLanguage LeftLunate "left lunate")
(documentation LeftLunate EnglishLanguage "left lunate")
(subclass TriquetralBone WristBone)
(subclass LeftTriquetral TriquetralBone)
(termFormat EnglishLanguage LeftTriquetral "left triquetral")
(documentation LeftTriquetral EnglishLanguage "left triquetral")
(subclass PisiformBone WristBone)
(subclass LeftPisiform PisiformBone)
(termFormat EnglishLanguage LeftPisiform "left pisiform")
(documentation LeftPisiform EnglishLanguage "left pisiform")
(subclass TrapeziumBone WristBone)
(subclass LeftTrapezium TrapeziumBone)
(termFormat EnglishLanguage LeftTrapezium "left trapezium")
(documentation LeftTrapezium EnglishLanguage "left trapezium")
(subclass TrapezoidBone WristBone)
(subclass LeftTrapezoid TrapezoidBone)
(termFormat EnglishLanguage LeftTrapezoid "left trapezoid")
(documentation LeftTrapezoid EnglishLanguage "left trapezoid")
(subclass CapitateBone WristBone)
(subclass LeftCapitate CapitateBone)
(termFormat EnglishLanguage LeftCapitate "left capitate")
(documentation LeftCapitate EnglishLanguage "left capitate")
(subclass HamateBone WristBone)
(subclass LeftHamate HamateBone)
(termFormat EnglishLanguage LeftHamate "left hamate")
(documentation LeftHamate EnglishLanguage "left hamate")
(subclass RightScaphoid ScaphoidBone)
(termFormat EnglishLanguage RightScaphoid "right scaphoid")
(documentation RightScaphoid EnglishLanguage "right scaphoid")
(subclass RightNavicular NavicularBone)
(termFormat EnglishLanguage RightNavicular "right navicular")
(documentation RightNavicular EnglishLanguage "right navicular")
(subclass RightLunate LunateBone)
(termFormat EnglishLanguage RightLunate "right lunate")
(documentation RightLunate EnglishLanguage "right lunate")
(subclass RightTriquetral TriquetralBone)
(termFormat EnglishLanguage RightTriquetral "right triquetral")
(documentation RightTriquetral EnglishLanguage "right triquetral")
(subclass RightPisiform PisiformBone)
(termFormat EnglishLanguage RightPisiform "right pisiform")
(documentation RightPisiform EnglishLanguage "right pisiform")
(subclass RightTrapezium Trapezium)
(termFormat EnglishLanguage RightTrapezium "right trapezium")
(documentation RightTrapezium EnglishLanguage "right trapezium")
(subclass RightTrapezoid Trapezoid)
(termFormat EnglishLanguage RightTrapezoid "right trapezoid")
(documentation RightTrapezoid EnglishLanguage "right trapezoid")
(subclass RightCapitate CapitateBone)
(termFormat EnglishLanguage RightCapitate "right capitate")
(documentation RightCapitate EnglishLanguage "right capitate")
(subclass RightHamate HamateBone)
(termFormat EnglishLanguage RightHamate "right hamate")
(documentation RightHamate EnglishLanguage "right hamate")
(subclass PalmBone ArmBone)
(termFormat EnglishLanguage PalmBone "palm bone")
(documentation PalmBone EnglishLanguage "palm bone")
(initialPart PalmBone Hand)
(subclass LeftIMetacarpal PalmBone)
(termFormat EnglishLanguage LeftIMetacarpal "left I metacarpal")
(documentation LeftIMetacarpal EnglishLanguage "Left I metacarpal")
(subclass RightIMetacarpal PalmBone)
(termFormat EnglishLanguage RightIMetacarpal "right I metacarpal")
(documentation RightIMetacarpal EnglishLanguage "Right I metacarpal")
(subclass LeftIIMetacarpal PalmBone)
(termFormat EnglishLanguage LeftIIMetacarpal "left II metacarpal")
(documentation LeftIIMetacarpal EnglishLanguage "Left II metacarpal")
(subclass RightIIMetacarpal PalmBone)
(termFormat EnglishLanguage RightIIMetacarpal "right II metacarpal")
(documentation RightIIMetacarpal EnglishLanguage "Right II metacarpal")
(subclass LeftIIIMetacarpal PalmBone)
(termFormat EnglishLanguage LeftIIIMetacarpal "left III metacarpal")
(documentation LeftIIIMetacarpal EnglishLanguage "Left III metacarpal")
(subclass RightIIIMetacarpal PalmBone)
(termFormat EnglishLanguage RightIIIMetacarpal "right III metacarpal")
(documentation RightIIIMetacarpal EnglishLanguage "Right III metacarpal")
(subclass LeftIVMetacarpal PalmBone)
(termFormat EnglishLanguage LeftIVMetacarpal "left IV metacarpal")
(documentation LeftIVMetacarpal EnglishLanguage "Left IV metacarpal")
(subclass RightIVMetacarpal PalmBone)
(termFormat EnglishLanguage RightIVMetacarpal "right IV metacarpal")
(documentation RightIVMetacarpal EnglishLanguage "Right IV metacarpal")
(subclass LeftVMetacarpal PalmBone)
(termFormat EnglishLanguage LeftVMetacarpal "left V metacarpal")
(documentation LeftVMetacarpal EnglishLanguage "Left V metacarpal")
(subclass RightVMetacarpal PalmBone)
(termFormat EnglishLanguage RightVMetacarpal "right V metacarpal")
(documentation RightVMetacarpal EnglishLanguage "Right V metacarpal")
; Finger bones or phalanges (28 Human)
(subclass FingerBone ArmBone)
(termFormat EnglishLanguage FingerBone "finger bone")
(documentation FingerBone EnglishLanguage "finger bone")
(initialPart FingerBone Hand)
(subclass LeftProximalPhalanxIBone FingerBone)
(termFormat EnglishLanguage LeftProximalPhalanxIBone "left proximal phalanx I bone")
(documentation LeftProximalPhalanxIBone EnglishLanguage "Left proximal phalanx I bone")
(subclass RightProximalPhalanxIBone FingerBone)
(termFormat EnglishLanguage RightProximalPhalanxIBone "right proximal phalanx I bone")
(documentation RightProximalPhalanxIBone EnglishLanguage "right proximal phalanx I bone")
(subclass LeftProximalPhalanxIIBone FingerBone)
(termFormat EnglishLanguage LeftProximalPhalanxIIBone "left proximal phalanx II bone")
(documentation LeftProximalPhalanxIIBone EnglishLanguage "left proximal phalanx II bone")
(subclass RightProximalPhalanxIIBone FingerBone)
(termFormat EnglishLanguage RightProximalPhalanxIIBone "right proximal phalanx II bone")
(documentation RightProximalPhalanxIIBone EnglishLanguage "right proximal phalanx II bone")
(subclass LeftProximalPhalanxIIIBone FingerBone)
(termFormat EnglishLanguage LeftProximalPhalanxIIIBone "left proximal phalanx III bone")
(documentation LeftProximalPhalanxIIIBone EnglishLanguage "left proximal phalanx III bone")
(subclass RightProximalPhalanxIIIBone FingerBone)
(termFormat EnglishLanguage RightProximalPhalanxIIIBone "right proximal phalanx III bone")
(documentation RightProximalPhalanxIIIBone EnglishLanguage "right proximal phalanx III bone")
(subclass LeftProximalPhalanxIVBone FingerBone)
(termFormat EnglishLanguage LeftProximalPhalanxIVBone "left proximal phalanx IV bone")
(documentation LeftProximalPhalanxIVBone EnglishLanguage "left proximal phalanx IV bone")
(subclass RightProximalPhalanxIVBone FingerBone)
(termFormat EnglishLanguage RightProximalPhalanxIVBone "right proximal phalanx IV bone")
(documentation RightProximalPhalanxIVBone EnglishLanguage "right proximal phalanx IV bone")
(subclass LeftProximalPhalanxVBone FingerBone)
(termFormat EnglishLanguage LeftProximalPhalanxVBone "left proximal phalanx V bone")
(documentation LeftProximalPhalanxVBone EnglishLanguage "left proximal phalanx V bone")
(subclass RightProximalPhalanxVBone FingerBone)
(termFormat EnglishLanguage RightProximalPhalanxVBone "right proximal phalanx V bone")
(documentation RightProximalPhalanxVBone EnglishLanguage "right proximal phalanx V bone")
; There is no intermediate phalanx of the thumb
(subclass LeftIntermediatePhalanxIIBone FingerBone)
(termFormat EnglishLanguage LeftIntermediatePhalanxIIBone "left intermediate phalanx II bone")
(documentation LeftIntermediatePhalanxIIBone EnglishLanguage "left intermediate phalanx II bone")
(subclass RightIntermediatePhalanxIIBone FingerBone)
(termFormat EnglishLanguage RightIntermediatePhalanxIIBone "right intermediate phalanx II bone")
(documentation RightIntermediatePhalanxIIBone EnglishLanguage "right intermediate phalanx II bone")
(subclass LeftIntermediatePhalanxIIIBone FingerBone)
(termFormat EnglishLanguage LeftIntermediatePhalanxIIIBone "left intermediate phalanx III bone")
(documentation LeftIntermediatePhalanxIIIBone EnglishLanguage "left intermediate phalanx III bone")
(subclass RightIntermediatePhalanxIIIBone FingerBone)
(termFormat EnglishLanguage RightIntermediatePhalanxIIIBone "right intermediate phalanx III bone")
(documentation RightIntermediatePhalanxIIIBone EnglishLanguage "right intermediate phalanx III bone")
(subclass LeftIntermediatePhalanxIVBone FingerBone)
(termFormat EnglishLanguage LeftIntermediatePhalanxIVBone "left intermediate phalanx IV bone")
(documentation LeftIntermediatePhalanxIVBone EnglishLanguage "left intermediate phalanx IV bone")
(subclass RightIntermediatePhalanxIVBone FingerBone)
(termFormat EnglishLanguage RightIntermediatePhalanxIVBone "right intermediate phalanx IV bone")
(documentation RightIntermediatePhalanxIVBone EnglishLanguage "right intermediate phalanx IV bone")
(subclass LeftIntermediatePhalanxVBone FingerBone)
(termFormat EnglishLanguage LeftIntermediatePhalanxVBone "left intermediate phalanx V bone")
(documentation LeftIntermediatePhalanxVBone EnglishLanguage "left intermediate phalanx V bone")
(subclass RightIntermediatePhalanxVBone FingerBone)
(termFormat EnglishLanguage RightIntermediatePhalanxVBone "right intermediate phalanx V bone")
(documentation RightIntermediatePhalanxVBone EnglishLanguage "right intermediate phalanx V bone")
(subclass LeftDistalPhalanxIBone FingerBone)
(termFormat EnglishLanguage LeftDistalPhalanxIBone "left distal phalanx I bone")
(documentation LeftDistalPhalanxIBone EnglishLanguage "left distal phalanx I bone")
(subclass RightDistalPhalanxIBone FingerBone)
(termFormat EnglishLanguage RightDistalPhalanxIBone "right distal phalanx I bone")
(documentation RightDistalPhalanxIBone EnglishLanguage "right distal phalanx I bone")
(subclass LeftDistalPhalanxIIBone FingerBone)
(termFormat EnglishLanguage LeftDistalPhalanxIIBone "left distal phalanx II bone")
(documentation LeftDistalPhalanxIIBone EnglishLanguage "left distal phalanx II bone")
(subclass RightDistalPhalanxIIBone FingerBone)
(termFormat EnglishLanguage RightDistalPhalanxIIBone "right distal phalanx II bone")
(documentation RightDistalPhalanxIIBone EnglishLanguage "right distal phalanx II bone")
(subclass LeftDistalPhalanxIIIBone FingerBone)
(termFormat EnglishLanguage LeftDistalPhalanxIIIBone "left distal phalanx III bone")
(documentation LeftDistalPhalanxIIIBone EnglishLanguage "left distal phalanx III bone")
(subclass RightDistalPhalanxIIIBone FingerBone)
(termFormat EnglishLanguage RightDistalPhalanxIIIBone "right distal phalanx III bone")
(documentation RightDistalPhalanxIIIBone EnglishLanguage "right distal phalanx III bone")
(subclass LeftDistalPhalanxIVBone FingerBone)
(termFormat EnglishLanguage LeftDistalPhalanxIVBone "left distal phalanx IV bone")
(documentation LeftDistalPhalanxIVBone EnglishLanguage "left distal phalanx IV bone")
(subclass RightDistalPhalanxIVBone FingerBone)
(termFormat EnglishLanguage RightDistalPhalanxIVBone "right distal phalanx IV bone")
(documentation RightDistalPhalanxIVBone EnglishLanguage "right distal phalanx IV bone")
(subclass LeftDistalPhalanxVBone FingerBone)
(termFormat EnglishLanguage LeftDistalPhalanxVBone "left distal phalanx V bone")
(documentation LeftDistalPhalanxVBone EnglishLanguage "left distal phalanx V bone")
(subclass RightDistalPhalanxVBone FingerBone)
(termFormat EnglishLanguage RightDistalPhalanxVBone "right distal phalanx V bone")
(documentation RightDistalPhalanxVBone EnglishLanguage "right distal phalanx V bone")
; Bones of pelvis (4):
(subclass PelvicBone Bone)