This repository has been archived by the owner on Jan 17, 2018. It is now read-only.
forked from ontologyportal/sumo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
domainEnglishFormat.kif
10493 lines (10489 loc) · 721 KB
/
domainEnglishFormat.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
;; 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.
;; We ask that people using or referencing this work cite our primary paper:
;; Niles, I., and Pease, A. 2001. Towards a Standard Upper Ontology. In
;; 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 www.ontologyportal.org
(format EnglishLanguage abbreviation "%1 is %n an &%abbreviation of %2")
(format EnglishLanguage AbortedFn "the &%abortion of %1 by %2")
(format EnglishLanguage AbortedLaunchFn "the &%aborted launch of %2 by %1")
(format EnglishLanguage AbortedMissionFn "the mission of %2 &%aborted by %1")
(format EnglishLanguage absoluteHeight "%2 is %n the &%absolute height of %1")
(format EnglishLanguage AccountFn "the &%account of %1")
(format EnglishLanguage accountNumber "%2 is %n the &%account number of %1")
(format EnglishLanguage accountStatus "%2 is %n the &%account status of %1")
(format EnglishLanguage accruedInterest "%2 is %n the &%accrued interest of %1")
(format EnglishLanguage acquaintance "%2 is %n an &%acquaintance of %1")
(format EnglishLanguage AddressFn "the &%address of %1")
(format EnglishLanguage administrativeCenter "%2 is %n the &%administrative center of %1")
(format EnglishLanguage administrator "%2 is %n the &%administrator of %1")
(format EnglishLanguage administratorStatus "%2 is %n an &%administrator status of %1")
(format EnglishLanguage affiliatedOrganization "%2 is %n an &%affiliated organization of %1")
(format EnglishLanguage agentOperatesInArea "%2 is %n an &%agent operates in area of %1")
(format EnglishLanguage agreementAdoptionDate "%2 is %n an &%agreement adoption date of %1")
(format EnglishLanguage agreementEffectiveDate "%2 is %n an &%agreement effective date of %1")
(format EnglishLanguage agreementEffectiveDuring "%2 is %n an &%agreement effective during of %1")
(format EnglishLanguage AgreementOrganizationFn "the &%agreement organization of %1")
(format EnglishLanguage agreementPeriod "%2 is %n an &%agreement period of %1")
(format EnglishLanguage agreementRevisionDate "%1 %n{doesn't} &%agreement revision date %2 for %3")
(format EnglishLanguage agriculturalProductType "%2 is %n an &%agricultural product type of %1")
(format EnglishLanguage agriculturalProductTypeByRank "%1 %n{doesn't} &%agricultural product type by rank %2 for %3")
;;(format EnglishLanguage AgricultureFn "the &%agriculture of %1")
(format EnglishLanguage aimOfOrganization "%2 is %n an &%aim of organization of %1")
(format EnglishLanguage airTemperature "%2 is %n an &%air temperature of %1")
(format EnglishLanguage alias "%2 is %n an &%alias of %1")
(format EnglishLanguage allegiance "%2 is %n an &%allegiance of %1")
(format EnglishLanguage amountDue "%1 %n{doesn't} &%amount due %2 for %3")
(format EnglishLanguage ancestorOrganization "%2 is %n an &%ancestor organization of %1")
(format EnglishLanguage angularMeasure "%2 is %n an &%angular measure of %1")
(format EnglishLanguage anniversary "%2 is %n an &%anniversary of %1")
(format EnglishLanguage annualElectricityConsumption "%2 is %n an &%annual electricity consumption of %1")
(format EnglishLanguage annualElectricityExport "%2 is %n an &%annual electricity export of %1")
(format EnglishLanguage annualElectricityImport "%2 is %n an &%annual electricity import of %1")
(format EnglishLanguage annualElectricityProduction "%2 is %n an &%annual electricity production of %1")
(format EnglishLanguage annualExpendituresOfArea "%2 is %n an &%annual expenditures of area of %1")
(format EnglishLanguage annualExpendituresOfAreaInPeriod "%1 %n{doesn't} &%annual expenditures of area in period %2 for %3")
(format EnglishLanguage annualExportTotal "%2 is %n an &%annual export total of %1")
(format EnglishLanguage annualImportTotal "%2 is %n an &%annual import total of %1")
(format EnglishLanguage annualRevenuesOfArea "%2 is %n an &%annual revenues of area of %1")
(format EnglishLanguage annualRevenuesOfAreaInPeriod "%1 %n{doesn't} &%annual revenues of area in period %2 for %3")
(format EnglishLanguage arableLandArea "%2 is %n an &%arable land area of %1")
(format EnglishLanguage associatedFunctionality "%2 is %n an &%associated functionality of %1")
(format EnglishLanguage associateInOrganization "%2 is %n an &%associate in organization of %1")
(format EnglishLanguage associateWithStatus "%1 %n{doesn't} &%associate with status %2 for %3")
(format EnglishLanguage AssociativeFunction "the &%associative function of %1 and %2")
(format EnglishLanguage atomicNumber "%2 is %n an &%atomic number of %1")
(format EnglishLanguage atTheMoney "%2 is %n an &%at the money of %1")
(format EnglishLanguage AttrFn "the &%attr of %1 and %2")
(format EnglishLanguage AvailableForMilitaryServiceMaleFn "the &%available for military service male of %1")
(format EnglishLanguage average "%2 is %n an &%average of %1")
(format EnglishLanguage averagePrecipitationForPeriod "%1 %n{doesn't} &%average precipitation for period %2 for %3")
(format EnglishLanguage averageRainfallForPeriod "%1 %n{doesn't} &%average rainfall for period %2 for %3")
(format EnglishLanguage averageTemperatureForPeriod "%1 %n{doesn't} &%average temperature for period %2 for %3")
(format EnglishLanguage axis "%2 is %n an &%axis of %1")
(format EnglishLanguage bandwidthOf "%2 is %n a &%bandwidth of of %1")
(format EnglishLanguage bankAccount "%2 is %n a &%bank account of %1")
(format EnglishLanguage barometricPressure "%2 is %n a &%barometric pressure of %1")
(format EnglishLanguage batchInterArrival "%2 is %n a &%batch inter arrival of %1")
(format EnglishLanguage batchLatency "%2 is %n a &%batch latency of %1")
(format EnglishLanguage benchmark "%2 is %n a &%benchmark of %1")
(format EnglishLanguage benchmarkPerformance "%1 %n{doesn't} &%benchmark performance %2 for %3")
(format EnglishLanguage betweenOnPath "%1 %n{doesn't} &%between on path %2 for %3")
(format EnglishLanguage BinaryFunction "the &%binary function of %1 and %2")
(format EnglishLanguage BinaryPredicate "%2 is %n a &%binary predicate of %1")
(format EnglishLanguage biochemicalAgentAntidote "%1 %n{doesn't} &%biochemical agent antidote %2 for %3")
(format EnglishLanguage biochemicalAgentDelivery "%2 is %n a &%biochemical agent delivery of %1")
(format EnglishLanguage biochemicalAgentSyndrome "%2 is %n a &%biochemical agent syndrome of %1")
(format EnglishLanguage bioindicatorForHabitat "%2 is %n a &%bioindicator for habitat of %1")
(format EnglishLanguage biologicalAgentCarrier "%2 is %n a &%biological agent carrier of %1")
(format EnglishLanguage birthdate "%2 is %n a &%birthdate of %1")
(format EnglishLanguage birthplace "%2 is %n a &%birthplace of %1")
(format EnglishLanguage BirthsPerThousandFn "the &%births per thousand of %1 and %2")
(format EnglishLanguage boilingPoint "%2 is %n a &%boiling point of %1")
(format EnglishLanguage BorderFn "the &%border of %1 and %2")
(format EnglishLanguage buyingPowerAmount "%1 %n{doesn't} &%buying power amount %2 for %3")
(format EnglishLanguage CabinetFn "the &%cabinet of %1")
(format EnglishLanguage caliber "%2 is %n a &%caliber of %1")
(format EnglishLanguage callDate "%2 is %n a &%call date of %1")
(format EnglishLanguage candidateForPosition "%1 %n{doesn't} &%candidate for position %2 for %3")
(format EnglishLanguage capableAtLocation "%1 %n{doesn't} &%capable at location %2 for %3 with %4")
(format EnglishLanguage capacity "%2 is %n a &%capacity of %1")
(format EnglishLanguage capitalCity "%2 is %n a &%capital city of %1")
(format EnglishLanguage capitalExpendituresOfArea "%2 is %n a &%capital expenditures of area of %1")
(format EnglishLanguage capitalExpendituresOfAreaInPeriod "%1 %n{doesn't} &%capital expenditures of area in period %2 for %3")
(format EnglishLanguage cardAccount "%2 is %n a &%card account of %1")
(format EnglishLanguage cardCode "%2 is %n a &%card code of %1")
(format EnglishLanguage cardinality "%2 is %n a &%cardinality of %1")
(format EnglishLanguage cargoType "%2 is %n a &%cargo type of %1")
(format EnglishLanguage CaseRole "%2 is %n a &%case role of %1")
(format EnglishLanguage catalyst "%2 is %n a &%catalyst of %1")
(format EnglishLanguage causesProposition "%2 is %n a &%causes proposition of %1")
(format EnglishLanguage causesSubclass "%2 is %n a &%causes subclass of %1")
(format EnglishLanguage CellPartFn "the &%cell part of %1 and %2")
(format EnglishLanguage CenterOfCircleFn "the &%center of circle of %1")
(format EnglishLanguage chamberOfLegislature "%2 is %n a &%chamber of legislature of %1")
(format EnglishLanguage chanceryAddressInArea "%1 %n{doesn't} &%chancery address in area %2 for %3")
(format EnglishLanguage chanceryFAXNumberInArea "%1 %n{doesn't} &%chanceryFAX number in area %2 for %3")
(format EnglishLanguage chanceryMailingAddressInArea "%1 %n{doesn't} &%chancery mailing address in area %2 for %3")
(format EnglishLanguage chanceryTelephoneNumberInArea "%1 %n{doesn't} &%chancery telephone number in area %2 for %3")
(format EnglishLanguage changesLocation "%2 is %n a &%changes location of %1")
(format EnglishLanguage checkAccount "%2 is %n a &%check account of %1")
(format EnglishLanguage chiefOfDiplomaticMission "%1 %n{doesn't} &%chief of diplomatic mission %2 for %3 with %4")
(format EnglishLanguage chiefOfState "%1 %n{doesn't} &%chief of state %2 for %3")
(format EnglishLanguage chiefOfStateType "%2 is %n a &%chief of state type of %1")
(format EnglishLanguage ChildrenBornPerWomanFn "the &%children born per woman of %1 and %2")
(format EnglishLanguage CitizenryFn "the &%citizenry of %1")
(format EnglishLanguage claimedTerritory "%2 is %n a &%claimed territory of %1")
(format EnglishLanguage climateTypeInArea "%2 is %n a &%climate type in area of %1")
(format EnglishLanguage closingPrice "%1 %n{doesn't} &%closing price %2 for %3")
(format EnglishLanguage cloudCoverFraction "%2 is %n a &%cloud cover fraction of %1")
(format EnglishLanguage cohabitant "%2 is %n a &%cohabitant of %1")
(format EnglishLanguage coldSeasonInArea "%2 is %n a &%cold season in area of %1")
(format EnglishLanguage commandLineArguments "%2 is %n a &%command line arguments of %1")
(format EnglishLanguage commandRankOfEchelon "%2 is %n a &%command rank of echelon of %1")
(format EnglishLanguage commemoratesDate "%2 is %n a &%commemorates date of %1")
(format EnglishLanguage communicationSatelliteForArea "%1 %n{doesn't} &%communication satellite for area %2 for %3")
(format EnglishLanguage CommutativeFunction "the &%commutative function of %1 and %2")
(format EnglishLanguage comparativeArea "%1 %n{doesn't} &%comparative area %2 for %3 with %4")
(format EnglishLanguage compensationPackage "%1 %n{doesn't} &%compensation package %2 for %3")
(format EnglishLanguage componentDataID "%1 %n{doesn't} &%component dataI d %2 for %3 with %4 and %5")
(format EnglishLanguage compoundInterest "%1 %n{doesn't} &%compound interest %2 for %3")
(format EnglishLanguage computerResponseTo "%2 is %n a &%computer response to of %1")
(format EnglishLanguage confersNorm "%1 %n{doesn't} &%confers norm %2 for %3")
(format EnglishLanguage confirmationNumber "%2 is %n a &%confirmation number of %1")
(format EnglishLanguage conjugate "%2 is %n a &%conjugate of %1")
(format EnglishLanguage connectedDownstream "%2 is %n a &%connected downstream of %1")
(format EnglishLanguage consistent "%2 is %n a &%consistent of %1")
(format EnglishLanguage ConstitutionFn "the &%constitution of %1")
(format EnglishLanguage conventionalLongName "%2 is %n a &%conventional long name of %1")
(format EnglishLanguage conventionalShortName "%2 is %n a &%conventional short name of %1")
(format EnglishLanguage coolSeasonInArea "%2 is %n a &%cool season in area of %1")
(format EnglishLanguage couponInterest "%2 is %n a &%coupon interest of %1")
(format EnglishLanguage courseWRTCompassNorth "%1 %n{doesn't} &%courseWRT compass north %2 for %3")
(format EnglishLanguage courseWRTMagneticNorth "%1 %n{doesn't} &%courseWRT magnetic north %2 for %3")
(format EnglishLanguage courseWRTTrueNorth "%1 %n{doesn't} &%courseWRT true north %2 for %3")
(format EnglishLanguage coworker "%2 is %n a &%coworker of %1")
(format EnglishLanguage creditLimit "%2 is %n a &%credit limit of %1")
(format EnglishLanguage creditRanking "%2 is %n a &%credit ranking of %1")
(format EnglishLanguage creditsPerPeriod "%1 %n{doesn't} &%credits per period %2 for %3")
(format EnglishLanguage criticalityLevel "%2 is %n a &%criticality level of %1")
(format EnglishLanguage currencyCode "%2 is %n a &%currency code of %1")
(format EnglishLanguage currencyExchangePerUSDollar "%2 is %n a &%currency exchange perUS dollar of %1")
(format EnglishLanguage currencyExchangeRate "%2 is %n a &%currency exchange rate of %1")
(format EnglishLanguage currencyExchangeRateInPeriod "%1 %n{doesn't} &%currency exchange rate in period %2 for %3")
(format EnglishLanguage CurrencyFn "the &%currency of %1")
(format EnglishLanguage currencyType "%2 is %n a &%currency type of %1")
(format EnglishLanguage currencyValue "%2 is %n a &%currency value of %1")
(format EnglishLanguage currentAccountBalance "%1 %n{doesn't} &%current account balance %2 for %3")
(format EnglishLanguage currentInterestRate "%1 %n{doesn't} &%current interest rate %2 for %3")
(format EnglishLanguage customer "%2 is %n a &%customer of %1")
(format EnglishLanguage customerRepresentative "%1 %n{doesn't} &%customer representative %2 for %3")
(format EnglishLanguage dailyLimit "%1 %n{doesn't} &%daily limit %2 for %3")
(format EnglishLanguage dataID "%2 is %n a &%dataI d of %1")
(format EnglishLanguage dataStreamSlack "%2 is %n a &%data stream slack of %1")
(format EnglishLanguage dateDissolved "%2 is %n a &%date dissolved of %1")
(format EnglishLanguage dateEstablished "%2 is %n a &%date established of %1")
(format EnglishLanguage dateOfStatement "%2 is %n a &%date of statement of %1")
(format EnglishLanguage dateOpenedForSignature "%2 is %n a &%date opened for signature of %1")
(format EnglishLanguage DatumFn "the &%datum of %1")
(format EnglishLanguage daylightHoursInterval "%1 %n{doesn't} &%daylight hours interval %2 for %3")
(format EnglishLanguage daylightHoursTotal "%1 %n{doesn't} &%daylight hours total %2 for %3")
(format EnglishLanguage dayPhone "%2 is %n a &%day phone of %1")
(format EnglishLanguage deathdate "%2 is %n a &%deathdate of %1")
(format EnglishLanguage deathplace "%2 is %n a &%deathplace of %1")
(format EnglishLanguage DeathsPerThousandFn "the &%deaths per thousand of %1 and %2")
(format EnglishLanguage DeathsPerThousandLiveBirthsFn "the &%deaths per thousand live births of %1 and %2")
(format EnglishLanguage deceptiveIdentifier "%2 is %n a &%deceptive identifier of %1")
(format EnglishLanguage defaultNetwork "%2 is %n a &%default network of %1")
(format EnglishLanguage dependencyDelay "%2 is %n a &%dependency delay of %1")
(format EnglishLanguage dependencyType "%2 is %n a &%dependency type of %1")
(format EnglishLanguage dependentAreaOfType "%1 %n{doesn't} &%dependent area of type %2 for %3")
(format EnglishLanguage deprivesNorm "%1 %n{doesn't} &%deprives norm %2 for %3")
(format EnglishLanguage DescendantsFn "the &%descendants of %1")
(format EnglishLanguage detainedAtTimeInPlace "%1 %n{doesn't} &%detained at time in place %2 for %3")
(format EnglishLanguage detainee "%2 is %n a &%detainee of %1")
(format EnglishLanguage deviceState "%2 is %n a &%device state of %1")
(format EnglishLanguage DiameterFn "the &%diameter of %1")
(format EnglishLanguage diplomaticOrganizationType "%1 %n{doesn't} &%diplomatic organization type %2 for %3")
(format EnglishLanguage diplomaticRelations "%2 is %n a &%diplomatic relations of %1")
(format EnglishLanguage diplomaticRepresentationType "%1 %n{doesn't} &%diplomatic representation type %2 for %3")
(format EnglishLanguage diplomaticRepresentativeInRole "%1 %n{doesn't} &%diplomatic representative in role %2 for %3 with %4")
(format EnglishLanguage DirectionalSubregionFn "the &%directional subregion of %1 and %2")
(format EnglishLanguage directoryOf "%2 is %n a &%directory of of %1")
(format EnglishLanguage disapproves "%2 is %n a &%disapproves of %1")
(format EnglishLanguage diseaseIncubation "%1 %n{doesn't} &%disease incubation %2 for %3")
(format EnglishLanguage diseaseMortality "%2 is %n a &%disease mortality of %1")
(format EnglishLanguage diseaseSymptom "%2 is %n a &%disease symptom of %1")
(format EnglishLanguage diseaseTreatment "%1 %n{doesn't} &%disease treatment %2 for %3")
(format EnglishLanguage disputedPossession "%1 %n{doesn't} &%disputed possession %2 for %3")
(format EnglishLanguage DocumentFn "the &%document of %1")
(format EnglishLanguage domesticPartner "%2 is %n a &%domestic partner of %1")
(format EnglishLanguage doubts "%2 is %n a &%doubts of %1")
(format EnglishLanguage downPayment "%2 is %n a &%down payment of %1")
(format EnglishLanguage drugShipmentDestination "%1 %n{doesn't} &%drug shipment destination %2 for %3")
(format EnglishLanguage drySeasonInArea "%2 is %n a &%dry season in area of %1")
(format EnglishLanguage economicAidDonated "%2 is %n an &%economic aid donated of %1")
(format EnglishLanguage economicAidDonatedInPeriod "%1 %n{doesn't} &%economic aid donated in period %2 for %3")
(format EnglishLanguage economicAidReceivedNet "%2 is %n an &%economic aid received net of %1")
(format EnglishLanguage economicAidReceivedNetInPeriod "%1 %n{doesn't} &%economic aid received net in period %2 for %3")
(format EnglishLanguage economyType "%2 is %n an &%economy type of %1")
(format EnglishLanguage effectiveDose "%2 is %n an &%effective dose of %1")
(format EnglishLanguage effectiveRange "%2 is %n an &%effective range of %1")
(format EnglishLanguage electionDatePlannedForPosition "%1 %n{doesn't} &%election date planned for position %2 for %3")
(format EnglishLanguage ElectionFn "the &%election of %1")
(format EnglishLanguage electionForOrganization "%2 is %n an &%election for organization of %1")
(format EnglishLanguage electionForPosition "%2 is %n an &%election for position of %1")
(format EnglishLanguage electionWinner "%1 %n{doesn't} &%election winner %2 for %3")
(format EnglishLanguage electricityConsumptionInPeriod "%1 %n{doesn't} &%electricity consumption in period %2 for %3")
(format EnglishLanguage electricityExportInPeriod "%1 %n{doesn't} &%electricity export in period %2 for %3")
(format EnglishLanguage electricityFractionFromSource "%1 %n{doesn't} &%electricity fraction from source %2 for %3")
(format EnglishLanguage electricityFractionFromSourceInPeriod "%1 %n{doesn't} &%electricity fraction from source in period %2 for %3 with %4")
(format EnglishLanguage electricityImportInPeriod "%1 %n{doesn't} &%electricity import in period %2 for %3")
(format EnglishLanguage electricityProductionInPeriod "%1 %n{doesn't} &%electricity production in period %2 for %3")
(format EnglishLanguage electronNumber "%2 is %n an &%electron number of %1")
(format EnglishLanguage elevation "%2 is %n an &%elevation of %1")
(format EnglishLanguage ElevationHighPointFn "the &%elevation high point of %1")
(format EnglishLanguage ElevationLowPointFn "the &%elevation low point of %1")
(format EnglishLanguage emailAddress "%2 is %n an &%email address of %1")
(format EnglishLanguage employeeContribution "%1 %n{doesn't} &%employee contribution %2 for %3")
(format EnglishLanguage environmentalProblemTypeInArea "%2 is %n an &%environmental problem type in area of %1")
(format EnglishLanguage equipmentCount "%1 %n{doesn't} &%equipment count %2 for %3")
(format EnglishLanguage equipmentType "%2 is %n an &%equipment type of %1")
(format EnglishLanguage eveningPhone "%2 is %n an &%evening phone of %1")
(format EnglishLanguage ExclusiveFishingZoneFn "the &%exclusive fishing zone of %1")
(format EnglishLanguage executiveBranch "%2 is %n an &%executive branch of %1")
(format EnglishLanguage ExecutiveBranchFn "the &%executive branch of %1")
(format EnglishLanguage experimentalControl "%2 is %n an &%experimental control of %1")
(format EnglishLanguage exportCommodityType "%2 is %n an &%export commodity type of %1")
(format EnglishLanguage exportCommodityTypeByRank "%1 %n{doesn't} &%export commodity type by rank %2 for %3")
(format EnglishLanguage exportPartner "%2 is %n an &%export partner of %1")
(format EnglishLanguage exportPartnerByFraction "%1 %n{doesn't} &%export partner by fraction %2 for %3")
(format EnglishLanguage exportPartnerByFractionInPeriod "%1 %n{doesn't} &%export partner by fraction in period %2 for %3 with %4")
(format EnglishLanguage exportPartnerByRank "%1 %n{doesn't} &%export partner by rank %2 for %3")
(format EnglishLanguage exportPartnerByRankInPeriod "%1 %n{doesn't} &%export partner by rank in period %2 for %3 with %4")
(format EnglishLanguage exportPartnerInPeriod "%1 %n{doesn't} &%export partner in period %2 for %3")
(format EnglishLanguage exportTotalInPeriod "%1 %n{doesn't} &%export total in period %2 for %3")
(format EnglishLanguage ExtendedFishingZoneFn "the &%extended fishing zone of %1")
(format EnglishLanguage externalDebt "%2 is %n an &%external debt of %1")
(format EnglishLanguage externalDebtInPeriod "%1 %n{doesn't} &%external debt in period %2 for %3")
(format EnglishLanguage faceValue "%2 is %n a &%face value of %1")
(format EnglishLanguage familyName "%1 is %n a &%family name of %2")
(format EnglishLanguage FemaleLifeExpectancyAtBirthFn "the &%female life expectancy at birth of %1 and %2")
(format EnglishLanguage financialAccount "%2 is %n a &%financial account of %1")
(format EnglishLanguage financialResponseTo "%2 is %n a &%financial response to of %1")
(format EnglishLanguage FirstFn "the &%first of %1")
(format EnglishLanguage FiscalYearFn "the &%fiscal year of %1")
(format EnglishLanguage fiscalYearPeriod "%2 is %n a &%fiscal year period of %1")
(format EnglishLanguage FiscalYearStartingFn "the &%fiscal year starting of %1 and %2")
(format EnglishLanguage fitForMilitaryService "%2 is %n a &%fit for military service of %1")
(format EnglishLanguage FitForMilitaryServiceMaleFn "the &%fit for military service male of %1")
(format EnglishLanguage fixedInterestRate "%2 is %n a &%fixed interest rate of %1")
(format EnglishLanguage flagDescription "%2 is %n a &%flag description of %1")
(format EnglishLanguage flagImage "%2 is %n a &%flag image of %1")
(format EnglishLanguage flagState "%2 is %n a &%flag state of %1")
(format EnglishLanguage fleetDeadWeightTonnage "%2 is %n a &%fleet dead weight tonnage of %1")
(format EnglishLanguage fleetGrossRegisteredTonnage "%2 is %n a &%fleet gross registered tonnage of %1")
(format EnglishLanguage floorLoan "%2 is %n a &%floor loan of %1")
(format EnglishLanguage flowCurrent "%2 is %n a &%flow current of %1")
(format EnglishLanguage FlowFn "the &%flow of %1")
(format EnglishLanguage FlowRegionFn "the &%flow region of %1")
(format EnglishLanguage flows "%2 is %n a &%flows of %1")
(format EnglishLanguage fOCShipsByOrigin "%1 %n{doesn't} &%fOC ships by origin %2 for %3")
(format EnglishLanguage friend "%2 is %n a &%friend of %1")
(format EnglishLanguage geneticSubstrateOfVirus "%2 is %n a &%genetic substrate of virus of %1")
(format EnglishLanguage GeographicCenterFn "the &%geographic center of %1")
(format EnglishLanguage geographicSubregion "%1 is %n a &%geographic subregion of %2")
(format EnglishLanguage geometricDistance "%1 %n{doesn't} &%geometric distance %2 for %3")
(format EnglishLanguage geometricPart "%2 is %n a &%geometric part of %1")
(format EnglishLanguage givenName "%1 is %n a &%given name of %2")
(format EnglishLanguage governmentType "%2 is %n a &%government type of %1")
(format EnglishLanguage grammaticalRelation "%2 is %n a &%grammatical relation of %1")
(format EnglishLanguage grandparent "%2 is %n a &%grandparent of %1")
(format EnglishLanguage granularity "%2 is %n a &%granularity of %1")
(format EnglishLanguage groundSubsurfaceType "%2 is %n a &%ground subsurface type of %1")
(format EnglishLanguage groundSurfaceType "%2 is %n a &%ground surface type of %1")
(format EnglishLanguage hasDependency "%2 is %n a &%has dependency of %1")
(format EnglishLanguage hasExpertise "%2 is %n a &%has expertise of %1")
(format EnglishLanguage hasMolecularStructuralAttribute "%2 is %n a &%has molecular structural attribute of %1")
(format EnglishLanguage hasOccupation "%2 is %n a &%has occupation of %1")
(format EnglishLanguage headingWRTCompassNorth "%2 is %n a &%headingWRT compass north of %1")
(format EnglishLanguage headingWRTMagneticNorth "%2 is %n a &%headingWRT magnetic north of %1")
(format EnglishLanguage headingWRTTrueNorth "%2 is %n a &%headingWRT true north of %1")
(format EnglishLanguage headOfGovernment "%1 %n{doesn't} &%head of government %2 for %3")
(format EnglishLanguage highAltitudeWindSpeed "%2 is %n a &%high altitude wind speed of %1")
(format EnglishLanguage highAltitudeWindVelocity "%2 is %n a &%high altitude wind velocity of %1")
(format EnglishLanguage highestDecileShareOfHouseholdIncome "%2 is %n a &%highest decile share of household income of %1")
(format EnglishLanguage highestDecileShareOfHouseholdIncomeInPeriod "%1 %n{doesn't} &%highest decile share of household income in period %2 for %3")
(format EnglishLanguage highestTemperatureForPeriod "%1 %n{doesn't} &%highest temperature for period %2 for %3")
(format EnglishLanguage highTide "%1 %n{doesn't} &%high tide %2 for %3")
(format EnglishLanguage holidayTimeInArea "%2 is %n a &%holiday time in area of %1")
(format EnglishLanguage homeAddress "%2 is %n a &%home address of %1")
(format EnglishLanguage hostileForces "%2 is %n a &%hostile forces of %1")
(format EnglishLanguage hostJitter "%2 is %n a &%host jitter of %1")
(format EnglishLanguage hostOf "%2 is %n a &%host of of %1")
(format EnglishLanguage hotSeasonInArea "%2 is %n a &%hot season in area of %1")
(format EnglishLanguage humanCapacity "%2 is %n a &%human capacity of %1")
(format EnglishLanguage identicalListItems "%2 is %n an &%identical list items of %1")
(format EnglishLanguage ideologicalAffiliationOfOrganization "%2 is %n an &%ideological affiliation of organization of %1")
(format EnglishLanguage illicitDrugConsumer "%2 is %n an &%illicit drug consumer of %1")
(format EnglishLanguage illicitDrugProducer "%2 is %n an &%illicit drug producer of %1")
(format EnglishLanguage illicitDrugShipmentDestination "%1 %n{doesn't} &%illicit drug shipment destination %2 for %3")
(format EnglishLanguage illicitDrugTransshipmentPoint "%1 %n{doesn't} &%illicit drug transshipment point %2 for %3")
(format EnglishLanguage imageResolution "%2 is %n an &%image resolution of %1")
(format EnglishLanguage ImmediateFamilyFn "the &%immediate family of %1")
(format EnglishLanguage importCommodityType "%2 is %n an &%import commodity type of %1")
(format EnglishLanguage importCommodityTypeByRank "%1 %n{doesn't} &%import commodity type by rank %2 for %3")
(format EnglishLanguage importPartner "%2 is %n an &%import partner of %1")
(format EnglishLanguage importPartnerByFraction "%1 %n{doesn't} &%import partner by fraction %2 for %3")
(format EnglishLanguage importPartnerByFractionInPeriod "%1 %n{doesn't} &%import partner by fraction in period %2 for %3 with %4")
(format EnglishLanguage importPartnerByRank "%1 %n{doesn't} &%import partner by rank %2 for %3")
(format EnglishLanguage importPartnerByRankInPeriod "%1 %n{doesn't} &%import partner by rank in period %2 for %3 with %4")
(format EnglishLanguage importPartnerInPeriod "%1 %n{doesn't} &%import partner in period %2 for %3")
(format EnglishLanguage importTotalInPeriod "%1 %n{doesn't} &%import total in period %2 for %3")
(format EnglishLanguage income "%1 %n{doesn't} &%income %2 for %3")
(format EnglishLanguage incomeDistributionByGiniIndex "%2 is %n an &%income distribution by gini index of %1")
(format EnglishLanguage incomeDistributionByGiniIndexInPeriod "%1 %n{doesn't} &%income distribution by gini index in period %2 for %3")
(format EnglishLanguage incomeEarned "%1 %n{doesn't} &%income earned %2 for %3")
(format EnglishLanguage independenceDate "%2 is %n an &%independence date of %1")
(format EnglishLanguage industrialProductionGrowthRate "%2 is %n an &%industrial production growth rate of %1")
(format EnglishLanguage industrialProductionGrowthRateInPeriod "%1 %n{doesn't} &%industrial production growth rate in period %2 for %3")
(format EnglishLanguage industryOfArea "%2 is %n an &%industry of area of %1")
(format EnglishLanguage industryProductType "%2 is %n an &%industry product type of %1")
(format EnglishLanguage industryRankByOutput "%1 %n{doesn't} &%industry rank by output %2 for %3")
(format EnglishLanguage industryServiceType "%2 is %n an &%industry service type of %1")
(format EnglishLanguage inflationRate "%2 is %n an &%inflation rate of %1")
(format EnglishLanguage inflationRateOfConsumerPrices "%2 is %n an &%inflation rate of consumer prices of %1")
(format EnglishLanguage inflationRateOfConsumerPricesInPeriod "%1 %n{doesn't} &%inflation rate of consumer prices in period %2 for %3")
(format EnglishLanguage InitialProfileFn "the &%initial profile of %1")
(format EnglishLanguage InnerBoundaryFn "the &%inner boundary of %1")
(format EnglishLanguage insured "%2 is %n an &%insured of %1")
(format EnglishLanguage intelligenceQuotient "%2 is %n an &%intelligence quotient of %1")
(format EnglishLanguage interestEarned "%1 %n{doesn't} &%interest earned %2 for %3")
(format EnglishLanguage interestRatePerPeriod "%1 %n{doesn't} &%interest rate per period %2 for %3")
(format EnglishLanguage internationalDispute "%2 is %n an &%international dispute of %1")
(format EnglishLanguage internetCountryCode "%2 is %n an &%internet country code of %1")
(format EnglishLanguage inTheMoney "%2 is %n an &%in the money of %1")
(format EnglishLanguage invadingVirus "%2 is %n an &%invading virus of %1")
(format EnglishLanguage inventory "%2 is %n an &%inventory of %1")
(format EnglishLanguage involvedInEvent "%2 is %n an &%involved in event of %1")
(format EnglishLanguage ipAddressOf "%2 is %n an &%ip address of of %1")
(format EnglishLanguage irrigatedLandArea "%2 is %n an &%irrigated land area of %1")
(format EnglishLanguage issuedBy "%2 is %n an &%issued by of %1")
(format EnglishLanguage judicialBranch "%2 is %n a &%judicial branch of %1")
(format EnglishLanguage JudiciaryFn "the &%judiciary of %1")
(format EnglishLanguage laborForceFractionByOccupation "%1 %n{doesn't} &%labor force fraction by occupation %2 for %3")
(format EnglishLanguage laborForceFractionByOccupationInPeriod "%1 %n{doesn't} &%labor force fraction by occupation in period %2 for %3 with %4")
(format EnglishLanguage laborForceTotal "%2 is %n a &%labor force total of %1")
(format EnglishLanguage laborForceTotalInPeriod "%1 %n{doesn't} &%labor force total in period %2 for %3")
(format EnglishLanguage ladenDraft "%2 is %n a &%laden draft of %1")
(format EnglishLanguage landAreaOnly "%2 is %n a &%land area only of %1")
(format EnglishLanguage landlord "%2 is %n a &%landlord of %1")
(format EnglishLanguage LastFn "the &%last of %1")
(format EnglishLanguage lastStatement "%2 is %n a &%last statement of %1")
(format EnglishLanguage lastStatementBalance "%2 is %n a &%last statement balance of %1")
(format EnglishLanguage leader "%2 is %n a &%leader of %1")
(format EnglishLanguage leaderPosition "%2 is %n a &%leader position of %1")
(format EnglishLanguage legalGuardian "%2 is %n a &%legal guardian of %1")
(format EnglishLanguage legalSystemType "%2 is %n a &%legal system type of %1")
(format EnglishLanguage legislativeBranch "%2 is %n a &%legislative branch of %1")
(format EnglishLanguage LegislatureFn "the &%legislature of %1")
(format EnglishLanguage lengthOfBroadGaugeRailway "%2 is %n a &%length of broad gauge railway of %1")
(format EnglishLanguage lengthOfCrudeOilPipeline "%2 is %n a &%length of crude oil pipeline of %1")
(format EnglishLanguage lengthOfDualGaugeRailway "%2 is %n a &%length of dual gauge railway of %1")
(format EnglishLanguage lengthOfElectrifiedRailway "%2 is %n a &%length of electrified railway of %1")
(format EnglishLanguage lengthOfExpresswaySystem "%2 is %n a &%length of expressway system of %1")
(format EnglishLanguage lengthOfMultipleTrackRailway "%2 is %n a &%length of multiple track railway of %1")
(format EnglishLanguage lengthOfNarrowGaugeRailway "%2 is %n a &%length of narrow gauge railway of %1")
(format EnglishLanguage lengthOfNaturalGasPipeline "%2 is %n a &%length of natural gas pipeline of %1")
(format EnglishLanguage lengthOfPavedHighway "%2 is %n a &%length of paved highway of %1")
(format EnglishLanguage lengthOfPetroleumProductPipeline "%2 is %n a &%length of petroleum product pipeline of %1")
(format EnglishLanguage lengthOfStandardGaugeRailway "%2 is %n a &%length of standard gauge railway of %1")
(format EnglishLanguage lengthOfUnclassifiedGaugeRailway "%2 is %n a &%length of unclassified gauge railway of %1")
(format EnglishLanguage lengthOfUnpavedHighway "%2 is %n a &%length of unpaved highway of %1")
(format EnglishLanguage lethalDose "%2 is %n a &%lethal dose of %1")
(format EnglishLanguage LifeExpectancyAtBirthFn "the &%life expectancy at birth of %1 and %2")
(format EnglishLanguage lifeStageAchieved "%2 is %n a &%life stage achieved of %1")
(format EnglishLanguage limitPrice "%2 is %n a &%limit price of %1")
(format EnglishLanguage lineMeasure "%2 is %n a &%line measure of %1")
(format EnglishLanguage loanFeeAmount "%2 is %n a &%loan fee amount of %1")
(format EnglishLanguage loanForPurchase "%2 is %n a &%loan for purchase of %1")
(format EnglishLanguage loanInterest "%2 is %n a &%loan interest of %1")
(format EnglishLanguage localLongName "%2 is %n a &%local long name of %1")
(format EnglishLanguage localShortName "%2 is %n a &%local short name of %1")
(format EnglishLanguage locatedAtTime "%1 %n{doesn't} &%located at time %2 for %3")
(format EnglishLanguage lowAltitudeWindSpeed "%2 is %n a &%low altitude wind speed of %1")
(format EnglishLanguage lowAltitudeWindVelocity "%2 is %n a &%low altitude wind velocity of %1")
(format EnglishLanguage lowestDecileShareOfHouseholdIncome "%2 is %n a &%lowest decile share of household income of %1")
(format EnglishLanguage lowestDecileShareOfHouseholdIncomeInPeriod "%1 %n{doesn't} &%lowest decile share of household income in period %2 for %3")
(format EnglishLanguage lowestTemperatureForPeriod "%1 %n{doesn't} &%lowest temperature for period %2 for %3")
(format EnglishLanguage lowTide "%1 %n{doesn't} &%low tide %2 for %3")
(format EnglishLanguage magneticVariation "%1 %n{doesn't} &%magnetic variation %2 for %3")
(format EnglishLanguage MaleLifeExpectancyAtBirthFn "the &%male life expectancy at birth of %1 and %2")
(format EnglishLanguage MaleToFemaleRatioFn "the &%male to female ratio of %1")
(format EnglishLanguage mapOfArea "%2 is %n a &%map of area of %1")
(format EnglishLanguage marginBalanceAmount "%1 %n{doesn't} &%margin balance amount %2 for %3")
(format EnglishLanguage marineInventory "%2 is %n a &%marine inventory of %1")
(format EnglishLanguage MaritimeClaimsTerritorialSeaFn "the &%maritime claims territorial sea of %1")
(format EnglishLanguage maritimeClaimType "%2 is %n a &%maritime claim type of %1")
(format EnglishLanguage MaritimeContiguousZoneFn "the &%maritime contiguous zone of %1")
(format EnglishLanguage MaritimeExclusiveEconomicZoneFn "the &%maritime exclusive economic zone of %1")
(format EnglishLanguage MaritimeShelfAreaFn "the &%maritime shelf area of %1")
(format EnglishLanguage marketValueAmount "%1 %n{doesn't} &%market value amount %2 for %3")
(format EnglishLanguage maturityDate "%2 is %n a &%maturity date of %1")
(format EnglishLanguage maximumPayloadCapacity "%2 is %n a &%maximum payload capacity of %1")
(format EnglishLanguage maximumPayloadHeightWidth "%1 %n{doesn't} &%maximum payload height width %2 for %3")
(format EnglishLanguage maximumReplications "%2 is %n a &%maximum replications of %1")
(format EnglishLanguage meanSeaLevel "%2 is %n a &%mean sea level of %1")
(format EnglishLanguage measurementReading "%2 is %n a &%measurement reading of %1")
(format EnglishLanguage medicalPatient "%2 is %n a &%medical patient of %1")
(format EnglishLanguage mediumAltitudeWindSpeed "%2 is %n a &%medium altitude wind speed of %1")
(format EnglishLanguage mediumAltitudeWindVelocity "%2 is %n a &%medium altitude wind velocity of %1")
(format EnglishLanguage meltingPoint "%2 is %n a &%melting point of %1")
(format EnglishLanguage memberCount "%2 is %n a &%member count of %1")
(format EnglishLanguage MemberFn "the &%member of %1")
(format EnglishLanguage MemberRoleFn "the &%member role of %1 and %2")
(format EnglishLanguage memberType "%2 is %n a &%member type of %1")
(format EnglishLanguage memberTypeCount "%1 %n{doesn't} &%member type count %2 for %3")
(format EnglishLanguage MerchantMarineFn "the &%merchant marine of %1")
(format EnglishLanguage middleName "%2 is %n a &%middle name of %1")
(format EnglishLanguage MigrantsPerThousandFn "the &%migrants per thousand of %1 and %2")
(format EnglishLanguage militaryAge "%2 is %n a &%military age of %1")
(format EnglishLanguage militaryExpendituresFractionOfGDP "%2 is %n a &%military expenditures fraction ofGD p of %1")
(format EnglishLanguage militaryExpendituresFractionOfGDPInPeriod "%1 %n{doesn't} &%military expenditures fraction ofGDP in period %2 for %3")
(format EnglishLanguage militaryExpendituresInUSDollars "%2 is %n a &%military expenditures inUS dollars of %1")
(format EnglishLanguage militaryExpendituresInUSDollarsInPeriod "%1 %n{doesn't} &%military expenditures inUS dollars in period %2 for %3")
(format EnglishLanguage militaryOfArea "%2 is %n a &%military of area of %1")
(format EnglishLanguage minimumBalance "%1 %n{doesn't} &%minimum balance %2 for %3")
(format EnglishLanguage minimumPayment "%1 %n{doesn't} &%minimum payment %2 for %3")
(format EnglishLanguage minimumReplications "%2 is %n a &%minimum replications of %1")
(format EnglishLanguage monetaryWage "%1 %n{doesn't} &%monetary wage %2 for %3 with %4")
(format EnglishLanguage monitorApplicationData "%2 is %n a &%monitor application data of %1")
(format EnglishLanguage monitorComponentData "%1 %n{doesn't} &%monitor component data %2 for %3")
(format EnglishLanguage multiplicativeFactor "%2 is %n a &%multiplicative factor of %1")
(format EnglishLanguage mutualAcquaintance "%2 is %n a &%mutual acquaintance of %1")
(format EnglishLanguage mutualStranger "%2 is %n a &%mutual stranger of %1")
(format EnglishLanguage nationalCelebration "%2 is %n a &%national celebration of %1")
(format EnglishLanguage nationalHoliday "%2 is %n a &%national holiday of %1")
(format EnglishLanguage naturalHazardTypeInArea "%2 is %n a &%natural hazard type in area of %1")
(format EnglishLanguage naturalResourceTypeInArea "%2 is %n a &%natural resource type in area of %1")
(format EnglishLanguage navigableForDraft "%2 is %n a &%navigable for draft of %1")
(format EnglishLanguage navigableForShippingTonnage "%2 is %n a &%navigable for shipping tonnage of %1")
(format EnglishLanguage neighbor "%2 is %n a &%neighbor of %1")
(format EnglishLanguage netAmount "%2 is %n a &%net amount of %1")
(format EnglishLanguage netWorth "%1 %n{doesn't} &%net worth %2 for %3")
(format EnglishLanguage numberOfCPUs "%2 is %n a &%number ofCP us of %1")
(format EnglishLanguage objectGeographicCoordinates "%1 %n{doesn't} &%object geographic coordinates %2 for %3")
(format EnglishLanguage observedAtTimeInPlace "%1 %n{doesn't} &%observed at time in place %2 for %3 with %4")
(format EnglishLanguage occupation "%2 is %n an &%occupation of %1")
(format EnglishLanguage OccupationFn "the &%occupation of %1")
(format EnglishLanguage older "%2 is %n an &%older of %1")
(format EnglishLanguage OneToOneFunction "the &%one to one function of %1")
(format EnglishLanguage OperatingFn "the &%operating of %1")
(format EnglishLanguage operator "%2 is %n an &%operator of %1")
(format EnglishLanguage oppositeDirection "%2 is %n an &%opposite direction of %1")
(format EnglishLanguage orbits "%2 is %n an &%orbits of %1")
(format EnglishLanguage orderFor "%1 %n{doesn't} &%order for %2 for %3")
(format EnglishLanguage organizationalObjective "%2 is %n an &%organizational objective of %1")
(format EnglishLanguage organizationProductType "%2 is %n an &%organization product type of %1")
(format EnglishLanguage organizationServiceType "%2 is %n an &%organization service type of %1")
(format EnglishLanguage originalBalance "%2 is %n an &%original balance of %1")
(format EnglishLanguage otherLandUseArea "%2 is %n an &%other land use area of %1")
(format EnglishLanguage OuterBoundaryFn "the &%outer boundary of %1")
(format EnglishLanguage outOfTheMoney "%2 is %n an &%out of the money of %1")
(format EnglishLanguage overcastDaysInPeriod "%2 is %n an &%overcast days in period of %1")
(format EnglishLanguage overdraft "%1 %n{doesn't} &%overdraft %2 for %3")
(format EnglishLanguage OverseasAreaFn "the &%overseas area of %1")
(format EnglishLanguage parallel "%2 is %n a &%parallel of %1")
(format EnglishLanguage parasite "%2 is %n a &%parasite of %1")
(format EnglishLanguage partyToAgreement "%2 is %n a &%party to agreement of %1")
(format EnglishLanguage passengerCapacityMaxNumber "%2 is %n a &%passenger capacity max number of %1")
(format EnglishLanguage pathInSystem "%2 is %n a &%path in system of %1")
(format EnglishLanguage patientMedical "%2 is %n a &%patient medical of %1")
(format EnglishLanguage paymentsPerPeriod "%1 %n{doesn't} &%payments per period %2 for %3")
(format EnglishLanguage perCapitaGDP "%2 is %n a &%per capitaGD p of %1")
(format EnglishLanguage perCapitaGDPInPeriod "%1 %n{doesn't} &%per capitaGDP in period %2 for %3")
(format EnglishLanguage PerFn "the &%per of %1 and %2")
(format EnglishLanguage performanceResult "%1 %n{doesn't} &%performance result %2 for %3")
(format EnglishLanguage PerimeterAreaFn "the &%perimeter area of %1")
(format EnglishLanguage periodicPayment "%1 %n{doesn't} &%periodic payment %2 for %3")
(format EnglishLanguage permanentCropLandArea "%2 is %n a &%permanent crop land area of %1")
(format EnglishLanguage personTransportCapability "%2 is %n a &%person transport capability of %1")
(format EnglishLanguage phoneNumber "%2 is %n a &%phone number of %1")
(format EnglishLanguage pin "%2 is %n a &%pin of %1")
(format EnglishLanguage playsRoleInEvent "%1 %n{doesn't} &%plays role in event %2 for %3")
(format EnglishLanguage playsRoleInEventOfType "%1 %n{doesn't} &%plays role in event of type %2 for %3 with %4 and %5")
(format EnglishLanguage pointOfIntersection "%1 %n{doesn't} &%point of intersection %2 for %3")
(format EnglishLanguage politicalPartyOfCountry "%2 is %n a &%political party of country of %1")
(format EnglishLanguage PopulationFn "the &%population of %1")
(format EnglishLanguage populationFractionBelowPovertyLine "%2 is %n a &%population fraction below poverty line of %1")
(format EnglishLanguage populationFractionBelowPovertyLineInPeriod "%1 %n{doesn't} &%population fraction below poverty line in period %2 for %3")
(format EnglishLanguage PopulationGrowthFn "the &%population growth of %1 and %2")
(format EnglishLanguage PortFacilityFn "the &%port facility of %1")
(format EnglishLanguage portNumber "%2 is %n a &%port number of %1")
(format EnglishLanguage potentialLoss "%1 %n{doesn't} &%potential loss %2 for %3")
(format EnglishLanguage potentialOfHydrogen "%2 is %n a &%potential of hydrogen of %1")
(format EnglishLanguage powerComponent "%2 is %n a &%power component of %1")
(format EnglishLanguage precipitationAmount "%2 is %n a &%precipitation amount of %1")
(format EnglishLanguage precipitationRate "%2 is %n a &%precipitation rate of %1")
(format EnglishLanguage precipitationState "%2 is %n a &%precipitation state of %1")
(format EnglishLanguage premise "%2 is %n a &%premise of %1")
(format EnglishLanguage premium "%2 is %n a &%premium of %1")
(format EnglishLanguage price "%1 %n{doesn't} &%price %2 for %3")
(format EnglishLanguage primaryGeopoliticalSubdivision "%2 is %n a &%primary geopolitical subdivision of %1")
(format EnglishLanguage primaryGeopoliticalSubdivisionType "%2 is %n a &%primary geopolitical subdivision type of %1")
(format EnglishLanguage primeInterestRate "%2 is %n a &%prime interest rate of %1")
(format EnglishLanguage principalAmount "%2 is %n a &%principal amount of %1")
(format EnglishLanguage priority "%2 is %n a &%priority of %1")
(format EnglishLanguage processAborted "%2 is %n a &%process aborted of %1")
(format EnglishLanguage processID "%2 is %n a &%processI d of %1")
(format EnglishLanguage programRunning "%2 is %n a &%program running of %1")
(format EnglishLanguage protonNumber "%2 is %n a &%proton number of %1")
(format EnglishLanguage purchasesPerPeriod "%1 %n{doesn't} &%purchases per period %2 for %3")
(format EnglishLanguage QuaternaryFunction "the &%quaternary function of %1, %2, %3 and %4")
(format EnglishLanguage QuaternaryPredicate "%1 %n{doesn't} &%quaternary predicate %2 for %3 with %4")
(format EnglishLanguage QuintaryPredicate "%1 %n{doesn't} &%quintary predicate %2 for %3 with %4 and %5")
(format EnglishLanguage RadiusFn "the &%radius of %1")
(format EnglishLanguage rainySeasonInArea "%2 is %n a &%rainy season in area of %1")
(format EnglishLanguage ReachingMilitaryAgeAnnuallyMaleFn "the &%reaching military age annually male of %1 and %2")
(format EnglishLanguage realGrowthRateOfGDP "%2 is %n a &%real growth rate ofGD p of %1")
(format EnglishLanguage realGrowthRateOfGDPInPeriod "%1 %n{doesn't} &%real growth rate ofGDP in period %2 for %3")
(format EnglishLanguage regionalIssue "%2 is %n a &%regional issue of %1")
(format EnglishLanguage RegionalLawFn "the &%regional law of %1")
(format EnglishLanguage registeredItem "%2 is %n a &%registered item of %1")
(format EnglishLanguage relatedEvent "%2 is %n a &%related event of %1")
(format EnglishLanguage relative "%2 is %n a &%relative of %1")
(format EnglishLanguage relativeBearing "%1 %n{doesn't} &%relative bearing %2 for %3")
(format EnglishLanguage relativeHumidity "%2 is %n a &%relative humidity of %1")
(format EnglishLanguage religiousAffiliationOfOrganization "%2 is %n a &%religious affiliation of organization of %1")
(format EnglishLanguage representativeAgentToAgent "%1 %n{doesn't} &%representative agent to agent %2 for %3")
(format EnglishLanguage ResidentFn "the &%resident of %1")
(format EnglishLanguage responseTime "%2 is %n a &%response time of %1")
(format EnglishLanguage resultType "%2 is %n a &%result type of %1")
(format EnglishLanguage riskTolerance "%2 is %n a &%risk tolerance of %1")
(format EnglishLanguage rMProgram-of "%2 is %n a &%rM program-of of %1")
(format EnglishLanguage roleAppointsRole "%1 %n{doesn't} &%role appoints role %2 for %3")
(format EnglishLanguage roleApprovesRole "%1 %n{doesn't} &%role approves role %2 for %3")
(format EnglishLanguage roleNominatesRole "%1 %n{doesn't} &%role nominates role %2 for %3")
(format EnglishLanguage routeBetween "%1 %n{doesn't} &%route between %2 for %3")
(format EnglishLanguage routeInSystem "%2 is %n a &%route in system of %1")
(format EnglishLanguage runsOn "%2 is %n a &%runs on of %1")
(format EnglishLanguage SeacoastFn "the &%seacoast of %1")
(format EnglishLanguage seaSurfaceTemperature "%2 is %n a &%sea surface temperature of %1")
(format EnglishLanguage seatsHeldInOrganization "%1 %n{doesn't} &%seats held in organization %2 for %3")
(format EnglishLanguage seatsInOrganizationCount "%2 is %n a &%seats in organization count of %1")
(format EnglishLanguage seatsWonInElection "%1 %n{doesn't} &%seats won in election %2 for %3")
(format EnglishLanguage secretesSubstance "%2 is %n a &%secretes substance of %1")
(format EnglishLanguage secretesToxin "%2 is %n a &%secretes toxin of %1")
(format EnglishLanguage sectorCompositionOfGDP "%1 %n{doesn't} &%sector composition ofGD p %2 for %3")
(format EnglishLanguage sectorCompositionOfGDPInPeriod "%1 %n{doesn't} &%sector composition ofGDP in period %2 for %3 with %4")
(format EnglishLanguage sectorValueOfGDP "%1 %n{doesn't} &%sector value ofGD p %2 for %3")
(format EnglishLanguage sectorValueOfGDPInPeriod "%1 %n{doesn't} &%sector value ofGDP in period %2 for %3 with %4")
(format EnglishLanguage securedBy "%2 is %n a &%secured by of %1")
(format EnglishLanguage SequenceFunction "the &%sequence function of %1")
(format EnglishLanguage serviceFee "%1 %n{doesn't} &%service fee %2 for %3")
(format EnglishLanguage settlingTime "%2 is %n a &%settling time of %1")
(format EnglishLanguage shareHolder "%2 is %n a &%share holder of %1")
(format EnglishLanguage ShipBerthingFn "the &%ship berthing of %1")
(format EnglishLanguage ShipCrewFn "the &%ship crew of %1")
(format EnglishLanguage ShipRegisterFn "the &%ship register of %1")
(format EnglishLanguage ShorelineFn "the &%shoreline of %1 and %2")
(format EnglishLanguage ShortageFn "the &%shortage of %1")
(format EnglishLanguage shortBalanceAmount "%1 %n{doesn't} &%short balance amount %2 for %3")
(format EnglishLanguage ShutdownFn "the &%shutdown of %1")
(format EnglishLanguage shutdownOf "%2 is %n a &%shutdown of of %1")
(format EnglishLanguage signedBy "%2 is %n a &%signed by of %1")
(format EnglishLanguage simpleDeadline "%2 is %n a &%simple deadline of %1")
(format EnglishLanguage simpleInterest "%1 %n{doesn't} &%simple interest %2 for %3")
(format EnglishLanguage sliceOfFigure "%2 is %n a &%slice of figure of %1")
(format EnglishLanguage slidingWindowSize "%2 is %n a &%sliding window size of %1")
(format EnglishLanguage slopeGradient "%2 is %n a &%slope gradient of %1")
(format EnglishLanguage slopeGradientTowardsOrientation "%1 %n{doesn't} &%slope gradient towards orientation %2 for %3")
(format EnglishLanguage softwarePath "%2 is %n a &%software path of %1")
(format EnglishLanguage speaksLanguage "%2 is %n a &%speaks language of %1")
(format EnglishLanguage splitFor "%1 %n{doesn't} &%split for %2 for %3")
(format EnglishLanguage SquareUnitFn "the &%square unit of %1")
(format EnglishLanguage StartFn "the &%start of %1")
(format EnglishLanguage StartupFn "the &%startup of %1")
(format EnglishLanguage startupOf "%2 is %n a &%startup of of %1")
(format EnglishLanguage statementAccount "%2 is %n a &%statement account of %1")
(format EnglishLanguage statementInterest "%2 is %n a &%statement interest of %1")
(format EnglishLanguage statementPeriod "%2 is %n a &%statement period of %1")
(format EnglishLanguage stockHolder "%2 is %n a &%stock holder of %1")
(format EnglishLanguage stockSymbol "%2 is %n a &%stock symbol of %1")
(format EnglishLanguage StopFn "the &%stop of %1")
(format EnglishLanguage stranger "%2 is %n a &%stranger of %1")
(format EnglishLanguage StreetAddressFn "the &%street address of %1, %2, %3 and %4")
(format EnglishLanguage strikePrice "%2 is %n a &%strike price of %1")
(format EnglishLanguage subEchelon "%2 is %n a &%sub echelon of %1")
(format EnglishLanguage subordinateInOrganization "%1 %n{doesn't} &%subordinate in organization %2 for %3")
(format EnglishLanguage subordinatePosition "%1 %n{doesn't} &%subordinate position %2 for %3")
(format EnglishLanguage subSystem "%2 is %n a &%sub system of %1")
(format EnglishLanguage successorOrganization "%2 is %n a &%successor organization of %1")
(format EnglishLanguage suffrageAgeMaximum "%2 is %n a &%suffrage age maximum of %1")
(format EnglishLanguage suffrageAgeMinimum "%2 is %n a &%suffrage age minimum of %1")
(format EnglishLanguage SupremeCourtFn "the &%supreme court of %1")
(format EnglishLanguage surfaceWindDirection "%2 is %n a &%surface wind direction of %1")
(format EnglishLanguage surfaceWindSpeed "%2 is %n a &%surface wind speed of %1")
(format EnglishLanguage surfaceWindVelocity "%1 %n{doesn't} &%surface wind velocity %2 for %3")
(format EnglishLanguage systemMeasured "%2 is %n a &%system measured of %1")
(format EnglishLanguage systemPart "%2 is %n a &%system part of %1")
(format EnglishLanguage targetInAttack "%2 is %n a &%target in attack of %1")
(format EnglishLanguage task "%2 is %n a &%task of %1")
(format EnglishLanguage tenant "%2 is %n a &%tenant of %1")
(format EnglishLanguage termLength "%1 %n{doesn't} &%term length %2 for %3")
(format EnglishLanguage TernaryFunction "the &%ternary function of %1, %2 and %3")
(format EnglishLanguage TernaryPredicate "%1 %n{doesn't} &%ternary predicate %2 for %3")
(format EnglishLanguage terrainInArea "%2 is %n a &%terrain in area of %1")
(format EnglishLanguage TerritorialSeaFn "the &%territorial sea of %1")
(format EnglishLanguage thresholdOf "%2 is %n a &%threshold of of %1")
(format EnglishLanguage totalArea "%2 is %n a &%total area of %1")
(format EnglishLanguage totalBalance "%2 is %n a &%total balance of %1")
(format EnglishLanguage totalBiomass "%2 is %n a &%total biomass of %1")
(format EnglishLanguage totalCoastline "%2 is %n a &%total coastline of %1")
(format EnglishLanguage totalFacilityTypeInArea "%1 %n{doesn't} &%total facility type in area %2 for %3")
(format EnglishLanguage totalGDP "%2 is %n a &%totalGD p of %1")
(format EnglishLanguage totalGDPInPeriod "%1 %n{doesn't} &%totalGDP in period %2 for %3")
(format EnglishLanguage totalLandBoundary "%2 is %n a &%total land boundary of %1")
(format EnglishLanguage totalLengthOfHighwaySystem "%2 is %n a &%total length of highway system of %1")
(format EnglishLanguage totalLengthOfRailwaySystem "%2 is %n a &%total length of railway system of %1")
(format EnglishLanguage totalLengthOfWaterways "%2 is %n a &%total length of waterways of %1")
(format EnglishLanguage totalPipelineInArea "%2 is %n a &%total pipeline in area of %1")
(format EnglishLanguage totalPrecipitationForPeriod "%1 %n{doesn't} &%total precipitation for period %2 for %3")
(format EnglishLanguage trackWidth "%2 is %n a &%track width of %1")
(format EnglishLanguage trafficableForTrafficType "%2 is %n a &%trafficable for traffic type of %1")
(format EnglishLanguage transactionAmount "%2 is %n a &%transaction amount of %1")
(format EnglishLanguage TransitFn "the &%transit of %1")
(format EnglishLanguage transitwayCapacityCount "%1 %n{doesn't} &%transitway capacity count %2 for %3")
(format EnglishLanguage transitwayCapacityRate "%1 %n{doesn't} &%transitway capacity rate %2 for %3")
(format EnglishLanguage TransportationFn "the &%transportation of %1")
(format EnglishLanguage TripFn "the &%trip of %1")
(format EnglishLanguage UnaryFunction "the &%unary function of %1")
(format EnglishLanguage underlier "%2 is %n an &%underlier of %1")
(format EnglishLanguage unemploymentRateOfArea "%1 %n{doesn't} &%unemployment rate of area %2 for %3")
(format EnglishLanguage unemploymentRateOfAreaInPeriod "%1 %n{doesn't} &%unemployment rate of area in period %2 for %3")
(format EnglishLanguage unitMeasuringPerformance "%2 is %n an &%unit measuring performance of %1")
(format EnglishLanguage unratifiedSignatoryToAgreement "%2 is %n an &%unratified signatory to agreement of %1")
(format EnglishLanguage vegetationTypePattern "%1 %n{doesn't} &%vegetation type pattern %2 for %3")
(format EnglishLanguage vesselDeadWeightTonnage "%2 is %n a &%vessel dead weight tonnage of %1")
(format EnglishLanguage vesselDisplacement "%2 is %n a &%vessel displacement of %1")
(format EnglishLanguage vesselGrossRegisteredTonnage "%2 is %n a &%vessel gross registered tonnage of %1")
(format EnglishLanguage ViralPartFn "the &%viral part of %1 and %2")
(format EnglishLanguage voteFractionReceived "%1 %n{doesn't} &%vote fraction received %2 for %3 with %4")
(format EnglishLanguage VotingFn "the &%voting of %1")
(format EnglishLanguage warmSeasonInArea "%2 is %n a &%warm season in area of %1")
(format EnglishLanguage waterAreaOnly "%2 is %n a &%water area only of %1")
(format EnglishLanguage waterDepth "%2 is %n a &%water depth of %1")
(format EnglishLanguage weaponCarryingCapability "%1 %n{doesn't} &%weapon carrying capability %2 for %3")
(format EnglishLanguage weight "%2 is %n a &%weight of %1")
(format EnglishLanguage windRelativePosition "%2 is %n a &%wind relative position of %1")
(format EnglishLanguage workAddress "%2 is %n a &%work address of %1")
(format EnglishLanguage yearOfFounding "%2 is %n a &%year of founding of %1")
(format EnglishLanguage yield "%2 is %n a &%yield of %1")
(termFormat EnglishLanguage -1 "-1")
(termFormat EnglishLanguage -3 "-3")
(termFormat EnglishLanguage -7235 "-7235")
(termFormat EnglishLanguage <=> "<=>")
(termFormat EnglishLanguage => "=>")
(termFormat EnglishLanguage AAA-Rating "AAA-rating")
(termFormat EnglishLanguage AAM "AA m")
(termFormat EnglishLanguage AariyaLanguage "aariya language")
(termFormat EnglishLanguage AAV "AA v")
(termFormat EnglishLanguage Abayah "abayah")
(termFormat EnglishLanguage abbreviation "abbreviation")
(termFormat EnglishLanguage AbinomnLanguage "abinomn language")
(termFormat EnglishLanguage AbishiraLanguage "abishira language")
(termFormat EnglishLanguage AbnormalAnatomicalStructure "abnormal anatomical structure")
(termFormat EnglishLanguage Abort "abort")
(termFormat EnglishLanguage AbortedFn "aborted")
(termFormat EnglishLanguage AbortedLaunchFn "aborted launch")
(termFormat EnglishLanguage AbortedMissionFn "aborted mission")
(termFormat EnglishLanguage Aborting "aborting")
(termFormat EnglishLanguage Above "above")
(termFormat EnglishLanguage AboveTheLine "above the line")
(termFormat EnglishLanguage AbrasiveProductManufacturing "abrasive product manufacturing")
(termFormat EnglishLanguage AbrinToxin "abrin toxin")
(termFormat EnglishLanguage AbsoluteAltimeter "absolute altimeter")
(termFormat EnglishLanguage AbsoluteDud "absolute dud")
(termFormat EnglishLanguage AbsoluteFilter "absolute filter")
(termFormat EnglishLanguage absoluteHeight "absolute height")
(termFormat EnglishLanguage AbsoluteMonarchy "absolute monarchy")
(termFormat EnglishLanguage AbsoluteValueFn "absolute value")
(termFormat EnglishLanguage absorbedDose "absorbed dose")
(termFormat EnglishLanguage AbstractionFn "abstraction")
(termFormat EnglishLanguage abstractionLevel "abstraction level")
(termFormat EnglishLanguage AbstractionLevelAttribute "abstraction level attribute")
(termFormat EnglishLanguage abstractPart "abstract part")
(termFormat EnglishLanguage AbunLanguage "abun language")
(termFormat EnglishLanguage AcademicDegree "academic degree")
(termFormat EnglishLanguage AcatepecTlapanecoLanguage "acatepec tlapaneco language")
(termFormat EnglishLanguage Accelerating "accelerating")
(termFormat EnglishLanguage AcceptsICJJurisdiction "acceptsICJ jurisdiction")
(termFormat EnglishLanguage Accommodation "accommodation")
(termFormat EnglishLanguage AccommodationAndFoodServices "accommodation and food services")
(termFormat EnglishLanguage Accountant "accountant")
(termFormat EnglishLanguage accountAt "account at")
(termFormat EnglishLanguage AccountFn "account")
(termFormat EnglishLanguage accountHolder "account holder")
(termFormat EnglishLanguage AccountingTaxPreparationBookkeepingAndPayrollServices "accounting tax preparation bookkeeping and payroll services")
(termFormat EnglishLanguage accountNumber "account number")
(termFormat EnglishLanguage accountStatus "account status")
(termFormat EnglishLanguage Accrediting "accrediting")
(termFormat EnglishLanguage accruedInterest "accrued interest")
(termFormat EnglishLanguage AchievingControl "achieving control")
(termFormat EnglishLanguage AchterhoeksLanguage "achterhoeks language")
(termFormat EnglishLanguage AchuarShiwiarLanguage "achuar shiwiar language")
(termFormat EnglishLanguage Acidification "acidification")
(termFormat EnglishLanguage AcidificationIssue "acidification issue")
(termFormat EnglishLanguage AcidRainfall "acid rainfall")
(termFormat EnglishLanguage AcidRainIssue "acid rain issue")
(termFormat EnglishLanguage acquaintance "acquaintance")
(termFormat EnglishLanguage Acre "acre")
(termFormat EnglishLanguage AcrossVariableAccumulator "across variable accumulator")
(termFormat EnglishLanguage AcrossVariableSource "across variable source")
(termFormat EnglishLanguage ActingConsulGeneral "acting consul general")
(termFormat EnglishLanguage Actinium "actinium")
(termFormat EnglishLanguage Active "active")
(termFormat EnglishLanguage ActivitiesRelatedToCreditIntermediation "activities related to credit intermediation")
(termFormat EnglishLanguage ActivitiesRelatedToRealEstate "activities related to real estate")
(termFormat EnglishLanguage AcuteAngle "acute angle")
(termFormat EnglishLanguage AdamorobeSignLanguage "adamorobe sign language")
(termFormat EnglishLanguage AdanaTurkey "adana turkey")
(termFormat EnglishLanguage AddisAbabaEthiopia "addis ababa ethiopia")
(termFormat EnglishLanguage AdditionFn "addition")
(termFormat EnglishLanguage AddressFn "address")
(termFormat EnglishLanguage AdenYemen "aden yemen")
(termFormat EnglishLanguage AdhesiveManufacturing "adhesive manufacturing")
(termFormat EnglishLanguage Adjacent "adjacent")
(termFormat EnglishLanguage AdjustableRateAccount "adjustable rate account")
(termFormat EnglishLanguage AdministrationAndManagement "administration and management")
(termFormat EnglishLanguage AdministrationOfAirAndWaterResourceAndSolidWasteManagementPrograms "administration of air and water resource and solid waste management programs")
(termFormat EnglishLanguage AdministrationOfConservationPrograms "administration of conservation programs")
(termFormat EnglishLanguage AdministrationOfEconomicPrograms "administration of economic programs")
(termFormat EnglishLanguage AdministrationOfEducationPrograms "administration of education programs")
(termFormat EnglishLanguage AdministrationOfEnvironmentalQualityPrograms "administration of environmental quality programs")
(termFormat EnglishLanguage AdministrationOfGeneralEconomicPrograms "administration of general economic programs")
(termFormat EnglishLanguage AdministrationOfHousingPrograms "administration of housing programs")
(termFormat EnglishLanguage AdministrationOfHousingProgramsUrbanPlanningAndCommunityDevelopment "administration of housing programs urban planning and community development")
(termFormat EnglishLanguage AdministrationOfHumanResourcePrograms "administration of human resource programs")
(termFormat EnglishLanguage AdministrationOfHumanResourceProgramsExceptEducationPublicHealthAndVeteransAffairsPrograms "administration of human resource programs except education public health and veterans affairs programs")
(termFormat EnglishLanguage AdministrationOfPublicHealthPrograms "administration of public health programs")
(termFormat EnglishLanguage AdministrationOfUrbanPlanningAndCommunityAndRuralDevelopment "administration of urban planning and community and rural development")
(termFormat EnglishLanguage AdministrationOfVeteransAffairs "administration of veterans affairs")
(termFormat EnglishLanguage AdministrativeAndSupportAndWasteManagementAndRemediationServices "administrative and support and waste management and remediation services")
(termFormat EnglishLanguage AdministrativeAndSupportServices "administrative and support services")
(termFormat EnglishLanguage administrativeCenter "administrative center")
(termFormat EnglishLanguage AdministrativeManagementAndGeneralManagementConsultingServices "administrative management and general management consulting services")
(termFormat EnglishLanguage administrator "administrator")
(termFormat EnglishLanguage administratorStatus "administrator status")
(termFormat EnglishLanguage AdoraWestBank "adora west bank")
(termFormat EnglishLanguage AdvancedDevelopingCountry "advanced developing country")
(termFormat EnglishLanguage AdvancedEconomy "advanced economy")
(termFormat EnglishLanguage AdvertisingAgencies "advertising agencies")
(termFormat EnglishLanguage AdvertisingAndRelatedServices "advertising and related services")
(termFormat EnglishLanguage AdvertisingMaterialDistributionServices "advertising material distribution services")
(termFormat EnglishLanguage AdvisoryCommittee "advisory committee")
(termFormat EnglishLanguage Aerating "aerating")
(termFormat EnglishLanguage Aerator "aerator")
(termFormat EnglishLanguage AerobicExerciseDevice "aerobic exercise device")
(termFormat EnglishLanguage AeronauticalEngineer "aeronautical engineer")
(termFormat EnglishLanguage AerosolizedAgent "aerosolized agent")
(termFormat EnglishLanguage AerosolizedBacillusAnthracis "aerosolized bacillus anthracis")
(termFormat EnglishLanguage AerosolParticulateIssue "aerosol particulate issue")
(termFormat EnglishLanguage AerospaceProductAndPartsManufacturing "aerospace product and parts manufacturing")
(termFormat EnglishLanguage affiliatedOrganization "affiliated organization")
(termFormat EnglishLanguage Afforestation "afforestation")
(termFormat EnglishLanguage AfghanAfghani "afghan afghani")
(termFormat EnglishLanguage AfghanAfghaniCoin "afghan afghani coin")
(termFormat EnglishLanguage Afghanistan "afghanistan")
(termFormat EnglishLanguage AfittiLanguage "afitti language")
(termFormat EnglishLanguage Aflatoxicosis "aflatoxicosis")
(termFormat EnglishLanguage Aflatoxin "aflatoxin")
(termFormat EnglishLanguage Africa "africa")
(termFormat EnglishLanguage AfricanCaribbeanAndPacificGroupOfStates "african caribbean and pacific group of states")
(termFormat EnglishLanguage AfricanDevelopmentBank "african development bank")
(termFormat EnglishLanguage AfrikaansBasedCreoleLanguage "afrikaans based creole language")
(termFormat EnglishLanguage AfrikaansLanguage "afrikaans language")
(termFormat EnglishLanguage AfroAsiaticLanguage "afro asiatic language")
(termFormat EnglishLanguage AfroSeminoleCreoleLanguage "afro seminole creole language")
(termFormat EnglishLanguage Afternoon "afternoon")
(termFormat EnglishLanguage Aftershock "aftershock")
(termFormat EnglishLanguage afterTaxIncome "after tax income")
(termFormat EnglishLanguage AfulaIsrael "afula israel")
(termFormat EnglishLanguage AgavotaguerraLanguage "agavotaguerra language")
(termFormat EnglishLanguage age "age")
(termFormat EnglishLanguage AgenciesBrokeragesAndOtherInsuranceRelatedActivities "agencies brokerages and other insurance related activities")
(termFormat EnglishLanguage Agency "agency")
(termFormat EnglishLanguage AgencyForTheFrenchSpeakingCommunity "agency for the french speaking community")
(termFormat EnglishLanguage AgencyForTheProhibitionOfNuclearWeaponsInLatinAmericaAndTheCaribbean "agency for the prohibition of nuclear weapons in latin america and the caribbean")
(termFormat EnglishLanguage agentOperatesInArea "agent operates in area")
(termFormat EnglishLanguage AgentPoweredVehicle "agent powered vehicle")
(termFormat EnglishLanguage AgentsAndManagersForArtistsAthletesEntertainersAndOtherPublicFigures "agents and managers for artists athletes entertainers and other public figures")
(termFormat EnglishLanguage AghuGroupLanguage "aghu group language")
(termFormat EnglishLanguage AghuIndonesianLanguage "aghu indonesian language")
(termFormat EnglishLanguage AghuTharnggaluLanguage "aghu tharnggalu language")
(termFormat EnglishLanguage AGM "AG m")
(termFormat EnglishLanguage AGM114 "AG m114")
(termFormat EnglishLanguage AGM65 "AG m65")
(termFormat EnglishLanguage Agnostic "agnostic")
(termFormat EnglishLanguage Agnosticism "agnosticism")
(termFormat EnglishLanguage Agreement "agreement")
(termFormat EnglishLanguage agreementAdoptionDate "agreement adoption date")
(termFormat EnglishLanguage agreementEffectiveDate "agreement effective date")
(termFormat EnglishLanguage agreementEffectiveDuring "agreement effective during")
(termFormat EnglishLanguage AgreementOrganizationFn "agreement organization")
(termFormat EnglishLanguage agreementPeriod "agreement period")
(termFormat EnglishLanguage agreementRevisionDate "agreement revision date")
(termFormat EnglishLanguage AgriculturalChemicalsIssue "agricultural chemicals issue")
(termFormat EnglishLanguage AgriculturalDevelopment "agricultural development")
(termFormat EnglishLanguage AgriculturalExpansionIssue "agricultural expansion issue")
(termFormat EnglishLanguage AgriculturalImplementManufacturing "agricultural implement manufacturing")
;;(termFormat EnglishLanguage AgriculturalProduct "agricultural product")
(termFormat EnglishLanguage agriculturalProductType "agricultural product type")
(termFormat EnglishLanguage agriculturalProductTypeByRank "agricultural product type by rank")
(termFormat EnglishLanguage AgriculturalSector "agricultural sector")
(termFormat EnglishLanguage Agriculture "agriculture")
(termFormat EnglishLanguage AgricultureBasedEconomy "agriculture based economy")
(termFormat EnglishLanguage AgricultureConstructionAndMiningMachineryManufacturing "agriculture construction and mining machinery manufacturing")
;;(termFormat EnglishLanguage AgricultureFn "agriculture")
(termFormat EnglishLanguage AgricultureForestryFishingAndHunting "agriculture forestry fishing and hunting")
(termFormat EnglishLanguage AgriTurkey "agri turkey")
(termFormat EnglishLanguage AguanoLanguage "aguano language")
(termFormat EnglishLanguage AguarunaLanguage "aguaruna language")
(termFormat EnglishLanguage AH1 "A h1")
(termFormat EnglishLanguage AhmadiyyaMuslim "ahmadiyya muslim")
(termFormat EnglishLanguage AhmadiyyaSect "ahmadiyya sect")
(termFormat EnglishLanguage AIM9 "AI m9")
(termFormat EnglishLanguage AimakEthnicity "aimak ethnicity")
(termFormat EnglishLanguage AimaqLanguage "aimaq language")
(termFormat EnglishLanguage aimOfOrganization "aim of organization")
(termFormat EnglishLanguage AinDeflaAlgeria "ain defla algeria")
(termFormat EnglishLanguage AinElHajarAlgeria "ain el hajar algeria")
(termFormat EnglishLanguage AinuJapaneseLanguage "ainu japanese language")
(termFormat EnglishLanguage AinuTurkicLanguage "ainu turkic language")
(termFormat EnglishLanguage Air "air")
(termFormat EnglishLanguage AirAndGasCompressorManufacturing "air and gas compressor manufacturing")
(termFormat EnglishLanguage AirAttackMissile "air attack missile")
(termFormat EnglishLanguage AirConditioningAndWarmAirHeatingEquipmentAndCommercialAndIndustrialRefrigerationEquipmentManufacturing "air conditioning and warm air heating equipment and commercial and industrial refrigeration equipment manufacturing")
(termFormat EnglishLanguage Aircraft "aircraft")
(termFormat EnglishLanguage AircraftCarrier "aircraft carrier")
(termFormat EnglishLanguage AircraftEngineAndEnginePartsManufacturing "aircraft engine and engine parts manufacturing")
(termFormat EnglishLanguage AircraftManufacturing "aircraft manufacturing")
(termFormat EnglishLanguage AirForce "air force")
(termFormat EnglishLanguage AirForce-BranchOfService "air force- branch of service")
(termFormat EnglishLanguage AirLaunchMissile "air launch missile")
(termFormat EnglishLanguage AirPhotographicReconnaissance "air photographic reconnaissance")
(termFormat EnglishLanguage Airplane "airplane")
(termFormat EnglishLanguage AirPollution "air pollution")
(termFormat EnglishLanguage AirPollution-NitrogenOxidesProtocol "air pollution- nitrogen oxides protocol")
(termFormat EnglishLanguage AirPollution-PeristentOrganicPollutantsProtocol "air pollution- peristent organic pollutants protocol")
(termFormat EnglishLanguage AirPollution-Sulphur85Protocol "air pollution- sulphur85 protocol")
(termFormat EnglishLanguage AirPollution-Sulphur94Protocol "air pollution- sulphur94 protocol")
(termFormat EnglishLanguage AirPollution-VolatileOrganicCompoundsProtocol "air pollution- volatile organic compounds protocol")
(termFormat EnglishLanguage AirPollutionConvention "air pollution convention")
(termFormat EnglishLanguage AirPollutionIssue "air pollution issue")
(termFormat EnglishLanguage Airport "airport")
(termFormat EnglishLanguage AirportByRunwaySurface "airport by runway surface")
(termFormat EnglishLanguage AirportClassification "airport classification")
(termFormat EnglishLanguage AirportOperations "airport operations")
(termFormat EnglishLanguage AirportWithPavedRunway "airport with paved runway")
(termFormat EnglishLanguage AirportWithUnpavedRunway "airport with unpaved runway")
(termFormat EnglishLanguage AirPurificationEquipmentManufacturing "air purification equipment manufacturing")
(termFormat EnglishLanguage AirReconnaissance "air reconnaissance")
(termFormat EnglishLanguage AirRoute "air route")
(termFormat EnglishLanguage AirStream "air stream")
(termFormat EnglishLanguage airTemperature "air temperature")
(termFormat EnglishLanguage AirTrafficControl "air traffic control")
(termFormat EnglishLanguage AirTransitway "air transitway")
(termFormat EnglishLanguage AirTransportation "air transportation")
(termFormat EnglishLanguage AirTransportationIndustry "air transportation industry")
(termFormat EnglishLanguage Airway "airway")
(termFormat EnglishLanguage AjaccioFrance "ajaccio france")
(termFormat EnglishLanguage AkaBeaLanguage "aka bea language")
(termFormat EnglishLanguage AkaBoLanguage "aka bo language")
(termFormat EnglishLanguage AkaCariLanguage "aka cari language")
(termFormat EnglishLanguage AkaJeruLanguage "aka jeru language")
(termFormat EnglishLanguage AkaKedeLanguage "aka kede language")
(termFormat EnglishLanguage AkaKolLanguage "aka kol language")
(termFormat EnglishLanguage AkaKoraLanguage "aka kora language")
(termFormat EnglishLanguage AkarBaleLanguage "akar bale language")
(termFormat EnglishLanguage Alabama "alabama")
(termFormat EnglishLanguage AlabamaLanguage "alabama language")
(termFormat EnglishLanguage AlacalufanLanguage "alacalufan language")
(termFormat EnglishLanguage Alaska "alaska")
(termFormat EnglishLanguage AlBalamandLebanon "al balamand lebanon")
(termFormat EnglishLanguage Albania "albania")
(termFormat EnglishLanguage AlbanianLanguage "albanian language")
(termFormat EnglishLanguage AlbanianLek "albanian lek")
(termFormat EnglishLanguage Alcohol "alcohol")
(termFormat EnglishLanguage AlcoholicBeverage "alcoholic beverage")
(termFormat EnglishLanguage AleiSinaiGazaStrip "alei sinai gaza strip")
(termFormat EnglishLanguage AleiZahavWestBank "alei zahav west bank")
(termFormat EnglishLanguage AlemannicLanguage "alemannic language")
(termFormat EnglishLanguage AlemannischLanguage "alemannisch language")
(termFormat EnglishLanguage AleyLebanon "aley lebanon")
(termFormat EnglishLanguage Alfalfa "alfalfa")
(termFormat EnglishLanguage AlgebraicAttribute "algebraic attribute")
(termFormat EnglishLanguage AlgebraicEquation "algebraic equation")
(termFormat EnglishLanguage AlgebroDifferentialAttribute "algebro differential attribute")
(termFormat EnglishLanguage Algeria "algeria")
(termFormat EnglishLanguage AlgerianDinar "algerian dinar")
(termFormat EnglishLanguage AlgerianSignLanguage "algerian sign language")
(termFormat EnglishLanguage AlgicLanguage "algic language")
(termFormat EnglishLanguage AlgiersAlgeria "algiers algeria")
(termFormat EnglishLanguage alias "alias")
(termFormat EnglishLanguage AlkaliesAndChlorineManufacturing "alkalies and chlorine manufacturing")
(termFormat EnglishLanguage Alkaloid "alkaloid")
(termFormat EnglishLanguage AlkhanYurtRussia "alkhan yurt russia")
(termFormat EnglishLanguage allegiance "allegiance")
(termFormat EnglishLanguage AllemannicLanguage "allemannic language")
(termFormat EnglishLanguage AllOtherAmbulatoryHealthCareServices "all other ambulatory health care services")
(termFormat EnglishLanguage AllOtherAmusementAndRecreationIndustries "all other amusement and recreation industries")
(termFormat EnglishLanguage AllOtherAnimalProduction "all other animal production")
(termFormat EnglishLanguage AllOtherAutomotiveRepairAndMaintenance "all other automotive repair and maintenance")
(termFormat EnglishLanguage AllOtherBasicInorganicChemicalManufacturing "all other basic inorganic chemical manufacturing")
(termFormat EnglishLanguage AllOtherBasicOrganicChemicalManufacturing "all other basic organic chemical manufacturing")
(termFormat EnglishLanguage AllOtherBusinessSupportServices "all other business support services")
(termFormat EnglishLanguage AllOtherChemicalProductAndPreparationManufacturing "all other chemical product and preparation manufacturing")
(termFormat EnglishLanguage AllOtherConsumerGoodsRental "all other consumer goods rental")
(termFormat EnglishLanguage AllOtherConvertedPaperProductManufacturing "all other converted paper product manufacturing")
(termFormat EnglishLanguage AllOtherCropFarming "all other crop farming")
(termFormat EnglishLanguage AllOtherCutAndSewApparelManufacturing "all other cut and sew apparel manufacturing")
(termFormat EnglishLanguage AllOtherElectricalEquipmentAndComponentManufacturing "all other electrical equipment and component manufacturing")
(termFormat EnglishLanguage AllOtherFabricatedMetalProductManufacturing "all other fabricated metal product manufacturing")
(termFormat EnglishLanguage AllOtherFinancialInvestmentActivities "all other financial investment activities")
(termFormat EnglishLanguage AllOtherFoodManufacturing "all other food manufacturing")
(termFormat EnglishLanguage AllOtherGeneralMerchandiseStores "all other general merchandise stores")
(termFormat EnglishLanguage AllOtherGeneralPurposeMachineryManufacturing "all other general purpose machinery manufacturing")
(termFormat EnglishLanguage AllOtherGrainFarming "all other grain farming")
(termFormat EnglishLanguage AllOtherHealthAndPersonalCareStores "all other health and personal care stores")
(termFormat EnglishLanguage AllOtherHeavyConstruction "all other heavy construction")
(termFormat EnglishLanguage AllOtherHomeFurnishingsStores "all other home furnishings stores")
(termFormat EnglishLanguage AllOtherIndustrialMachineryManufacturing "all other industrial machinery manufacturing")
(termFormat EnglishLanguage AllOtherInformationServices "all other information services")
(termFormat EnglishLanguage AllOtherInsuranceRelatedActivities "all other insurance related activities")
(termFormat EnglishLanguage AllOtherLeatherGoodManufacturing "all other leather good manufacturing")
(termFormat EnglishLanguage AllOtherLegalServices "all other legal services")
(termFormat EnglishLanguage AllOtherMetalOreMining "all other metal ore mining")
(termFormat EnglishLanguage AllOtherMiscellaneousAmbulatoryHealthCareServices "all other miscellaneous ambulatory health care services")
(termFormat EnglishLanguage AllOtherMiscellaneousChemicalProductAndPreparationManufacturing "all other miscellaneous chemical product and preparation manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousCropFarming "all other miscellaneous crop farming")
(termFormat EnglishLanguage AllOtherMiscellaneousElectricalEquipmentAndComponentManufacturing "all other miscellaneous electrical equipment and component manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousFabricatedMetalProductManufacturing "all other miscellaneous fabricated metal product manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousFoodManufacturing "all other miscellaneous food manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousGeneralPurposeMachineryManufacturing "all other miscellaneous general purpose machinery manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousManufacturing "all other miscellaneous manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousNonmetallicMineralProductManufacturing "all other miscellaneous nonmetallic mineral product manufacturing")
(termFormat EnglishLanguage AllOtherMiscellaneousSchoolsAndInstruction "all other miscellaneous schools and instruction")
(termFormat EnglishLanguage AllOtherMiscellaneousStoreRetailers "all other miscellaneous store retailers")
(termFormat EnglishLanguage AllOtherMiscellaneousStoreRetailersExceptTobaccoStores "all other miscellaneous store retailers except tobacco stores")
(termFormat EnglishLanguage AllOtherMiscellaneousTextileProductMills "all other miscellaneous textile product mills")
(termFormat EnglishLanguage AllOtherMiscellaneousWasteManagementServices "all other miscellaneous waste management services")
(termFormat EnglishLanguage AllOtherMiscellaneousWoodProductManufacturing "all other miscellaneous wood product manufacturing")
(termFormat EnglishLanguage AllOtherMotorVehicleDealers "all other motor vehicle dealers")
(termFormat EnglishLanguage AllOtherMotorVehiclePartsManufacturing "all other motor vehicle parts manufacturing")
(termFormat EnglishLanguage AllOtherNondepositoryCreditIntermediation "all other nondepository credit intermediation")
(termFormat EnglishLanguage AllOtherNonmetallicMineralMining "all other nonmetallic mineral mining")
(termFormat EnglishLanguage AllOtherNonmetallicMineralProductManufacturing "all other nonmetallic mineral product manufacturing")
(termFormat EnglishLanguage AllOtherOutpatientCareCenters "all other outpatient care centers")
(termFormat EnglishLanguage AllOtherPersonalServices "all other personal services")
(termFormat EnglishLanguage AllOtherPetroleumAndCoalProductsManufacturing "all other petroleum and coal products manufacturing")
(termFormat EnglishLanguage AllOtherPipelineTransportation "all other pipeline transportation")
(termFormat EnglishLanguage AllOtherPlasticsProductManufacturing "all other plastics product manufacturing")
(termFormat EnglishLanguage AllOtherProfessionalScientificAndTechnicalServices "all other professional scientific and technical services")
(termFormat EnglishLanguage AllOtherPublishers "all other publishers")
(termFormat EnglishLanguage AllOtherRubberProductManufacturing "all other rubber product manufacturing")
(termFormat EnglishLanguage AllOtherSchoolsAndInstruction "all other schools and instruction")
(termFormat EnglishLanguage AllOtherSpecialTradeContractors "all other special trade contractors")
(termFormat EnglishLanguage AllOtherSpecialtyFoodStores "all other specialty food stores")
(termFormat EnglishLanguage AllOtherSupportActivitiesForTransportation "all other support activities for transportation")
(termFormat EnglishLanguage AllOtherSupportServices "all other support services")
(termFormat EnglishLanguage AllOtherTextileProductMills "all other textile product mills")
(termFormat EnglishLanguage AllOtherTransitAndGroundPassengerTransportation "all other transit and ground passenger transportation")
(termFormat EnglishLanguage AllOtherTransportationEquipmentManufacturing "all other transportation equipment manufacturing")
(termFormat EnglishLanguage AllOtherTravelArrangementAndReservationServices "all other travel arrangement and reservation services")
(termFormat EnglishLanguage AllOtherTravelerAccommodation "all other traveler accommodation")
(termFormat EnglishLanguage AllOtherWasteManagementServices "all other waste management services")
(termFormat EnglishLanguage AllOtherWoodProductManufacturing "all other wood product manufacturing")
(termFormat EnglishLanguage Almond "almond")
;;(termFormat EnglishLanguage Aloes "aloes")
(termFormat EnglishLanguage AlonMorehWestBank "alon moreh west bank")
(termFormat EnglishLanguage AlphabeticCharacter "alphabetic character")
(termFormat EnglishLanguage AltaicLanguage "altaic language")
(termFormat EnglishLanguage Altimeter "altimeter")
(termFormat EnglishLanguage altitude "altitude")
(termFormat EnglishLanguage AltitudeMeasure "altitude measure")