forked from nrpowell/grakn-kbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
entities.txt
executable file
·38696 lines (38696 loc) · 583 KB
/
entities.txt
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
__city_1
__jurisprudence_2
__bird_genus_1
__individual_1
__armed_forces_1
__mammal_genus_1
__herb_1
__asterid_dicot_genus_1
__alter_1
__bush_1
__rosid_dicot_genus_1
__fish_genus_1
__britain_1
__arthropod_genus_1
__animal_order_1
__dicot_genus_1
__liliopsid_genus_1
__author_1
__dilleniid_dicot_genus_1
__river_1
__town_1
__arthropod_family_1
__geographic_area_1
__computer_science_1
__aster_family_1
__port_5
__fish_family_1
__tree_5
__act_of_terrorism_1
__chemical_science_1
__cloth_1
__reptile_genus_1
__national_capital_1
__class_8
__natural_philosophy_1
__bird_family_1
__biological_science_1
__fungus_genus_1
__island_1
__mammal_family_1
__fern_genus_1
__baseball_1
__foreign_terrorist_organization_1
__math_1
__berth_1
__go_1
__athletics_1
__music_1
__papilionoideae_1
__flower_2
__accumulation_2
__change_1
__america_1
__mineral_1
__quality_1
__actor_1
__caryophylloid_dicot_genus_1
__period_1
__cookery_1
__france_1
__remove_1
__national_leader_1
__animal_1
__botany_2
__furnish_1
__fern_1
__wild_flower_1
__alphabetic_character_1
__medical_specialty_1
__vine_1
__pitched_battle_1
__family_orchidaceae_1
__medicament_1
__action_5
__plant_order_1
__liliid_monocot_genus_1
__dicot_family_1
__arteria_1
__agency_1
__device_1
__edible_fruit_1
__fungus_family_1
__auto_1
__orchid_1
__old_testament_1
__family_liliaceae_1
__church_of_rome_1
__lay_1
__displace_3
__africa_1
__art_1
__gymnosperm_genus_1
__bone_1
__fungus_1
__statistics_1
__monetary_unit_1
__vein_2
__operation_5
__england_1
__magnoliid_dicot_genus_1
__building_1
__anatomical_structure_1
__flora_2
__be_1
__deutschland_1
__mountain_peak_1
__order_perciformes_1
__wood_1
__italia_1
__country_1
__activity_1
__condition_3
__family_graminaceae_1
__doctrine_1
__china_1
__europe_1
__full_general_1
__book_5
__angiospermous_tree_1
__faith_1
__american_state_1
__change_state_1
__subshrub_1
__brassicaceae_1
__chain_7
__singer_1
__percoid_1
__state_capital_1
__emit_3
__act_1
__commerce_1
__family_labiatae_1
__fruit_tree_1
__bharat_1
__greek_mythology_1
__ca_2
__dramatist_1
__archipelago_1
__construction_3
__film_maker_1
__european_1
__mexico_1
__asia_1
__new_testament_1
__plant_genus_1
__metal_2
__astronomy_1
__african_country_1
__biological_process_1
__poet_1
__asian_1
__dish_3
__room_2
__move_3
__anatomy_1
__bishop_of_rome_1
__flavorer_1
__computer_1
__psychological_science_1
__ship_6
__ellas_1
__saint_3
__state_7
__mollusk_genus_1
__reptile_family_1
__genetic_science_1
__adorn_1
__card_game_1
__lake_1
__grass_5
__composer_1
__chief_executive_1
__theologian_1
__doc_1
__artificer_1
__happening_1
__skilled_worker_1
__bovidae_1
__appendage_1
__chemical_element_1
__russia_4
__grip_5
__bacteria_genus_1
__amphibian_genus_1
__conifer_1
__national_park_1
__asian_country_1
__protoctist_genus_1
__judaism_2
__trait_1
__linguistics_1
__golf_1
__create_1
__lone_star_state_1
__symptom_1
__japan_2
__adult_female_1
__espana_1
__body_part_1
__australia_1
__dilleniid_dicot_family_1
__province_1
__atlantic_1
__district_1
__pol_1
__motility_2
__mouth_1
__astronomer_1
__ablation_1
__geology_1
__football_1
__yiddish_1
__advocate_2
__garment_2
__mollusk_family_1
__aves_1
__fern_family_1
__european_country_1
__business_2
__oscines_1
__measuring_device_1
__artefact_1
__bodily_cavity_1
__composition_4
__crime_1
__chemical_compound_1
__matter_2
__medicine_4
__article_of_clothing_1
__king_1
__insect_1
__content_3
__oscine_1
__rosid_dicot_family_1
__artificer_2
__parcel_5
__liliopsid_family_1
__animal_kingdom_1
__phylum_2
__computer_program_1
__family_6
__brasil_1
__container_1
__bookman_1
__gnawer_1
__development_7
__bay_2
__philosopher_1
__aeroplane_1
__instrument_7
__everglade_state_1
__liliaceous_plant_1
__material_1
__zoological_science_1
__empire_state_1
__desert_3
__carver_3
__analysis_3
__antiquity_1
__navigation_3
__being_2
__araceae_1
__fastener_2
__deity_1
__photography_1
__genus_salix_1
__aquatic_plant_1
__dancer_1
__old_dominion_1
__eubacteria_1
__oas_1
__music_3
__war_2
__christian_religion_1
__fungus_order_1
__philosophy_2
__body_4
__neural_structure_1
__assemblage_1
__class_dicotyledonae_1
__architecture_1
__frame_7
__feeling_1
__day_4
__cactaceae_1
__automotive_vehicle_1
__canada_1
__criminal_1
__arecaceae_1
__colubridae_1
__ak_1
__adventurer_2
__law_3
__abnormal_condition_1
__denizen_1
__activity_3
__canal_2
__argentina_1
__character_1
__body_armor_1
__pacific_1
__logic_1
__republic_of_turkey_1
__apiaceae_1
__physiology_1
__class_hexapoda_1
__birth_defect_1
__mechanical_device_1
__taxon_1
__speaker_1
__statement_1
__genus_2
__adult_male_1
__organisation_3
__eye_1
__instrumentalist_1
__sea_1
__peninsula_1
__arizona_1
__ericaceae_1
__disease_of_the_skin_1
__athlete_1
__acquire_1
__assistant_1
__protection_2
__skeletal_muscle_1
__colored_2
__bird_1
__saltwater_fish_1
__hit_1
__liliid_monocot_family_1
__religious_text_1
__air_4
__dance_5
__group_action_1
__islam_2
__cricetidae_1
__family_solanaceae_1
__family_rosaceae_1
__al_iraq_1
__eutherian_1
__exposure_7
__aid_3
__congenital_disease_1
__leader_1
__family_malvaceae_1
__film_3
__arab_republic_of_egypt_1
__alteration_1
__agriculture_2
__physicist_1
__property_3
__willow_1
__decrease_6
__educator_1
__part_7
__latin_alphabet_1
__fasten_1
__abode_1
__support_21
__psychiatry_1
__jack_5
__ameliorate_1
__inborn_reflex_1
__equus_caballus_1
__applied_scientist_1
__andes_1
__buttercup_family_1
__article_of_furniture_1
__authorship_1
__family_mustelidae_1
__body_of_water_1
__homo_2
__beverage_1
__colubrid_1
__go_10
__change_integrity_1
__articulate_1
__court_3
__decoration_1
__physiological_condition_1
__measure_5
__governance_2
__hindooism_2
__american_indian_1
__force_9
__american_football_1
__malacopterygian_1
__herb_2
__weed_2
__piece_of_writing_1
__bacteria_family_1
__craniata_1
__chemical_action_1
__expert_1
__israel_1
__finch_1
__drug_3
__islamic_republic_of_pakistan_1
__object_3
__french_region_1
__area_1
__communicator_1
__family_fringillidae_1
__basketball_1
__soldier_2
__al_1
__chess_2
__bog_plant_1
__inflammation_1
__carnation_family_1
__act_5
__pine_2
__disagreeable_person_1
__body_2
__communicate_2
__cutis_1
__cactus_1
__admirer_1
__choose_1
__crucifer_1
__people_3
__hebraic_alphabet_1
__consequence_1
__disease_1
__greek_alphabet_1
__protoctist_family_1
__evergreen_state_1
__armor_plate_1
__organic_compound_1
__traveler_1
__scientific_theory_1
__fille_1
__come_about_1
__list_6
__decrease_1
__chile_1
__equip_1
__epistle_1
__speech_act_1
__philosophical_doctrine_1
__bodily_fluid_1
__government_4
__air_current_1
__duck_4
__bay_state_1
__apply_1
__functionary_1
__clergyman_1
__electronics_1
__electrical_device_1
__pathology_1
__bespeak_2
__aircraft_1
__vegetable_1
__diptera_1
__euphorbia_1
__eutheria_1
__coleoptera_1
__nebiim_1
__crusader_1
__actus_reus_1
__ballplayer_1
__part_9
__mallow_1
__beguiler_1
__belongings_1
__linear_unit_1
__mechanism_4
__scotland_1
__hand_tool_1
__architect_1
__fabaceae_1
__constellation_2
__play_1
__king_of_england_1
__nato_1
__boat_1
__agaric_2
__inform_1
__second_world_war_1
__come_down_1
__calculate_1
__belgique_1
__chemist_1
__formation_5
__iran_1
__attendant_1
__capital_3
__working_man_1
__forge_5
__grammar_1
__word_2
__nonsteroidal_anti_inflammatory_1
__assemble_1
__chemical_group_1
__beat_1
__area_3
__lepidoptera_1
__cater_1
__spurge_1
__appearance_1
__sound_11
__system_5
__cognitive_content_1
__bailiwick_1
__accipitridae_1
__hypericales_1
__apocynaceae_1
__conclusion_5
__time_of_life_1
__group_3
__economic_science_1
__fruit_2
__cut_1
__conjoin_1
__arab_league_1
__legume_1
__vessel_3
__color_1
__amphibian_family_1
__bolete_1
__republic_of_south_africa_1
__geometry_1
__cupressaceae_1
__cover_1
__holland_1
__relation_1
__deed_1
__printing_2
__covering_2
__physical_phenomenon_1
__religious_order_1
__emerald_isle_1
__performing_arts_1
__handicraft_2
__arts_1
__gas_4
__class_gasteropoda_1
__exceed_1
__edible_nut_1
__lacertilia_1
__affect_2
__alcohol_1
__bring_up_4
__attach_1
__dance_2
__consider_1
__character_6
__american_indian_language_1
__dramatic_art_1
__attorney_1
__anuran_1
__coat_1
__motion_6
__craniate_1
__dark_ages_1
__worm_genus_1
__attempt_2
__root_8
__antelope_1
__salamander_1
__game_3
__kingdom_of_saudi_arabia_1
__land_of_enchantment_1
__family_proteaceae_1
__pant_4
__circuit_1
__anatidae_1
__civil_right_1
__point_of_entry_1
__thrush_3
__adjust_1
__physical_process_1
__poesy_1
__sign_11
__disposition_1
__family_scolopacidae_1
__body_5
__schweiz_1
__greater_new_york_1
__walk_1
__class_2
__assets_1
__mythical_creature_1
__berry_1
__unit_1
__road_1
__plant_part_1
__social_control_1
__document_2
__class_filicinae_1
__agree_2
__athyriaceae_1
__pathology_2
__division_9
__club_4
__bible_1
__economic_expert_1
__celtic_deity_1
__shoe_2
__language_1
__dynasty_1
__judicial_writ_1
__gun_1
__class_4
__facility_1
__gymnosperm_family_1
__equality_state_1
__leg_1
__authorities_1
__implement_4
__family_papaveraceae_1
__british_capital_1
__italian_region_1
__eucalypt_1
__combat_3
__compose_3
__family_rubiaceae_1
__university_2
__number_8
__membrane_2
__beetle_2
__employee_1
__greek_deity_1
__rate_5
__volcano_2
__cervid_1
__tool_5
__dry_land_1
__disorder_3
__change_of_state_1
__sports_equipment_1
__care_for_2
__magnoliid_dicot_family_1
__collect_2
__great_lakes_state_1
__chapeau_1
__revolutionary_1
__amount_4
__family_saxifragaceae_1
__evaluate_2
__cognition_1
__arthropod_1
__child_1
__adherent_1
__applied_science_1
__poisonous_plant_1
__system_2
__harm_1
__administrative_district_1
__algeria_1
__expressive_style_1
__genus_ulmus_1
__genus_prunus_1
__family_scrophulariaceae_1
__food_product_1
__elapidae_1
__asterid_dicot_family_1
__didactics_1
__domestic_cat_1
__face_8
__animal_tissue_1
__genus_penstemon_1
__mathematician_1
__wader_1
__express_2
__invertebrate_1
__electronic_equipment_1
__time_unit_1
__attire_1
__physical_property_1
__australia_2
__organ_1
__seed_9
__science_1
__computer_software_1
__area_2
__man_of_science_1
__elm_1
__large_integer_1
__give_3
__affect_1
__natural_language_1
__elasmobranchii_1
__aroid_1
__hair_1
__assign_1
__county_1
__agaricales_1
__revenue_enhancement_1
__aliment_1
__acanthopterygian_1
__family_iguania_1
__poland_1
__section_2
__machine_3
__man_4
__gulf_1
__african_1
__apparel_1
__meal_1
__info_1
__alloy_1
__hamamelid_dicot_genus_1
__coif_2
__bread_1
__endocrine_1
__family_polypodiaceae_1
__family_podocarpaceae_1
__action_3
__arouse_1
__alignment_1
__cut_28
__order_polemoniales_1
__braincase_1
__small_indefinite_amount_1
__brassica_1
__change_11
__capacity_measure_1
__micro_organism_1
__bivalvia_1
__caterpillar_1
__comedian_1
__bunk_7
__close_in_2
__nc_1
__ascertain_1
__poppy_1
__musical_notation_1
__bargainer_1
__equipment_1
__pigment_3
__line_16
__position_11
__work_33
__wheel_5
__buddhism_1
__adult_1
__salt_3
__point_15
__south_america_1
__genus_lathyrus_1
__diplomat_1
__ductless_gland_1
__bos_taurus_1
__consume_1
__architecture_2
__arrange_1
__bird_of_minerva_1
__assail_1
__canvas_5
__house_7
__religious_person_1
__mental_state_1
__canis_familiaris_1
__electron_tube_1
__geological_period_1
__caesalpinioideae_1
__arm_1
__foot_2
__mammal_1
__family_phasianidae_1
__biologist_1
__division_eubacteria_1
__diversion_1
__fill_1
__colombia_1
__mustelid_1
__bum_3
__create_5
__judgement_5
__wall_2
__bark_1
__meat_1
__color_6
__hawk_3
__genus_lonicera_1
__dental_medicine_1
__indefinite_quantity_1
__solar_system_1
__noise_2
__common_market_1
__british_capacity_unit_1
__aid_2
__electromagnetic_spectrum_1
__metric_weight_unit_1
__house_3
__ruler_2
__geraniales_1
__church_3
__mediterranean_1
__address_6
__exercise_5
__declare_1
__semitic_deity_1
__form_9
__aggressor_1
__plaything_1
__palm_4
__cell_1
__order_ranales_1
__hit_4
__industrialist_1
__anatolia_1
__ligneous_plant_1
__bound_1
__social_unit_1
__moslem_1
__ball_2
__sandpiper_1
__carangidae_1
__combat_ship_1
__accolade_1
__royal_family_1
__astrology_1
__action_2
__defence_1
__ic_1
__form_of_address_1
__oil_3
__conductor_1
__shop_5
__bomb_2
__limicoline_bird_1
__ar_2
__tracheophyte_1
__break_up_3
__business_1
__centennial_state_1
__booze_2
__apparatus_1
__turn_1
__military_officer_1
__felis_1
__beginning_5
__channelise_1
__boot_3
__street_1
__middle_east_1
__house_13
__common_grape_vine_1
__lawn_tennis_1
__worker_1
__vessel_2
__bacteria_1
__arthropoda_1
__bicycle_2
__myrtales_1
__hand_3
__caribbean_1
__gregorian_calendar_1
__defense_10
__hebrew_calendar_1
__be_2
__missouri_1
__boxing_1
__empire_state_of_the_south_1
__bloom_2
__course_1
__analyse_1
__historian_1
__meteorology_2
__army_unit_1
__painter_1
__candy_1
__worm_family_1
__cervix_1
__factory_1
__euphorbiaceae_1
__social_group_1
__cambria_1
__family_gesneriaceae_1
__haired_1
__mythical_being_1
__decoration_2
__cerebration_1
__business_5
__mimosoideae_1
__division_8
__enter_5
__dutch_east_indies_1
__hagiographa_1
__musical_note_1
__actress_1
__communication_2
__care_2
__foliage_1
__hondo_1
__blade_1
__acres_1
__family_pteridaceae_1
__craniometric_point_1
__artist_1
__call_21
__financier_1
__bag_1
__animal_husbandry_1
__work_1
__analgesic_1
__navigation_1
__breathing_1
__folklore_1
__family_sterculiaceae_1
__driving_2
__legal_proceeding_1
__cape_1
__natural_object_1
__genus_citrus_1
__north_america_1
__capital_of_france_1
__himalaya_1
__family_meliaceae_1
__new_world_warbler_1
__attack_6
__falls_2
__oil_4
__reproductive_structure_1
__piece_of_cloth_1
__defender_1
__honeysuckle_1
__go_away_2
__light_7
__pianist_1
__portugal_1
__offender_1
__metric_linear_unit_1
__ceremonial_1
__wheeled_vehicle_1
__cyprinidae_1
__avoirdupois_unit_1
__austria_1
__cake_2
__big_1
__family_viverridae_1
__american_civil_war_1
__bar_2
__gregorian_calendar_month_1
__simple_2
__teleost_1
__bound_3
__body_politic_1
__oak_2
__chromatic_2
__cerebrate_1
__decrease_2
__beehive_state_1
__member_1
__republic_of_venezuela_1
__military_operation_1
__organic_phenomenon_1
__advance_4
__advance_1
__waxycap_1
__eleven_2
__cistron_1
__international_intelligence_agency_1
__respiratory_disease_1
__confederacy_1
__keystone_state_1
__maker_1
__air_7
__choreographer_1
__legal_holiday_1
__relation_3
__feminist_1
__belgian_congo_1
__compartment_2
__hunt_1
__come_in_1
__capital_of_italy_1
__arena_3
__comprehend_2
__chest_1
__phase_3
__jewish_calendar_month_1
__filicales_1
__anovulant_1
__borage_family_1
__acquire_2
__citrus_2
__brush_footed_butterfly_1
__al_magrib_1
__achromatic_1
__idea_1
__accumulate_1
__opening_10
__chromatic_color_1
__legal_right_1
__beaux_arts_1
__arithmetic_1
__vino_1
__electromagnetic_unit_1
__accomplishment_2
__garden_state_1
__band_4
__concept_1
__amount_3
__attitude_1
__battler_1