-
Notifications
You must be signed in to change notification settings - Fork 73
/
ComputingBrands.kif
4679 lines (3941 loc) · 240 KB
/
ComputingBrands.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
;; Proceedings of the 2nd International Conference on Formal Ontology in
;; Information Systems (FOIS-2001), Chris Welty and Barry Smith, eds,
;; Ogunquit, Maine, October 17-19, 2001. See also http://www.ontologyportal.org
;; 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.
;; copyright Infosys 2019-
;; author Adam Pease
(instance AppleComputerCorporation Corporation)
(instance AlphabetCorporation Corporation)
(instance GoogleCorporation Corporation)
(subOrganization GoogleCorporation AlphabetCorporation)
(termFormat EnglishLanguage AppleComputerCorporation "Apple")
(termFormat ChineseTraditionalLanguage AppleComputerCorporation "蘋果")
(termFormat ChineseLanguage AppleComputerCorporation "苹果")
(termFormat JapaneseLanguage AppleComputerCorporation "Apple")
(termFormat EnglishLanguage AlphabetCorporation "Alphabet")
(termFormat ChineseLanguage AlphabetCorporation "Alphabet公司")
(termFormat ChineseTraditionalLanguage AlphabetCorporation "Alphabet公司")
(termFormat JapaneseLanguage AlphabetCorporation "Alphabet")
(subclass AndroidOS PhoneOS)
(=>
(and
(subclass ?OS AndroidOS)
(instance ?INST ?OS))
(creator AlphabetCorporation ?INST))
(termFormat EnglishLanguage AndroidOS "Android OS")
(termFormat JapaneseLanguage AndroidOS "Android OS")
(termFormat EnglishLanguage AndroidOS "Android Operating System")
(termFormat ChineseTraditionalLanguage AndroidOS "Android 操作系統")
(termFormat ChineseLanguage AndroidOS "Android 作业系统")
(termFormat JapaneseLanguage AndroidOS "Android オペレーティングシステム")
(termFormat EnglishLanguage AndroidOS "Android")
(termFormat ChineseTraditionalLanguage AndroidOS "Android")
(termFormat ChineseLanguage AndroidOS "Android")
(termFormat JapaneseLanguage AndroidOS "Android")
(instance MicrosoftCorporation Corporation)
(termFormat EnglishLanguage MicrosoftCorporation "Microsoft Corporation")
(termFormat ChineseLanguage MicrosoftCorporation "微软公司")
(termFormat ChineseTraditionalLanguage MicrosoftCorporation "微軟公司")
(termFormat JapaneseLanguage MicrosoftCorporation "マイクロソフト コーポレーション")
(termFormat EnglishLanguage MicrosoftCorporation "Microsoft")
(termFormat ChineseTraditionalLanguage MicrosoftCorporation "微軟")
(termFormat ChineseLanguage MicrosoftCorporation "微软")
(termFormat JapaneseLanguage MicrosoftCorporation "マイクロソフト")
(subclass WindowsOS OperatingSystem)
(=>
(and
(subclass ?OS WindowsOS)
(instance ?INST ?OS))
(creator MicrosoftCorporation ?INST))
(instance FacebookCorporation Corporation)
(creator FacebookCorporation Facebook)
(termFormat EnglishLanguage FacebookCorporation "Facebook Corporation")
(termFormat ChineseTraditionalLanguage FacebookCorporation "臉書公司")
(termFormat ChineseLanguage FacebookCorporation "脸书公司")
(termFormat JapaneseLanguage FacebookCorporation "Facebook")
(termFormat EnglishLanguage FacebookCorporation "Facebook")
(termFormat ChineseTraditionalLanguage FacebookCorporation "臉書")
(termFormat ChineseLanguage FacebookCorporation "脸书")
(termFormat EnglishLanguage Facebook "Facebook")
(termFormat ChineseTraditionalLanguage Facebook "臉書")
(termFormat ChineseLanguage Facebook "脸书")
(termFormat JapaneseLanguage Facebook "Facebook")
(subclass AppleIOS PhoneOS)
(termFormat EnglishLanguage AppleIOS "IOS")
(termFormat ChineseTraditionalLanguage AppleIOS "蘋果作業系統")
(termFormat ChineseLanguage AppleIOS "苹果作业系统")
(termFormat JapaneseLanguage AppleIOS "IOS")
(subclass PhoneOS OperatingSystem)
(canRunOn AppleIOS AppleIPhone)
(=>
(and
(subclass ?OS AppleIOS)
(instance ?INST ?OS))
(creator AppleComputerCorporation ?INST))
;; information from https://en.wikipedia.org/wiki/List_of_Apple_operating_systems
(subclass AppleComputer Computer)
(manufacturer AppleComputer AppleComputerCorporation)
(subclass AppleMacintoshComputer AppleComputer)
(termFormat EnglishLanguage AppleMacintoshComputer "Mac")
(termFormat ChineseTraditionalLanguage AppleMacintoshComputer "麥金塔計算機")
(termFormat ChineseLanguage AppleMacintoshComputer "麦金塔计算机")
(termFormat JapaneseLanguage AppleMacintoshComputer "Mac")
(subclass AppleIPhoneOS1 AppleIOS)
(documentation AppleIPhoneOS1 EnglishLanguage "The first
operating system for the Apple derived from
'OS X' (At the time, 'macOS' was still known as
'Mac OS X' and not 'OS X' as it was known from 2012 to 2016.)")
(documentation AppleIPhoneOS1 ChineseTraditionalLanguage "第一版從 'OS X' 引申而來的蘋果作業系統
(在當時, 'macOS' 仍被認知為 'Mac OS X' 而不是 'OS X' 如同它在2012到2016 被認知一般)。")
(documentation AppleIPhoneOS1 ChineseLanguage "第一版从 'OS X' 引申而来的苹果作业系统
(在当时,'macOS' 仍被认知为 'Mac OS X' 而不是 'OS X' 如同它在2012到2016被认知一般)。")
(documentation AppleIPhoneOS1 JapaneseLanguage "「OS X」に由来するAppleの最初のオペレーティン
グシステム(当時、「macOS」はまだ「Mac OS X」として知られていて、2012 to 2016まで知られていた
「OS X」としてではない。)")
(termFormat EnglishLanguage AppleIPhoneOS1 "IOS 1")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS1 "IOS 1")
(termFormat ChineseLanguage AppleIPhoneOS1 "IOS 1")
(termFormat JapaneseLanguage AppleIPhoneOS1 "IOS 1")
(subclass AppleIPhoneOS2 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS2 "IOS 2")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS2 "IOS 2")
(termFormat ChineseLanguage AppleIPhoneOS2 "IOS 2")
(termFormat JapaneseLanguage AppleIPhoneOS2 "IOS 2")
(subclass AppleIPhoneOS3 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS3 "IOS 3")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS3 "IOS 3")
(termFormat ChineseLanguage AppleIPhoneOS3 "IOS 3")
(termFormat JapaneseLanguage AppleIPhoneOS3 "IOS 3")
(subclass AppleIPhoneOS4 AppleIOS)
(documentation AppleIPhoneOS4 EnglishLanguage "continued from iPhone OS 3")
(documentation AppleIPhoneOS4 ChineseTraditionalLanguage "從 iPhone OS 3 延伸")
(documentation AppleIPhoneOS4 ChineseLanguage "从 iPhone OS 3 延伸")
(documentation AppleIPhoneOS4 JapaneseLanguage " iPhone OS 3から継続")
(termFormat EnglishLanguage AppleIPhoneOS4 "IOS 4")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS4 "IOS 4")
(termFormat ChineseLanguage AppleIPhoneOS4 "IOS 4")
(termFormat JapaneseLanguage AppleIPhoneOS4 "IOS 4")
(subclass AppleIPhoneOS5 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS5 "IOS 5")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS5 "IOS 5")
(termFormat ChineseLanguage AppleIPhoneOS5 "IOS 5")
(termFormat JapaneseLanguage AppleIPhoneOS5 "IOS 5")
(subclass AppleIPhoneOS6 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS6 "IOS 6")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS6 "IOS 6")
(termFormat ChineseLanguage AppleIPhoneOS6 "IOS 6")
(termFormat JapaneseLanguage AppleIPhoneOS6 "IOS 6")
(subclass AppleIPhoneOS7 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS7 "IOS 7")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS7 "IOS 7")
(termFormat ChineseLanguage AppleIPhoneOS7 "IOS 7")
(termFormat JapaneseLanguage AppleIPhoneOS7 "IOS 7")
(subclass AppleIPhoneOS8 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS8 "IOS 8")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS8 "IOS 8")
(termFormat ChineseLanguage AppleIPhoneOS8 "IOS 8")
(termFormat JapaneseLanguage AppleIPhoneOS8 "IOS 8")
(subclass AppleIPhoneOS9 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS9 "IOS 9")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS9 "IOS 9")
(termFormat ChineseLanguage AppleIPhoneOS9 "IOS 9")
(termFormat JapaneseLanguage AppleIPhoneOS9 "IOS 9")
(subclass AppleIPhoneOS10 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS10 "IOS 10")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS10 "IOS 10")
(termFormat ChineseLanguage AppleIPhoneOS10 "IOS 10")
(termFormat JapaneseLanguage AppleIPhoneOS10 "IOS 10")
(subclass AppleIPhoneOS11 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS11 "IOS 11")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS11 "IOS 11")
(termFormat ChineseLanguage AppleIPhoneOS11 "IOS 11")
(termFormat JapaneseLanguage AppleIPhoneOS11 "IOS 11")
(subclass AppleIPhoneOS12 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS12 "IOS 12")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS12 "IOS 12")
(termFormat ChineseLanguage AppleIPhoneOS12 "IOS 12")
(termFormat JapaneseLanguage AppleIPhoneOS12 "IOS 12")
(subclass AppleIPhoneOS13 AppleIOS)
(termFormat EnglishLanguage AppleIPhoneOS13 "IOS 13")
(termFormat ChineseTraditionalLanguage AppleIPhoneOS13 "IOS 13")
(termFormat ChineseLanguage AppleIPhoneOS13 "IOS 13")
(termFormat JapaneseLanguage AppleIPhoneOS13 "IOS 13")
(subclass AppleMacOS OperatingSystem)
(subclass AppleMacOSSystem1 AppleMacOS)
(subclass AppleMacOSSystem2 AppleMacOS)
(subclass AppleMacOSSystem3 AppleMacOS)
(subclass AppleMacOSSystem4 AppleMacOS)
(subclass AppleMacOSSystem5 AppleMacOS)
(documentation AppleMacOSSystem5 EnglishLanguage "Mac OS version also marketed as System 5")
(documentation AppleMacOSSystem5 ChineseTraditionalLanguage "Mac OS 版本亦推廣為System 5")
(documentation AppleMacOSSystem5 ChineseLanguage "Mac OS 版本亦推广为System 5")
(documentation AppleMacOSSystem5 JapaneseLanguage "Mac OSバージョン、別名システム5")
(subclass AppleMacOSSystem6 AppleMacOS)
(documentation AppleMacOSSystem6 EnglishLanguage "Mac OS version also marketed as System 6")
(documentation AppleMacOSSystem6 ChineseTraditionalLanguage "Mac OS 版本亦推廣為System 6")
(documentation AppleMacOSSystem6 ChineseLanguage "Mac OS 版本亦推广为System 6")
(documentation AppleMacOSSystem6 JapaneseLanguage "Mac OSバージョン、別名システム6")
(subclass AppleMacOSSystem7 AppleMacOS)
(documentation AppleMacOSSystem7 EnglishLanguage "Mac OS version. System 7.5.1 was the first
referred to as Mac OS, Mac OS 7.6 was the first officially to be branded as 'Mac OS'")
(documentation AppleMacOSSystem7 ChineseTraditionalLanguage "Mac OS 版本。
System 7.5.1 首次被稱為Mac OS, Mac OS 7.6 是第一個正式以'Mac OS'作為品牌的操作系统。")
(documentation AppleMacOSSystem7 ChineseLanguage "Mac OS 版本。
System 7.5.1 首次被称为Mac OS, Mac OS 7.6 是第一个正式以'Mac OS'作为品牌的操作系统。")
(documentation AppleMacOSSystem7 JapaneseLanguage "Mac OSバージョン。初めてMac OSと名称され
たのがシステム7.5.1、初めて正式に「Mac OS」としてブランド化されたのがMac OS 7.6である")
(subclass AppleMacOSSystem8 AppleMacOS)
(subclass AppleMacOSSystem9 AppleMacOS)
(documentation AppleMacOSSystem9 EnglishLanguage "Mac OS version. Mac OS 9.2.2 was the
last version of Classic Mac OS")
(documentation AppleMacOSSystem9 ChineseTraditionalLanguage "Mac OS 版本。
Mac OS 9.2.2 是最后一个原始 Mac OS 版本。")
(documentation AppleMacOSSystem9 ChineseLanguage "Mac OS 版本。 Mac OS 9.2.2 是最后一个 原始 Mac OS的版本。")
(documentation AppleMacOSSystem9 JapaneseLanguage "Mac OSバージョン。 Mac OS 9.2.2が伝統的
なMac OSの最後のバージョンである。")
(termFormat EnglishLanguage AppleMacOS "Mac OS")
(termFormat ChineseTraditionalLanguage AppleMacOS "Mac OS")
(termFormat ChineseLanguage AppleMacOS "Mac OS")
(termFormat JapaneseLanguage AppleMacOS "Mac OS")
(subclass AppleMacOSX AppleMacOS)
(documentation MacOSXPublicBeta EnglishLanguage "Mac OS X Public Beta – code name Kodiak")
(documentation MacOSXPublicBeta ChineseTraditionalLanguage "Mac OS X 公開測試版 – 代號為 Kodiak")
(documentation MacOSXPublicBeta ChineseLanguage "Mac OS X 公开测试版 – 代号为 Kodiak")
(documentation MacOSXPublicBeta JapaneseLanguage "Mac OS X パブリックベータ – コードネーム
Kodiak")
(termFormat EnglishLanguage MacOSXPublicBeta "Mac OS X Public Beta")
(termFormat ChineseTraditionalLanguage MacOSXPublicBeta "Mac OS X 公開測試版")
(termFormat ChineseLanguage MacOSXPublicBeta "Mac OS X 公开测试版")
(termFormat JapaneseLanguage MacOSXPublicBeta "Mac OS X パブリックベータ")
(termFormat EnglishLanguage MacOSXPublicBeta "Mac OS Kodiak")
(termFormat ChineseTraditionalLanguage MacOSXPublicBeta "Mac OS Kodiak")
(termFormat ChineseLanguage MacOSXPublicBeta "Mac OS Kodiak")
(termFormat JapaneseLanguage MacOSXPublicBeta "Mac OS Kodiak")
(termFormat EnglishLanguage MacOSXPublicBeta "Kodiak")
(termFormat ChineseTraditionalLanguage MacOSXPublicBeta "Kodiak")
(termFormat ChineseLanguage MacOSXPublicBeta "Kodiak")
(termFormat JapaneseLanguage MacOSXPublicBeta "Kodiak")
(subclass MacOSXPublicBeta AppleMacOSX)
(documentation MacOSX10_0 EnglishLanguage "Mac OS X 10.0 – code name Cheetah")
(documentation MacOSX10_0 ChineseTraditionalLanguage "Mac OS X 10.0 – 代號為 Cheetah")
(documentation MacOSX10_0 ChineseLanguage "Mac OS X 10.0 – 代号为 Cheetah")
(documentation MacOSX10_0 JapaneseLanguage "Mac OS X 10.0 – コードネーム Cheetah")
(termFormat EnglishLanguage MacOSX10_0 "Mac OS 10.0")
(termFormat ChineseTraditionalLanguage MacOSX10_0 "Mac OS 10.0")
(termFormat ChineseLanguage MacOSX10_0 "Mac OS 10.0")
(termFormat JapaneseLanguage MacOSX10_0 "Mac OS 10.0")
(termFormat EnglishLanguage MacOSX10_0 "Mac OS Cheetah")
(termFormat ChineseTraditionalLanguage MacOSX10_0 "Mac OS Cheetah")
(termFormat ChineseLanguage MacOSX10_0 "Mac OS Cheetah")
(termFormat JapaneseLanguage MacOSX10_0 "Mac OS Cheetah")
(termFormat EnglishLanguage MacOSX10_0 "Cheetah")
(termFormat ChineseTraditionalLanguage MacOSX10_0 "Cheetah")
(termFormat ChineseLanguage MacOSX10_0 "Cheetah")
(termFormat JapaneseLanguage MacOSX10_0 "Cheetah")
(subclass MacOSX10_0 AppleMacOSX)
(documentation MacOSX10_1 EnglishLanguage "Mac OS X 10.1 – code name Puma")
(documentation MacOSX10_1 ChineseTraditionalLanguage "Mac OS X 10.1 – 代號為 Puma")
(documentation MacOSX10_1 ChineseLanguage "Mac OS X 10.1 – 代号为 Puma")
(documentation MacOSX10_1 JapaneseLanguage "Mac OS X 10.1 – コードネーム Puma")
(termFormat EnglishLanguage MacOSX10_1 "Mac OS 10.1")
(termFormat ChineseTraditionalLanguage MacOSX10_1 "Mac OS 10.1")
(termFormat ChineseLanguage MacOSX10_1 "Mac OS 10.1")
(termFormat JapaneseLanguage MacOSX10_1 "Mac OS 10.1")
(termFormat EnglishLanguage MacOSX10_1 "Mac OS Puma")
(termFormat ChineseTraditionalLanguage MacOSX10_1 "Mac OS Puma")
(termFormat ChineseLanguage MacOSX10_1 "Mac OS Puma")
(termFormat JapaneseLanguage MacOSX10_1 "Mac OS Puma")
(termFormat EnglishLanguage MacOSX10_1 "Puma")
(termFormat ChineseLanguage MacOSX10_1 "Puma")
(termFormat JapaneseLanguage MacOSX10_1 "Puma")
(subclass MacOSX10_1 AppleMacOSX)
(documentation MacOSX10_2 EnglishLanguage "Mac OS X 10.2 – also marketed as Jaguar")
(documentation MacOSX10_2 ChineseTraditionalLanguage "Mac OS X 10.2 – 亦推廣為 Jaguar")
(documentation MacOSX10_2 ChineseLanguage "Mac OS X 10.2 – 亦推广为 Jaguar")
(documentation MacOSX10_2 JapaneseLanguage "Mac OS X 10.2 – 別名Jaguar")
(termFormat EnglishLanguage MacOSX10_2 "Mac OS 10.2")
(termFormat ChineseTraditionalLanguage MacOSX10_2 "Mac OS 10.2")
(termFormat ChineseLanguage MacOSX10_2 "Mac OS 10.2")
(termFormat JapaneseLanguage MacOSX10_2 "Mac OS 10.2")
(termFormat EnglishLanguage MacOSX10_2 "Mac OS Jaguar")
(termFormat ChineseTraditionalLanguage MacOSX10_2 "Mac OS Jaguar")
(termFormat ChineseLanguage MacOSX10_2 "Mac OS Jaguar")
(termFormat JapaneseLanguage MacOSX10_2 "Mac OS Jaguar")
(termFormat EnglishLanguage MacOSX10_2 "Jaguar")
(termFormat ChineseTraditionalLanguage MacOSX10_2 "Jaguar")
(termFormat ChineseLanguage MacOSX10_2 "Jaguar")
(termFormat JapaneseLanguage MacOSX10_2 "Jaguar")
(subclass MacOSX10_2 AppleMacOSX)
(documentation MacOSXPanther EnglishLanguage "Mac OS X Panther – 10.3")
(documentation MacOSXPanther ChineseTraditionalLanguage "Mac OS X Panther – 10.3")
(documentation MacOSXPanther ChineseLanguage "Mac OS X Panther – 10.3")
(documentation MacOSXPanther JapaneseLanguage "Mac OS X Panther – 10.3")
(termFormat EnglishLanguage MacOSXPanther "Mac OS 10.3")
(termFormat ChineseTraditionalLanguage MacOSXPanther "Mac OS 10.3")
(termFormat ChineseLanguage MacOSXPanther "Mac OS 10.3")
(termFormat JapaneseLanguage MacOSXPanther "Mac OS 10.3")
(termFormat EnglishLanguage MacOSXPanther "Mac OS Panther")
(termFormat ChineseTraditionalLanguage MacOSXPanther "Mac OS Panther")
(termFormat ChineseLanguage MacOSXPanther "Mac OS Panther")
(termFormat JapaneseLanguage MacOSXPanther "Mac OS Panther")
(termFormat EnglishLanguage MacOSXPanther "Panther")
(termFormat ChineseTraditionalLanguage MacOSXPanther "Panther")
(termFormat ChineseLanguage MacOSXPanther "Panther")
(termFormat JapaneseLanguage MacOSXPanther "Panther")
(subclass MacOSXPanther AppleMacOSX)
(documentation MacOSXTiger EnglishLanguage "Mac OS X Tiger – 10.4")
(documentation MacOSXTiger ChineseTraditionalLanguage "Mac OS X Tiger – 10.4")
(documentation MacOSXTiger ChineseLanguage "Mac OS X Tiger – 10.4")
(documentation MacOSXTiger JapaneseLanguage "Mac OS X Tiger – 10.4")
(termFormat EnglishLanguage MacOSXTiger "Mac OS 10.4")
(termFormat ChineseTraditionalLanguage MacOSXTiger "Mac OS 10.4")
(termFormat ChineseLanguage MacOSXTiger "Mac OS 10.4")
(termFormat JapaneseLanguage MacOSXTiger "Mac OS 10.4")
(termFormat EnglishLanguage MacOSXTiger "Mac OS Tiger")
(termFormat ChineseTraditionalLanguage MacOSXTiger "Mac OS Tiger")
(termFormat ChineseLanguage MacOSXTiger "Mac OS Tiger")
(termFormat JapaneseLanguage MacOSXTiger "Mac OS Tiger")
(termFormat EnglishLanguage MacOSXTiger "Tiger")
(termFormat ChineseTraditionalLanguage MacOSXTiger "Tiger")
(termFormat ChineseLanguage MacOSXTiger "Tiger")
(termFormat JapaneseLanguage MacOSXTiger "Tiger")
(subclass MacOSXTiger AppleMacOSX)
(documentation MacOSXLeopard EnglishLanguage "Mac OS X Leopard – 10.5")
(documentation MacOSXLeopard ChineseTraditionalLanguage "Mac OS X Leopard – 10.5")
(documentation MacOSXLeopard ChineseLanguage "Mac OS X Leopard – 10.5")
(documentation MacOSXLeopard JapaneseLanguage "Mac OS X Leopard – 10.5")
(termFormat EnglishLanguage MacOSXLeopard "Mac OS 10.5")
(termFormat ChineseTraditionalLanguage MacOSXLeopard "Mac OS 10.5")
(termFormat ChineseLanguage MacOSXLeopard "Mac OS 10.5")
(termFormat JapaneseLanguage MacOSXLeopard "Mac OS 10.5")
(termFormat EnglishLanguage MacOSXLeopard "Mac OS Leopard")
(termFormat ChineseTraditionalLanguage MacOSXLeopard "Mac OS Leopard")
(termFormat ChineseLanguage MacOSXLeopard "Mac OS Leopard")
(termFormat JapaneseLanguage MacOSXLeopard "Mac OS Leopard")
(termFormat EnglishLanguage MacOSXLeopard "Leopard")
(termFormat ChineseTraditionalLanguage MacOSXLeopard "Leopard")
(termFormat ChineseLanguage MacOSXLeopard "Leopard")
(termFormat JapaneseLanguage MacOSXLeopard "Leopard")
(subclass MacOSXLeopard AppleMacOSX)
(documentation MacOSXSnowLeopard EnglishLanguage "Leopard Mac OS X Snow Leopard – 10.6")
(documentation MacOSXSnowLeopard ChineseTraditionalLanguage "Leopard Mac OS X Snow Leopard – 10.6")
(documentation MacOSXSnowLeopard ChineseLanguage "Leopard Mac OS X Snow Leopard – 10.6")
(documentation MacOSXSnowLeopard JapaneseLanguage "Leopard Mac OS X Snow Leopard – 10.6")
(termFormat EnglishLanguage MacOSXSnowLeopard "Mac OS 10.6")
(termFormat ChineseTraditionalLanguage MacOSXSnowLeopard "Mac OS 10.6")
(termFormat ChineseLanguage MacOSXSnowLeopard "Mac OS 10.6")
(termFormat JapaneseLanguage MacOSXSnowLeopard "Mac OS 10.6")
(termFormat EnglishLanguage MacOSXSnowLeopard "Mac OS Snow Leopard")
(termFormat ChineseTraditionalLanguage MacOSXSnowLeopard "Mac OS Snow Leopard")
(termFormat ChineseLanguage MacOSXSnowLeopard "Mac OS Snow Leopard")
(termFormat JapaneseLanguage MacOSXSnowLeopard "Mac OS Snow Leopard")
(termFormat EnglishLanguage MacOSXSnowLeopard "Snow Leopard")
(termFormat ChineseTraditionalLanguage MacOSXSnowLeopard "Snow Leopard")
(termFormat ChineseLanguage MacOSXSnowLeopard "Snow Leopard")
(termFormat JapaneseLanguage MacOSXSnowLeopard "Snow Leopard")
(subclass MacOSXSnowLeopard AppleMacOSX)
(documentation MacOSXLion EnglishLanguage "Mac OS X Lion – 10.7 – also marketed as OS X Lion")
(documentation MacOSXLion ChineseTraditionalLanguage "Mac OS X Lion – 10.7 – 也稱為 OS X Lion")
(documentation MacOSXLion ChineseLanguage "Mac OS X Lion – 10.7 – 也称为
OS X Lion")
(documentation MacOSXLion JapaneseLanguage "Mac OS X Lion – 10.7 – 別名OS X Lion")
(termFormat EnglishLanguage MacOSXLion "Mac OS 10.7")
(termFormat ChineseTraditionalLanguage MacOSXLion "Mac OS 10.7")
(termFormat ChineseLanguage MacOSXLion "Mac OS 10.7")
(termFormat JapaneseLanguage MacOSXLion "Mac OS 10.7")
(termFormat EnglishLanguage MacOSXLion "Mac OS Lion")
(termFormat ChineseTraditionalLanguage MacOSXLion "Mac OS Lion")
(termFormat ChineseLanguage MacOSXLion "Mac OS Lion")
(termFormat JapaneseLanguage MacOSXLion "Mac OS Lion")
(termFormat EnglishLanguage MacOSXLion "Lion")
(termFormat ChineseTraditionalLanguage MacOSXLion "Lion")
(termFormat ChineseLanguage MacOSXLion "Lion")
(termFormat JapaneseLanguage MacOSXLion "Lion")
(subclass MacOSXLion AppleMacOSX)
(documentation MacOSXMountainLion EnglishLanguage "OS X Mountain Lion – 10.8")
(documentation MacOSXMountainLion ChineseTraditionalLanguage "OS X Mountain Lion – 10.8")
(documentation MacOSXMountainLion ChineseLanguage "OS X Mountain Lion – 10.8")
(documentation MacOSXMountainLion JapaneseLanguage "OS X Mountain Lion – 10.8")
(termFormat EnglishLanguage MacOSXMountainLion "OS 10.8")
(termFormat ChineseTraditionalLanguage MacOSXMountainLion "OS 10.8")
(termFormat ChineseLanguage MacOSXMountainLion "OS 10.8")
(termFormat JapaneseLanguage MacOSXMountainLion "OS 10.8")
(termFormat EnglishLanguage MacOSXMountainLion "Mac OS Mountain Lion")
(termFormat ChineseTraditionalLanguage MacOSXMountainLion "Mac OS Mountain Lion")
(termFormat ChineseLanguage MacOSXMountainLion "Mac OS Mountain Lion")
(termFormat JapaneseLanguage MacOSXMountainLion "Mac OS Mountain Lion")
(termFormat EnglishLanguage MacOSXMountainLion "Mountain Lion")
(termFormat ChineseTraditionalLanguage MacOSXMountainLion "Mountain Lion")
(termFormat ChineseLanguage MacOSXMountainLion "Mountain Lion")
(termFormat JapaneseLanguage MacOSXMountainLion "Mountain Lion")
(subclass MacOSXMountainLion AppleMacOSX)
(documentation MacOSXMavericks EnglishLanguage "OS X Mavericks – 10.9")
(documentation MacOSXMavericks ChineseTraditionalLanguage "OS X Mavericks – 10.9")
(documentation MacOSXMavericks ChineseLanguage "OS X Mavericks – 10.9")
(documentation MacOSXMavericks JapaneseLanguage "OS X Mavericks – 10.9")
(termFormat EnglishLanguage MacOSXMavericks "OS 10.9")
(termFormat ChineseTraditionalLanguage MacOSXMavericks "OS 10.9")
(termFormat ChineseLanguage MacOSXMavericks "OS 10.9")
(termFormat JapaneseLanguage MacOSXMavericks "OS 10.9")
(termFormat EnglishLanguage MacOSXMavericks "Mac OS Mavericks")
(termFormat JapaneseLanguage MacOSXMavericks "Mac OS Mavericks")
(termFormat EnglishLanguage MacOSXMavericks "Mavericks")
(termFormat ChineseTraditionalLanguage MacOSXMavericks "Mavericks")
(termFormat ChineseLanguage MacOSXMavericks "Mavericks")
(termFormat JapaneseLanguage MacOSXMavericks "Mavericks")
(subclass MacOSXMavericks AppleMacOSX)
(documentation MacOSXYosemite EnglishLanguage "OS X Yosemite – 10.10")
(documentation MacOSXYosemite ChineseTraditionalLanguage "OS X Yosemite – 10.10")
(documentation MacOSXYosemite ChineseLanguage "OS X Yosemite – 10.10")
(documentation MacOSXYosemite JapaneseLanguage "OS X Yosemite – 10.10")
(termFormat EnglishLanguage MacOSXYosemite "OS 10.10")
(termFormat ChineseTraditionalLanguage MacOSXYosemite "OS 10.10")
(termFormat ChineseLanguage MacOSXYosemite "OS 10.10")
(termFormat JapaneseLanguage MacOSXYosemite "OS 10.10")
(termFormat EnglishLanguage MacOSXYosemite "Mac OS Yosemite")
(termFormat ChineseTraditionalLanguage MacOSXYosemite "Mac OS Yosemite")
(termFormat ChineseLanguage MacOSXYosemite "Mac OS Yosemite")
(termFormat JapaneseLanguage MacOSXYosemite "Mac OS Yosemite")
(termFormat EnglishLanguage MacOSXYosemite "Yosemite")
(termFormat ChineseTraditionalLanguage MacOSXYosemite "Yosemite")
(termFormat ChineseLanguage MacOSXYosemite "Yosemite")
(termFormat JapaneseLanguage MacOSXYosemite "Yosemite")
(subclass MacOSXYosemite AppleMacOSX)
(documentation MacOSXElCapitan EnglishLanguage "OS X El Capitan – 10.11")
(documentation MacOSXElCapitan ChineseTraditionalLanguage "OS X El Capitan – 10.11")
(documentation MacOSXElCapitan ChineseLanguage "OS X El Capitan – 10.11")
(documentation MacOSXElCapitan JapaneseLanguage "OS X El Capitan – 10.11")
(termFormat EnglishLanguage MacOSXElCapitan "OS 10.11")
(termFormat ChineseTraditionalLanguage MacOSXElCapitan "OS 10.11")
(termFormat ChineseLanguage MacOSXElCapitan "OS 10.11")
(termFormat JapaneseLanguage MacOSXElCapitan "OS 10.11")
(termFormat EnglishLanguage MacOSXElCapitan "Mac OS El Capitan")
(termFormat ChineseTraditionalLanguage MacOSXElCapitan "Mac OS El Capitan")
(termFormat ChineseLanguage MacOSXElCapitan "Mac OS El Capitan")
(termFormat JapaneseLanguage MacOSXElCapitan "Mac OS El Capitan")
(termFormat EnglishLanguage MacOSXElCapitan "El Capitan")
(termFormat ChineseTraditionalLanguage MacOSXElCapitan "El Capitan")
(termFormat ChineseLanguage MacOSXElCapitan "El Capitan")
(termFormat JapaneseLanguage MacOSXElCapitan "El Capitan")
(subclass MacOSXElCapitan AppleMacOSX)
(documentation MacOSSierra EnglishLanguage "macOS Sierra – 10.12")
(documentation MacOSSierra ChineseTraditionalLanguage "macOS Sierra – 10.12")
(documentation MacOSSierra ChineseLanguage "macOS Sierra – 10.12")
(documentation MacOSSierra JapaneseLanguage "macOS Sierra – 10.12")
(termFormat EnglishLanguage MacOSSierra "macOS 10.12")
(termFormat ChineseTraditionalLanguage MacOSSierra "macOS 10.12")
(termFormat ChineseLanguage MacOSSierra "macOS 10.12")
(termFormat JapaneseLanguage MacOSSierra "macOS 10.12")
(termFormat EnglishLanguage MacOSSierra "Mac OS Sierra")
(termFormat ChineseTraditionalLanguage MacOSSierra "Mac OS Sierra")
(termFormat ChineseLanguage MacOSSierra "Mac OS Sierra")
(termFormat JapaneseLanguage MacOSSierra "Mac OS Sierra")
(termFormat EnglishLanguage MacOSSierra "Sierra")
(termFormat ChineseTraditionalLanguage MacOSSierra "Sierra")
(termFormat ChineseLanguage MacOSSierra "Sierra")
(termFormat JapaneseLanguage MacOSSierra "Sierra")
(subclass MacOSSierra AppleMacOSX)
(documentation MacOSHighSierra EnglishLanguage "macOS High Sierra – 10.13")
(documentation MacOSHighSierra ChineseTraditionalLanguage "macOS High Sierra – 10.13")
(documentation MacOSHighSierra ChineseLanguage "macOS High Sierra – 10.13")
(documentation MacOSHighSierra JapaneseLanguage "macOS High Sierra – 10.13")
(termFormat EnglishLanguage MacOSHighSierra "macOS 10.13")
(termFormat ChineseTraditionalLanguage MacOSHighSierra "macOS 10.13")
(termFormat ChineseLanguage MacOSHighSierra "macOS 10.13")
(termFormat JapaneseLanguage MacOSHighSierra "macOS 10.13")
(termFormat EnglishLanguage MacOSHighSierra "Mac OS High Sierra")
(termFormat ChineseTraditionalLanguage MacOSHighSierra "Mac OS High Sierra")
(termFormat ChineseLanguage MacOSHighSierra "Mac OS High Sierra")
(termFormat JapaneseLanguage MacOSHighSierra "Mac OS High Sierra")
(termFormat EnglishLanguage MacOSHighSierra "High Sierra")
(termFormat ChineseTraditionalLanguage MacOSHighSierra "High Sierra")
(termFormat ChineseLanguage MacOSHighSierra "High Sierra")
(termFormat JapaneseLanguage MacOSHighSierra "High Sierra")
(subclass MacOSHighSierra AppleMacOSX)
(documentation MacOSMojave EnglishLanguage "macOS Mojave – 10.14")
(documentation MacOSMojave ChineseTraditionalLanguage "macOS Mojave – 10.14")
(documentation MacOSMojave ChineseLanguage "macOS Mojave – 10.14")
(documentation MacOSMojave JapaneseLanguage "macOS Mojave – 10.14")
(termFormat EnglishLanguage MacOSMojave "macOS 10.14")
(termFormat ChineseTraditionalLanguage MacOSMojave "macOS 10.14")
(termFormat ChineseLanguage MacOSMojave "macOS 10.14")
(termFormat JapaneseLanguage MacOSMojave "macOS 10.14")
(termFormat EnglishLanguage MacOSMojave "Mac OS Mojave")
(termFormat ChineseTraditionalLanguage MacOSMojave "Mac OS Mojave")
(termFormat ChineseLanguage MacOSMojave "Mac OS Mojave")
(termFormat JapaneseLanguage MacOSMojave "Mac OS Mojave")
(termFormat EnglishLanguage MacOSMojave "Mojave")
(termFormat ChineseTraditionalLanguage MacOSMojave "Mojave")
(termFormat ChineseLanguage MacOSMojave "Mojave")
(termFormat JapaneseLanguage MacOSMojave "Mojave")
(subclass MacOSMojave AppleMacOSX)
(documentation MacOSCatalina EnglishLanguage "macOS Catalina - 10.15")
(documentation MacOSCatalina ChineseTraditionalLanguage "macOS Catalina - 10.15")
(documentation MacOSCatalina ChineseLanguage "macOS Catalina - 10.15")
(documentation MacOSCatalina JapaneseLanguage "macOS Catalina - 10.15")
(termFormat EnglishLanguage MacOSCatalina "macOS 10.15")
(termFormat ChineseTraditionalLanguage MacOSCatalina "macOS 10.15")
(termFormat ChineseLanguage MacOSCatalina "macOS 10.15")
(termFormat JapaneseLanguage MacOSCatalina "macOS 10.15")
(termFormat EnglishLanguage MacOSCatalina "Mac OS Catalina")
(termFormat ChineseTraditionalLanguage MacOSCatalina "Mac OS Catalina")
(termFormat ChineseLanguage MacOSCatalina "Mac OS Catalina")
(termFormat JapaneseLanguage MacOSCatalina "Mac OS Catalina")
(termFormat EnglishLanguage MacOSCatalina "Catalina")
(termFormat ChineseTraditionalLanguage MacOSCatalina "Catalina")
(termFormat ChineseLanguage MacOSCatalina "Catalina")
(termFormat JapaneseLanguage MacOSCatalina "Catalina")
(subclass MacOSCatalina AppleMacOSX)
(subclass AppleIPad TabletComputer)
(subclass AppleIPad AppleComputer)
(documentation AppleIPad EnglishLanguage "&%TabletComputer developed and
sold by &%AppleComputerCorporation")
(documentation AppleIPad ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%TabletComputer 。")
(documentation AppleIPad ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%TabletComputer 。")
(documentation AppleIPad JapaneseLanguage "&%TabletComputerは&%AppleComputerCorporationに
よって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPad "iPad")
(termFormat ChineseTraditionalLanguage AppleIPad "iPad")
(termFormat ChineseLanguage AppleIPad "iPad")
(termFormat JapaneseLanguage AppleIPad "iPad")
(subclass AppleIPhone MobileCellPhone)
(subclass AppleIPhone AppleComputer)
(documentation AppleIPhone EnglishLanguage "&%MobileCellPhone developed and
sold by &%AppleComputerCorporation")
(documentation AppleIPhone ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%MobileCellPhone 。")
(documentation AppleIPhone ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%MobileCellPhone 。")
(documentation AppleIPhone JapaneseLanguage "&%MobileCellPhoneは&%AppleComputerCorporation
によって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPhone "iPhone")
(termFormat ChineseTraditionalLanguage AppleIPhone "iPhone")
(termFormat ChineseLanguage AppleIPhone "iPhone")
(termFormat JapaneseLanguage AppleIPhone "iPhone")
(subclass AppleIPhone1 AppleIPhone)
(subclass AppleIPhone3g AppleIPhone)
(subclass AppleIPhone3GS AppleIPhone)
(subclass AppleIPhone4 AppleIPhone)
(subclass AppleIPhone4s AppleIPhone)
(subclass AppleIPhone5 AppleIPhone)
(subclass AppleIPhone5c AppleIPhone)
(subclass AppleIPhone5s AppleIPhone)
(subclass AppleIPhone6 AppleIPhone)
(subclass AppleIPhone6plus AppleIPhone)
(subclass AppleIPhone6s AppleIPhone)
(subclass AppleIPhone6splus AppleIPhone)
(subclass AppleIPhonese AppleIPhone)
(subclass AppleIPhone7 AppleIPhone)
(subclass AppleIPhone7plus AppleIPhone)
(subclass AppleIPhone8 AppleIPhone)
(subclass AppleIPhone8plus AppleIPhone)
(subclass AppleIPhoneX AppleIPhone)
(subclass AppleIPhoneXS AppleIPhone)
(subclass AppleIPhoneXSmax AppleIPhone)
(subclass AppleIPhoneXR AppleIPhone)
(subclass AppleIPhone11 AppleIPhone)
(subclass AppleIPhone11pro AppleIPhone)
(subclass AppleIPhone11ProMax AppleIPhone)
(termFormat EnglishLanguage AppleIPhone1 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone3g "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone3GS "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone4 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone4s "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone5 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone5c "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone5s "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone6 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone6plus "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone6s "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone6splus "Apple iPhone")
(termFormat EnglishLanguage AppleIPhonese "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone7 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone7plus "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone8 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone8plus "Apple iPhone")
(termFormat EnglishLanguage AppleIPhoneX "Apple iPhone")
(termFormat EnglishLanguage AppleIPhoneXS "Apple iPhone")
(termFormat EnglishLanguage AppleIPhoneXSmax "Apple iPhone")
(termFormat EnglishLanguage AppleIPhoneXR "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone11 "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone11pro "Apple iPhone")
(termFormat EnglishLanguage AppleIPhone11ProMax "Apple iPhone")
(deviceOS AppleIPhone1 AppleIPhoneOS1)
(deviceOS AppleIPhone3g AppleIPhoneOS2)
(deviceOS AppleIPhone3GS AppleIPhoneOS3)
(deviceOS AppleIPhone4 AppleIPhoneOS4)
(deviceOS AppleIPhone4s AppleIPhoneOS5)
(deviceOS AppleIPhone5 AppleIPhoneOS6)
(deviceOS AppleIPhone5c AppleIPhoneOS7)
(deviceOS AppleIPhone5s AppleIPhoneOS7)
(deviceOS AppleIPhone6 AppleIPhoneOS8)
(deviceOS AppleIPhone6plus AppleIPhoneOS8)
(subclass AppleIPhoneOS901 AppleIPhoneOS9)
(deviceOS AppleIPhone6s AppleIPhoneOS901)
(deviceOS AppleIPhone6splus AppleIPhoneOS901)
(deviceOS AppleIPhonese AppleIPhoneOS93)
(subclass AppleIPhoneOS93 AppleIPhoneOS9)
(deviceOS AppleIPhone7 AppleIPhoneOS10)
(deviceOS AppleIPhone7plus AppleIPhoneOS10)
(deviceOS AppleIPhone8 AppleIPhoneOS11)
(deviceOS AppleIPhone8plus AppleIPhoneOS11)
(deviceOS AppleIPhoneX AppleIPhoneOS111)
(subclass AppleIPhoneOS111 AppleIPhoneOS11)
(deviceOS AppleIPhoneXS AppleIPhoneOS12)
(deviceOS AppleIPhoneXSmax AppleIPhoneOS12)
(deviceOS AppleIPhoneXR AppleIPhoneOS12)
(deviceOS AppleIPhone11 AppleIPhoneOS13)
(deviceOS AppleIPhone11pro AppleIPhoneOS13)
(deviceOS AppleIPhone11ProMax AppleIPhoneOS13)
(instance deviceOS BinaryRelation)
(domainSubclass deviceOS 1 OperatingSystem)
(domainSubclass deviceOS 2 Computer)
(subrelation deviceOS canRunOn)
(documentation deviceOS EnglishLanguage "Instances of a &%Computer are intended to run versions of the given
&%OperatingSystem. Note that this does not cover cases of a device that is hacked or subject to &%Jailbreaking
in order to run a given OS that was not intended for the device.")
(=>
(and
(deviceOS ?C ?OS)
(instance ?CI ?C)
(instance ?OSI ?OS)
(manufacturer ?C ?ORG))
(desires ?ORG
(and
(programRunning ?PROC ?OSI)
(computerRunning ?PROC ?CI))))
(subclass AppleIMac AppleComputer)
(documentation AppleIMac EnglishLanguage "&%Computer developed and sold by &%AppleComputerCorporation")
(documentation AppleIMac ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%Computer 。")
(documentation AppleIMac ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%Computer 。")
(termFormat EnglishLanguage AppleIMac "iMac")
(termFormat ChineseTraditionalLanguage AppleIMac "iMac")
(termFormat ChineseLanguage AppleIMac "iMac")
(termFormat JapaneseLanguage AppleIMac "iMac")
(canRunOn AppleMacOSX AppleIMac)
(subclass AppleMacPro AppleComputer)
(documentation AppleMacPro EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation")
(documentation AppleMacPro ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%Computer 。")
(documentation AppleMacPro ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%Computer 。")
(documentation AppleMacPro JapaneseLanguage "&%Computerは&%AppleComputerCorporationによって
開発そして販売されている。")
(termFormat EnglishLanguage AppleMacPro "Mac Pro")
(termFormat ChineseTraditionalLanguage AppleMacPro "Mac Pro")
(termFormat ChineseLanguage AppleMacPro "Mac Pro")
(termFormat JapaneseLanguage AppleMacPro "Mac Pro")
(canRunOn AppleMacOSX AppleMacPro)
(subclass AppleMacBookPro AppleComputer)
(subclass AppleMacBookPro Laptop)
(documentation AppleMacBookPro EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation")
(documentation AppleMacBookPro ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%Computer 。")
(documentation AppleMacBookPro ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%Computer 。")
(documentation AppleMacBookPro JapaneseLanguage "&%Computerは&%AppleComputerCorporationに
よって開発そして販売されている。")
(termFormat EnglishLanguage AppleMacBookPro "Macbook Pro")
(termFormat ChineseTraditionalLanguage AppleMacBookPro "Macbook Pro")
(termFormat ChineseLanguage AppleMacBookPro "Macbook Pro")
(termFormat JapaneseLanguage AppleMacBookPro "Macbook Pro")
(canRunOn AppleMacOSX AppleMacBookPro)
(subclass AppleMacBookAir AppleComputer)
(subclass AppleMacBookAir Laptop)
(documentation AppleMacBookAir EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation")
(documentation AppleMacBookAir ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%Computer 。")
(documentation AppleMacBookAir ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%Computer 。")
(documentation AppleMacBookAir JapaneseLanguage "&%Computerは&%AppleComputerCorporationに
よって開発そして販売されている。")
(termFormat EnglishLanguage AppleMacBookAir "Macbook Air")
(termFormat ChineseTraditionalLanguage AppleMacBookAir "Macbook Air")
(termFormat ChineseLanguage AppleMacBookAir "Macbook Air")
(termFormat JapaneseLanguage AppleMacBookAir "Macbook Air")
(canRunOn AppleMacOSX AppleMacBookAir)
(subclass AppleMacBook AppleComputer)
(subclass AppleMacBook Laptop)
(documentation AppleMacBook EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation")
(documentation AppleMacBook ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且販售的 &%Computer。")
(documentation AppleMacBook ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售的 &%Computer。")
(documentation AppleMacBook JapaneseLanguage "&%Computerは&%AppleComputerCorporationに
よって開発そして販売されている。")
(termFormat EnglishLanguage AppleMacBook "Macbook")
(termFormat ChineseTraditionalLanguage AppleMacBook "Macbook")
(termFormat ChineseLanguage AppleMacBook "Macbook")
(termFormat JapaneseLanguage AppleMacBook "Macbook")
(canRunOn AppleMacOSX AppleMacBook)
(subclass AppleIPod AppleComputer)
(subclass AppleIPod MediaSystem)
(documentation AppleIPod EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation for playing &%Recordings")
(documentation AppleIPod ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且發售,用來播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPod ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售,用来播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPod JapaneseLanguage "&%Computerは&%Recordingsの再生目的で&%AppleComputerCorporationによって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPod "iPod")
(termFormat ChineseTraditionalLanguage AppleIPod "iPod")
(termFormat ChineseLanguage AppleIPod "iPod")
(termFormat JapaneseLanguage AppleIPod "iPod")
(subclass AppleIPodTouch AppleIPod)
(documentation AppleIPodTouch EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation for playing &%Recordings")
(documentation AppleIPodTouch ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且發售,用來播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodTouch ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售,用来播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodTouch JapaneseLanguage "&%Computerは&%Recordingsの再生目的で
&%AppleComputerCorporationによって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPodTouch "iPod touch")
(termFormat ChineseTraditionalLanguage AppleIPodTouch "iPod touch")
(termFormat ChineseLanguage AppleIPodTouch "iPod touch")
(termFormat JapaneseLanguage AppleIPodTouch "iPod touch")
(subclass AppleIPodNano AppleIPod)
(documentation AppleIPodNano EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation for playing &%Recordings")
(documentation AppleIPodNano ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且發售,用來播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodNano ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售,用来播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodNano JapaneseLanguage "&%Computerは&%Recordingsの再生目的で
&%AppleComputerCorporationによって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPodNano "iPod nano")
(termFormat ChineseTraditionalLanguage AppleIPodNano "iPod nano")
(termFormat ChineseLanguage AppleIPodNano "iPod nano")
(termFormat JapaneseLanguage AppleIPodNano "iPod nano")
(subclass AppleIPodShuffle AppleIPod)
(documentation AppleIPodShuffle EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation for playing &%Recordings")
(documentation AppleIPodShuffle ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且發售,用來播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodShuffle ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售,用来播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodShuffle JapaneseLanguage "&%Computerは&%Recordingsの再生目的で
&%AppleComputerCorporationによって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPodShuffle "iPod shuffle")
(termFormat ChineseTraditionalLanguage AppleIPodShuffle "iPod shuffle")
(termFormat ChineseLanguage AppleIPodShuffle "iPod shuffle")
(termFormat JapaneseLanguage AppleIPodShuffle "iPod shuffle")
(subclass AppleIPodClassic AppleIPod)
(documentation AppleIPodClassic EnglishLanguage "&%Computer developed and
sold by &%AppleComputerCorporation for playing &%Recordings")
(documentation AppleIPodClassic ChineseTraditionalLanguage "由 &%AppleComputerCorporation 開發並且發售,用来播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodClassic ChineseLanguage "由 &%AppleComputerCorporation 开发并且发售,用来播放 &%Recordings 的 &%Computer 。")
(documentation AppleIPodClassic JapaneseLanguage "&%Computerは&%Recordingsの再生目的で
&%AppleComputerCorporationによって開発そして販売されている。")
(termFormat EnglishLanguage AppleIPodClassic "iPod classic")
(termFormat ChineseTraditionalLanguage AppleIPodClassic "iPod classic")
(termFormat ChineseLanguage AppleIPodClassic "iPod classic")
(termFormat JapaneseLanguage AppleIPodClassic "iPod classic")
(subclass AppleGarageBand ComputerProgram)
(termFormat EnglishLanguage AppleGarageBand "GarageBand")
(termFormat ChineseTraditionalLanguage AppleGarageBand "GarageBand")
(termFormat ChineseLanguage AppleGarageBand "GarageBand")
(termFormat JapaneseLanguage AppleGarageBand "GarageBand")
(subclass AppleIMovie ComputerProgram)
(termFormat EnglishLanguage AppleIMovie "iMovie")
(termFormat ChineseTraditionalLanguage AppleIMovie "iMovie")
(termFormat ChineseLanguage AppleIMovie "iMovie")
(termFormat JapaneseLanguage AppleIMovie "iMovie")
(subclass AppleIMessages ComputerProgram)
(termFormat EnglishLanguage AppleIMessages "iMessages")
(termFormat ChineseTraditionalLanguage AppleIMessages "iMessages")
(termFormat ChineseLanguage AppleIMessages "iMessages")
(termFormat JapaneseLanguage AppleIMessages "iMessages")
(subclass AppleICloud ComputerProgram)
(termFormat EnglishLanguage AppleICloud "iCloud")
(termFormat ChineseTraditionalLanguage AppleICloud "iCloud")
(termFormat ChineseLanguage AppleICloud "iCloud")
(termFormat JapaneseLanguage AppleICloud "iCloud")
(subclass AppleILife ComputerProgram)
(termFormat EnglishLanguage AppleILife "iLife")
(termFormat ChineseTraditionalLanguage AppleILife "iLife")
(termFormat ChineseLanguage AppleILife "iLife")
(termFormat JapaneseLanguage AppleILife "iLife")
(subclass AppleIWork ComputerProgram)
(termFormat EnglishLanguage AppleIWork "iWork")
(termFormat ChineseTraditionalLanguage AppleIWork "iWork")
(termFormat ChineseLanguage AppleIWork "iWork")
(termFormat JapaneseLanguage AppleIWork "iWork")
(subclass AppleFaceTime ComputerProgram)
(termFormat EnglishLanguage AppleFaceTime "FaceTime")
(termFormat ChineseTraditionalLanguage AppleFaceTime "FaceTime")
(termFormat ChineseLanguage AppleFaceTime "FaceTime")
(termFormat JapaneseLanguage AppleFaceTime "FaceTime")
(documentation AppleFaceTime EnglishLanguage "FaceTime is a proprietary video telephony
product developed by Apple Inc. FaceTime is available on supported iOS mobile devices
and Macintosh computers that run Mac OS X 10.6.6 and later. FaceTime supports any iOS
device with a forward-facing camera and any Macintosh computer equipped with a FaceTime
Camera. (from Wikipedia)")
(documentation AppleFaceTime ChineseTraditionalLanguage "Facetime 是個蘋果公司發展且擁有的通訊產品。
FaceTime 是可用在有支援 iOS 的行動裝置跟執行在Mac OS X 10.6.6或更新版本的麥金塔電腦。
FaceTime 支援任何有前置攝影機的iOS裝置和任何有配備 FaceTime 攝影機的麥金塔電腦。(資料轉載由維基百科)")
(documentation AppleFaceTime ChineseLanguage "Facetime 是个苹果公司发展且拥有的通讯产品。
FaceTime 是可用在有支援iOS 的行动装置跟执行在Mac OS X 10.6.6或更新版本的麦金塔电脑。
FaceTime 支援任何有前置摄影机的iOS装置和任何有配备 FaceTime 摄影机的麦金塔电脑。(资料转载由维基百科)")
(documentation AppleFaceTime JapaneseLanguage "FaceTimeは、アップルが開発したVoIP、ビデオ
通話(ビデオ電話)ソフトウェアアプリケーション、およびそれに関連するプロトコルである。 iOSの
携帯情報端末やMac OS X v10.6.6以降のMacintoshコンピュータに対応する。使用にはiOSデバイスでは
前面搭載カメラ(iPhone 4以降の全iOSデバイスに搭載)、MacintoshコンピュータではWebカメラが必要と
なる。ビデオ通話は「FaceTime」、音声通話は「FaceTimeオーディオ」と呼ばれる。(ウィキペディア参照)")
(documentation AppleFairPlay EnglishLanguage "FairPlay is a digital rights management
(DRM) technology developed by Apple Inc. It is built into the MP4 multimedia file format
as an encrypted AAC audio layer, and is used by the company to protect copyrighted works
sold through iTunes Store, allowing only authorized devices to play the content.
(from Wikipedia)")
(documentation AppleFairPlay ChineseTraditionalLanguage " FairPlay 是個由蘋果公司發展數位版權管理的技術
(DRM). 它是被建立在多媒體檔案 格式成加密 AAC 音頻層, 且被公司用來保護透過 iTune Store 販買有版權的產品, 允許只有授權的裝置去讀取內容。 (資料轉載由維基百科)")
(documentation AppleFairPlay ChineseLanguage " FairPlay 是个由苹果公司发展数位版权管理的技术
(DRM). 它是被建立在多媒体档案格式成加密AAC 音频层, 且被公司用来保护透过iTune Store 贩买有版权的产品, 允许只有授权的装置去读取内容。 (资料转载由维基百科)")
(documentation AppleFairPlay JapaneseLanguage " FairPlay(フェアプレー)は、QuickTimeマルチ
メディア技術に内蔵されiPod、iTunes、及びiTunes Storeによって使用されているこのデジタル著作権管理
(DRM : Digital Rights Management) 向けにアップルが名付けた名称である。iTunesと共にiTunes
Storeから購入したそれぞれのファイルはFairPlayと同時にエンコードされている。また同社の携帯音楽
プレーヤーであるiPodシリーズはこの方式のファイルをスムーズにシンクする。(ウィキペディア参照)")
(subclass AppleFairPlay ComputerProgram)
(creator AppleComputerCorporation AppleFairPlay)
(termFormat EnglishLanguage AppleFairPlay "FairPlay")
(termFormat ChineseTraditionalLanguage AppleFairPlay "FairPlay")
(termFormat ChineseLanguage AppleFairPlay "FairPlay")
(termFormat JapaneseLanguage AppleFairPlay "FairPlay")
(subclass AppleSystemManagementController EngineeringComponent)
(termFormat EnglishLanguage AppleSystemManagementController "SMC")
(termFormat ChineseTraditionalLanguage AppleSystemManagementController "SMC")
(termFormat ChineseLanguage AppleSystemManagementController "SMC")
(termFormat JapaneseLanguage AppleSystemManagementController "SMC")
(termFormat EnglishLanguage AppleSystemManagementController "System Management Controller")
(termFormat ChineseTraditionalLanguage AppleSystemManagementController "系统管理控制器")
(termFormat ChineseLanguage AppleSystemManagementController "系统管理控制器")
(termFormat JapaneseLanguage AppleSystemManagementController "システム管理コントローラ")
(manufacturer AppleSystemManagementController AppleComputerCorporation)
(subclass AppleSafari WebBrowser)
(creator AppleComputerCorporation AppleSafari)
(termFormat EnglishLanguage AppleSafari "Safari")
(termFormat ChineseTraditionalLanguage AppleSafari "Safari")
(termFormat ChineseLanguage AppleSafari "Safari")
(termFormat JapaneseLanguage AppleSafari "Safari")
(subclass AppleSetupAssistant ComputerProgram)
(creator AppleComputerCorporation AppleSetupAssistant)
(termFormat EnglishLanguage AppleSetupAssistant "Setup Assistant")
(termFormat ChineseTraditionalLanguage AppleSetupAssistant "設置助理")
(termFormat ChineseLanguage AppleSetupAssistant "设置助理")
(termFormat JapaneseLanguage AppleSetupAssistant "設定アシスタント")
(subclass AppleMigrationAssistant ComputerProgram)
(creator AppleComputerCorporation AppleMigrationAssistant)
(termFormat EnglishLanguage AppleMigrationAssistant "Migration Assistant")
(termFormat ChineseTraditionalLanguage AppleMigrationAssistant "遷移助理")
(termFormat ChineseLanguage AppleMigrationAssistant "迁移助理")
(termFormat JapaneseLanguage AppleMigrationAssistant "Migration Assistant")
;; https://en.wikipedia.org/wiki/List_of_Microsoft_operating_systems
(documentation WindowsOS1 EnglishLanguage "Microsoft Windows 1.0 (1985)")
(documentation WindowsOS1 ChineseTraditionalLanguage "微軟 Windows 1.0 (1985)")
(documentation WindowsOS1 ChineseLanguage "微软 Windows 1.0 (1985)")