-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSample.xml
More file actions
1477 lines (1477 loc) · 105 KB
/
Sample.xml
File metadata and controls
1477 lines (1477 loc) · 105 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<dictionary title="activity">
<desc>A dictionary of 148 essential oil or constituent compound biochemical and/or biological activities</desc>
<metadata role="query">medicinal activity</metadata>
<metadata role="query">essential oil</metadata>
<entry description="molecule that inhibits the oxidation of other molecules" name="antioxidant" term="antioxidant"
wikidataURL="http://www.wikidata.org/entity/Q133948" wikidataID="Q133948" wikipediaPage="https://en wikipedia.org/wiki/Antioxidant">
<description xml:lang="es">molécula capaz de retardar o prevenir la oxidación de otras moléculas</description>
<description xml:lang="de">Chemische Verbindung, die eine Oxidation anderer Stoffe verlangsamt oder gänzlich verhindert</description>
<synonym xml:lang="hi">प्रतिऑक्सीकारक</synonym>
<synonym xml:lang="de">Antioxidans</synonym>
<synonym xml:lang="fr">antioxydant</synonym>
<synonym xml:lang="es">antioxidante</synonym>
<synonym xml:lang="ta">உயிர் வளியேற்ற எதிர்ப்பொருள்</synonym>
<synonym xml:lang="zh">抗氧化剂</synonym>
<synonym>Antioxidants</synonym>
</entry>
<entry description="Agents that are put on the skin to reduce sweating or prevent excess sweating (hyperhidrosis)" name="Antiperspirants" term="Antiperspirants" wikidataURL="http://www.wikidata.org/entity/Q1423889" wikidataID="Q1423889">
<synonym xml:lang="de">Antitranspirant</synonym>
<synonym xml:lang="fr">anti-transpirant</synonym>
<synonym>Antihidrotic</synonym>
</entry>
<entry description="A substance causing the halt in the production of sebum (sebostasis) by the sebaceous glands." name="Sebostatic" term="Sebostatic" wikidataURL="http://www.wikidata.org/entity/Q1696730" wikidataID="Q1696730">
<synonym xml:lang="de">Sebostase</synonym>
<synonym xml:lang="fr">sébostatique</synonym>
<synonym xml:lang="es">sebostasis</synonym>
<synonym>sebostasis agent</synonym>
</entry>
<entry description="substance that acts locally on cutaneous or mucosal surfaces to produce inflammation" name="irritant" term="irritant" wikidataURL="http://www.wikidata.org/entity/Q2142251" wikidataID="Q2142251">
<description xml:lang="de">Gefahrstoffe</description>
<description xml:lang="fr">substance qui provoque des irritations</description>
<synonym xml:lang="de">Reizende Stoffe</synonym>
<synonym xml:lang="fr">irritant</synonym>
<synonym xml:lang="es">irritante</synonym>
<synonym>Irritants</synonym>
<synonym>irritating</synonym>
</entry>
<entry description="group of chemical compounds" name="antineoplastic" term="antineoplastic" wikidataURL="http://www.wikidata.org/entity/Q2853144" wikidataID="Q2853144">
<description xml:lang="es">medicamento destinado a bloquear la proliferación de celulas cancerígenas</description>
<description xml:lang="fr">médicament destiné à bloquer la prolifération des cellules cancéreuses</description>
<synonym xml:lang="fr">anticancéreux</synonym>
<synonym xml:lang="es">antineoplásico</synonym>
<synonym xml:lang="zh">抗肿瘤药</synonym>
<synonym>anticancer agent</synonym>
<synonym>Anticancer Agents</synonym>
<synonym>anticancer drug</synonym>
<synonym>antineoplastic</synonym>
<synonym>antineoplastic agent</synonym>
<synonym>antineoplastic agents</synonym>
<synonym>antineoplastic drug</synonym>
<synonym>Antineoplastic Drugs</synonym>
<synonym>Antineoplastics</synonym>
<synonym>Antitumor Agents</synonym>
<synonym>Antitumor Drugs</synonym>
<synonym>Cancer Chemotherapy Agents</synonym>
<synonym>Cancer Chemotherapy Drugs</synonym>
<synonym>Chemotherapeutic Anticancer Agents</synonym>
<synonym>Chemotherapeutic Anticancer Drug</synonym>
</entry>
<entry description="medicine or chemical compound that inhibits or blocks prostaglandin" name="antiprostaglandin" term="antiprostaglandin" wikidataURL="http://www.wikidata.org/entity/Q2853342" wikidataID="Q2853342">
<synonym xml:lang="fr">Antiprostaglandine</synonym>
</entry>
<entry description="preparation to induce evacuation of the bowels. produces a soft formed stool, and relaxes and loosens the bowels, typically used over a protracted period, to relieve constipation." name="purgative" term="purgative" wikidataURL="http://www.wikidata.org/entity/Q3410946" wikidataID="Q3410946">
<synonym xml:lang="fr">purgatif</synonym>
</entry>
<entry description="drug used to cause dilation of the blood vessels" name="vasodilator agent" term="vasodilator agent" wikidataURL="http://www.wikidata.org/entity/Q4008956" wikidataID="Q4008956">
<description xml:lang="es">Fármacos usados para relajar los músculos de las arterias. Usados en angina de pecho.</description>
<synonym xml:lang="fr">vasodilatateur</synonym>
<synonym xml:lang="es">Vasodilatadores</synonym>
<synonym>vasodilator</synonym>
<synonym>vasodilator agents</synonym>
<synonym>vasodilator drugs</synonym>
<synonym>vasodilators</synonym>
<synonym>vasorelaxants</synonym>
</entry>
<entry description="An agent that promotes healing through the formation of scar tissue. For example, sandalwood is a natural cicatrizant." name="Cicatrizant" term="Cicatrizant" wikidataURL="http://www.wikidata.org/entity/Q5119340" wikidataID="Q5119340">
<synonym xml:lang="de">Vernarbungsmittel</synonym>
</entry>
<entry name="Q7833952" term="Q7833952" wikidataURL="http://www.wikidata.org/entity/Q7833952">
</entry>
<entry description="medication or chemical compound that treats neuralgia" name="antineuralgic" term="antineuralgic" wikidataURL="http://www.wikidata.org/entity/Q11905748" wikidataID="Q11905748">
</entry>
<entry description="Functions to control the survival, growth, differentiation and effector function of tissues and cells." name="cytokine activity" term="cytokine activity" wikidataURL="http://www.wikidata.org/entity/Q14862699" wikidataID="Q14862699">
<synonym xml:lang="zh">細胞因子活性</synonym>
<synonym>GO:0005125</synonym>
</entry>
<entry description="the property of chemical agents that damages the genetic information within a cell causing mutations, which may lead to cancer" name="genotoxicity" term="genotoxicity" wikidataURL="http://www.wikidata.org/entity/Q18663259" wikidataID="Q18663259">
<synonym xml:lang="zh">遺傳毒性</synonym>
<synonym>genotoxic</synonym>
</entry>
<entry description="A substance that counteracts hair loss." name="anti alopecic" term="anti alopecic" wikidataURL="http://www.wikidata.org/entity/Q21045470" wikidataID="Q21045470">
</entry>
<entry description="The stopping, prevention or reduction of the activity of the enzyme ornithine decarboxylase. Ornithine decarboxylase antizyme (ODC-AZ) is an ornithine decarboxylase inhibitor." name="ornithine decarboxylase inhibitor activity" term="ornithine decarboxylase inhibitor activity" wikidataURL="http://www.wikidata.org/entity/Q21139980" wikidataID="Q21139980">
<synonym>Ornithine decarboxylase antizyme</synonym>
<synonym>GO:0008073</synonym>
</entry>
<entry name="Q26697606" term="Q26697606" wikidataURL="http://www.wikidata.org/entity/Q26697606" wikidataID="Q26697606">
</entry>
<entry description="class of drugs used to treat or ameliorate peptic ulcer or irritation of the gastrointestinal tract" name="anti-ulcer drug" term="anti-ulcer drug" wikidataURL="http://www.wikidata.org/entity/Q41602594" wikidataID="Q41602594">
<synonym xml:lang="fr">antiulcéreux</synonym>
<synonym xml:lang="es">antiulceroso</synonym>
<synonym>anti-ulcer agent</synonym>
<synonym>Anti-Ulcer Drugs</synonym>
<synonym>antiulcer</synonym>
<synonym>antiulcer drug</synonym>
<synonym>antiulcerogenic</synonym>
<synonym>Anti-Ulcer Agents</synonym>
</entry>
<entry description="substance that prevents infectious agents or organisms from spreading or kill infectious agents in order to prevent the spread of infection" name="anti-infective agent" term="anti-infective agent" wikidataURL="http://www.wikidata.org/entity/Q50377176" wikidataID="Q50377176">
<synonym xml:lang="fr">anti-infectieux</synonym>
<synonym xml:lang="es">antiinfeccioso</synonym>
<synonym>Anti-Infective Agents</synonym>
<synonym>Antiinfective Agents</synonym>
</entry>
<entry description="Non-steroidal chemical compounds with abortifacient activity." name="Abortifacient Agents, Nonsteroidal" term="Abortifacient Agents, Nonsteroidal" wikidataURL="http://www.wikidata.org/entity/Q50415114" wikidataID="Q50415114">
<synonym>Abortifacient Agents</synonym>
<synonym>Non-Steroidal</synonym>
</entry>
<entry description="An agent that kills Trichomonas organisms, such as in treating vaginitis that is caused by Trichomonas vaginalis." name="antitrichomonal agents" term="antitrichomonal agents" wikidataURL="http://www.wikidata.org/entity/Q50429885" wikidataID="Q50429885">
<synonym>antitrichomonal agent</synonym>
<synonym>Antitrichomonal Drugs</synonym>
<synonym>Antitrichomonals</synonym>
<synonym>Trichomonicides</synonym>
</entry>
<entry description="Drugs that stimulate contraction of the myometrium. They are used to induce labor, obstetric at term, to prevent or control postpartum or postabortion hemorrhage, and to assess fetal status in high risk pregnancies." name="oxytocics" term="oxytocics" wikidataURL="http://www.wikidata.org/entity/Q50430113" wikidataID="Q50430113">
<description xml:lang="fr">substance qui favorise les contractions utérines</description>
<synonym xml:lang="fr">oxytocique</synonym>
<synonym>Oxytocic Agents</synonym>
<synonym>Oxytocic Drugs</synonym>
<synonym>parturifacient</synonym>
<synonym>Uterine Stimulants</synonym>
</entry>
<entry name="Q50430144" term="Q50430144" wikidataURL="http://www.wikidata.org/entity/Q50430144">
</entry>
<entry description="Agents that are used to treat allergic reactions. Most of these drugs act by preventing the release of inflammatory mediators or inhibiting the actions of released mediators on their target cells. (from ama drug evaluations annual, 1994, p475)" name="Anti-Allergic Agents" term="Anti-Allergic Agents" wikidataURL="http://www.wikidata.org/entity/Q50430264" wikidataID="Q50430264">
<synonym xml:lang="fr">médicament anti-allergie</synonym>
<synonym>Anti-Allergics</synonym>
<synonym>Anti-Allergy Drugs</synonym>
<synonym>Antiallergic Agents</synonym>
<synonym>Antiallergic Drugs</synonym>
<synonym>Antiallergics</synonym>
<synonym>Antiallergy Agents</synonym>
</entry>
<entry description="Drugs that are used to treat asthma" name="Anti-Asthmatic Agents" term="Anti-Asthmatic Agents" wikidataURL="http://www.wikidata.org/entity/Q50430265" wikidataID="Q50430265">
<synonym xml:lang="fr">antiasthmatique</synonym>
<synonym>Anti-Asthmatic Drugs</synonym>
<synonym>Anti-Asthmatics</synonym>
<synonym>Antiasthmatic Agents</synonym>
<synonym>Antiasthmatic Drugs</synonym>
<synonym>Antiasthmatics</synonym>
</entry>
<entry description="Allergent causing anaphylaxis, an allergic reaction with symptoms such as itchy rash, throat swelling, low blood pressure." name="anaphylactic" term="anaphylactic" wikidataURL="http://www.wikidata.org/entity/Q84957514" wikidataID="Q84957514">
</entry>
<entry description="an insecticide that is specifically targeted against the larval life stage of an insect. Their most common use is against mosquitoes. Larvicides may be contact poisons, stomach poisons, growth regulators, or (increasingly) biological control agents." name="larvicide" term="larvicide" wikidataURL="http://www.wikidata.org/entity/Q522817" wikidataID="Q522817" wikipediaPage="https://en wikipedia.org/wiki/Larvicide">
<synonym xml:lang="de">Larvizid</synonym>
<synonym xml:lang="fr">Larvicide</synonym>
<synonym xml:lang="zh">杀幼虫剂</synonym>
<synonym>larvacide</synonym>
</entry>
<entry description="drug which reduces appetite" name="anorectic" term="anorectic" wikidataURL="http://www.wikidata.org/entity/Q567709" wikidataID="Q567709" wikipediaPage="https://en wikipedia.org/wiki/Anorectic">
<description xml:lang="de">Arzneistoffe mit einer Appetit hemmenden Wirkung</description>
<description xml:lang="fr">composés chimiques diminuant l'appétit</description>
<synonym xml:lang="de">Anorektikum</synonym>
<synonym xml:lang="fr">anorexigène</synonym>
<synonym xml:lang="es">Anorexígeno</synonym>
<synonym xml:lang="zh">食慾抑制劑</synonym>
<synonym>Anorectic Agents</synonym>
<synonym>Anorectics</synonym>
<synonym>Anorexic Drugs</synonym>
<synonym>Anorexigenic Drugs</synonym>
<synonym>anti appetant</synonym>
<synonym>appetite depressant</synonym>
<synonym>Appetite Suppressants</synonym>
<synonym>Appetite-Depressing Drugs</synonym>
<synonym>Appetite-Suppressant Drugs</synonym>
</entry>
<entry description="substance intended to kill helminths (parasitic worms)" name="anthelmintic" term="anthelmintic" wikidataURL="http://www.wikidata.org/entity/Q572294" wikidataID="Q572294" wikipediaPage="https://en wikipedia.org/wiki/Anthelmintic">
<description xml:lang="es">medicamento utilizado en el tratamiento de las helmintiasis</description>
<description xml:lang="de">Arzneistoff zur Bekämpfung von Würmern</description>
<synonym xml:lang="de">Anthelminthikum</synonym>
<synonym xml:lang="fr">anthelminthique</synonym>
<synonym xml:lang="es">antihelmíntico</synonym>
<synonym xml:lang="ta">ஒட்டுண்ணிப் புழுவெதிரி</synonym>
<synonym xml:lang="zh">驅蟲藥劑</synonym>
<synonym>anthelmintics</synonym>
<synonym>Antihelmintics</synonym>
<synonym>vermicide</synonym>
<synonym>vermifuge</synonym>
<synonym>Vermifuges</synonym>
</entry>
<entry description="Substances which lower blood glucose levels" name="anti-diabetic medication" term="anti-diabetic medication" wikidataURL="http://www.wikidata.org/entity/Q575062" wikidataID="Q575062" wikipediaPage="https://en wikipedia.org/wiki/Anti-diabetic_medication">
<description xml:lang="de">Arzneimittel</description>
<description xml:lang="fr">médicament utilisé pour traiter le diabète sucré.</description>
<synonym xml:lang="de">Antidiabetikum</synonym>
<synonym xml:lang="fr">antidiabétique</synonym>
<synonym xml:lang="es">antidiabético</synonym>
<synonym xml:lang="zh">抗糖尿病药</synonym>
<synonym>antidiabetic</synonym>
<synonym>antidiabetic agent</synonym>
<synonym>antihyperglycemic</synonym>
<synonym>Antihyperglycemic Agents</synonym>
<synonym>Antihyperglycemics</synonym>
<synonym>hypoglycemic agent</synonym>
<synonym>hypoglycemic agents</synonym>
<synonym>Hypoglycemic Drugs</synonym>
<synonym>Hypoglycemics</synonym>
</entry>
<entry description="drug used to prevent nausea or vomiting" name="antiemetic" term="antiemetic" wikidataURL="http://www.wikidata.org/entity/Q575136" wikidataID="Q575136" wikipediaPage="https://en wikipedia.org/wiki/Antiemetic">
<description xml:lang="es">fármaco que impide el vómito (emesis) o la náusea</description>
<description xml:lang="de">Medikamentengruppe</description>
<synonym xml:lang="de">Antiemetikum</synonym>
<synonym xml:lang="fr">antiémétique</synonym>
<synonym xml:lang="es">antiemético</synonym>
<synonym xml:lang="zh">止吐劑</synonym>
<synonym>anti-emetics</synonym>
<synonym>antiemetic agents</synonym>
<synonym>antiemetic drug</synonym>
<synonym>antiemetic drugs</synonym>
<synonym>antiemetics</synonym>
</entry>
<entry description="agent that prevents fibrinolysis or lysis of a blood clot or thrombus" name="antifibrinolytic" term="antifibrinolytic" wikidataURL="http://www.wikidata.org/entity/Q575222" wikidataID="Q575222" wikipediaPage="https://en wikipedia.org/wiki/Antifibrinolytic">
<synonym xml:lang="de">Antifibrinolytikum</synonym>
<synonym xml:lang="es">antifibrinolítico</synonym>
<synonym xml:lang="zh">抗纤维蛋白溶解药</synonym>
<synonym>Antifibrinolysins</synonym>
<synonym>Antifibrinolytic Agents</synonym>
<synonym>Antifibrinolytics</synonym>
</entry>
<entry description="all drugs for hypertension's treatment" name="antihypertensive drug" term="antihypertensive drug" wikidataURL="http://www.wikidata.org/entity/Q575890" wikidataID="Q575890" wikipediaPage="https://en wikipedia.org/wiki/Antihypertensive_drug">
<description xml:lang="es">grupo de fármacos utilizados para el tratamiento de la hipertensión</description>
<description xml:lang="de">blutdrucksenkendes Arzneimittel</description>
<description xml:lang="fr">Antihypertenseur</description>
<synonym xml:lang="de">Antihypertensivum</synonym>
<synonym xml:lang="fr">antihypertenseur</synonym>
<synonym xml:lang="es">antihipertensivo</synonym>
<synonym xml:lang="zh">抗高血压药</synonym>
<synonym>Anti-Hypertensive Agents</synonym>
<synonym>Anti-Hypertensive Drugs</synonym>
<synonym>Anti-Hypertensives</synonym>
<synonym>antihypertensive agent</synonym>
<synonym>antihypertensive agents</synonym>
<synonym>Antihypertensive Drugs</synonym>
<synonym>Antihypertensives</synonym>
<synonym>anti-hypertensive therapy</synonym>
</entry>
<entry description="class of medications" name="anticonvulsant agent" term="anticonvulsant agent" wikidataURL="http://www.wikidata.org/entity/Q576618" wikidataID="Q576618" wikipediaPage="https://en wikipedia.org/wiki/Anticonvulsant">
<description xml:lang="es">tipo de medicamento</description>
<description xml:lang="de">Klasse von Arzneimitteln</description>
<synonym xml:lang="de">Antikonvulsivum</synonym>
<synonym xml:lang="fr">antiépileptique</synonym>
<synonym xml:lang="es">antiepiléptico</synonym>
<synonym xml:lang="zh">抗癲癇藥物</synonym>
<synonym>anticonvulsant agent</synonym>
<synonym>anticonvulsant drug</synonym>
<synonym>anticonvulsants</synonym>
<synonym>anticonvulsive agent</synonym>
<synonym>anticonvulsive drug</synonym>
</entry>
<entry description="pharmaceutical or chemical fungicide or fungistatic used to treat and prevent mycosis" name="antifungal" term="antifungal" wikidataURL="http://www.wikidata.org/entity/Q578726" wikidataID="Q578726" wikipediaPage="https://en wikipedia.org/wiki/Antifungal">
<description xml:lang="de">Medikamentenklasse</description>
<synonym xml:lang="de">Antimykotikum</synonym>
<synonym xml:lang="fr">antimycosique</synonym>
<synonym xml:lang="es">antifúngico</synonym>
<synonym xml:lang="ur">اردو</synonym>
<synonym xml:lang="zh">抗真菌药</synonym>
<synonym>Antifungal</synonym>
<synonym>Antifungal drug</synonym>
<synonym>Antifungal drugs</synonym>
<synonym>antimycotic</synonym>
<synonym>Fungicides</synonym>
<synonym>Therapeutic</synonym>
<synonym>Therapeutic Fungicides</synonym>
<synonym>Antifungal Agents</synonym>
<synonym>Antifungal Agent</synonym>
</entry>
<entry description="substance used to treat or prevent parasitic infections" name="antiparasitic" term="antiparasitic" wikidataURL="http://www.wikidata.org/entity/Q581102" wikidataID="Q581102" wikipediaPage="https://en wikipedia.org/wiki/Antiparasitic">
<description xml:lang="es">medicamento usado para el tratamiento de infecciones causadas por bacterias y parásitos</description>
<synonym xml:lang="de">Antiparasitikum</synonym>
<synonym xml:lang="fr">parasiticide</synonym>
<synonym xml:lang="es">antiparasitario</synonym>
<synonym xml:lang="zh">抗寄生物药</synonym>
<synonym>Parasiticides</synonym>
<synonym>Antiparasitic</synonym>
<synonym>Antiparasitic Drugs</synonym>
<synonym>Antiparasitics</synonym>
<synonym>Parasiticide</synonym>
<synonym>Antiparasitic Agents</synonym>
</entry>
<entry description="substance that reduces or suppresses inflammation" name="anti-inflammatory agent" term="anti-inflammatory agent" wikidataURL="http://www.wikidata.org/entity/Q581996" wikidataID="Q581996" wikipediaPage="https://en wikipedia.org/wiki/Anti-inflammatory">
<description xml:lang="de">symptomatischer Therapieansatz</description>
<description xml:lang="fr">médicament</description>
<synonym xml:lang="de">Entzündungshemmung</synonym>
<synonym xml:lang="fr">anti-inflammatoire</synonym>
<synonym xml:lang="es">antiinflamatorio</synonym>
<synonym xml:lang="zh">抗炎性</synonym>
<synonym>Anti-Inflammatories</synonym>
<synonym>anti-inflammatory</synonym>
<synonym>agents</synonym>
<synonym>anti-Inflammatory</synonym>
<synonym>agents</synonym>
<synonym>Antiinflammatory</synonym>
<synonym>antiinflammatories</synonym>
<synonym>antiinflammatory agents</synonym>
<synonym>anti-inflammatory agents</synonym>
</entry>
<entry description="class of pharmaceuticals used in treatment of protozoan infection" name="antiprotozoal" term="antiprotozoal" wikidataURL="http://www.wikidata.org/entity/Q582559" wikidataID="Q582559" wikipediaPage="https://en wikipedia.org/wiki/Antiprotozoal">
<description xml:lang="es">clase de fármacos para el tratamiento de parásitos protozoarios</description>
<synonym xml:lang="de">Antiprotozoikum</synonym>
<synonym xml:lang="fr">antiprotozoaire</synonym>
<synonym xml:lang="es">antiprotozoario</synonym>
<synonym xml:lang="zh">抗原蟲劑</synonym>
<synonym>antiprotozoal agent</synonym>
<synonym>antiprotozoal agents</synonym>
</entry>
<entry description="drug that prevents or reduces fever by lowering the body temperature from a raised state" name="antipyretic" term="antipyretic" wikidataURL="http://www.wikidata.org/entity/Q582687" wikidataID="Q582687" wikipediaPage="https://en wikipedia.org/wiki/Antipyretic">
<description xml:lang="ta">காய்ச்சலின் போது வெப்ப நிலையினைக் குறைக்கும் மருந்து</description>
<description xml:lang="es">fármaco que hace disminuir la fiebre</description>
<description xml:lang="de">Fiebersenkender Arzneistoff</description>
<synonym xml:lang="hi">ज्वरहारी</synonym>
<synonym xml:lang="de">Antipyretikum</synonym>
<synonym xml:lang="fr">antipyrétique</synonym>
<synonym xml:lang="es">antipirético</synonym>
<synonym xml:lang="ur">ضد بخار</synonym>
<synonym xml:lang="ta">காய்ச்சலடக்கி</synonym>
<synonym xml:lang="zh">解熱劑</synonym>
<synonym>Antifebrile Agents</synonym>
<synonym>Antipyretic Agents</synonym>
<synonym>febrifuge</synonym>
</entry>
<entry description="Agents that suppress cough. They act centrally on the medullary cough center. Expectorants, also used in the treatment of cough, act locally" name="antitussive" term="antitussive" wikidataURL="http://www.wikidata.org/entity/Q584209" wikidataID="Q584209" wikipediaPage="https://en wikipedia.org/wiki/Cold_medicine">
<description xml:lang="de">Arzneimittel gegen Husten</description>
<synonym xml:lang="de">Antitussivum</synonym>
<synonym xml:lang="fr">antitussif</synonym>
<synonym xml:lang="es">antitusígeno</synonym>
<synonym xml:lang="zh">咳藥水</synonym>
<synonym>Antitussives</synonym>
<synonym>Antitussive Drug</synonym>
<synonym>Cold and cough medicine</synonym>
<synonym>Cold medicine</synonym>
<synonym>Cough medicine</synonym>
<synonym>cough suppressant</synonym>
<synonym>Cough Suppressant</synonym>
</entry>
<entry description="photosensitivity disorder in which an agent or allergen is activated by light to sensitize the allergic response" name="photodermatitis" term="photodermatitis" wikidataURL="http://www.wikidata.org/entity/Q608085" wikidataID="Q608085" wikipediaPage="https://en wikipedia.org/wiki/Photodermatitis">
<description xml:lang="de">Krankheit</description>
<description xml:lang="fr">activation d'un allergène par la lumière</description>
<synonym xml:lang="de">Lichtallergie</synonym>
<synonym xml:lang="fr">photosensibilisation</synonym>
<synonym xml:lang="es">fotoalergia</synonym>
<synonym xml:lang="zh">光照性皮炎</synonym>
<synonym>Photodermatitis</synonym>
<synonym>Photodermatitis (disorder)</synonym>
<synonym>Photoallergic contact dermatitis</synonym>
<synonym>photoallergic dermatitis</synonym>
<synonym>Photoallergic dermatitis</synonym>
<synonym>Photoallergic dermatitis (disorder)</synonym>
<synonym>Photoallergic eczema</synonym>
<synonym>Dermatitis</synonym>
<synonym>Photoallergic</synonym>
</entry>
<entry description="Photoprotection is the biochemical process that helps organisms cope with molecular damage caused by sunlight" name="Photoprotection" term="Photoprotection" wikidataURL="http://www.wikidata.org/entity/Q676558" wikidataID="Q676558" wikipediaPage="https://en wikipedia.org/wiki/Photoprotection">
<synonym xml:lang="de">Photoprotektion</synonym>
<synonym xml:lang="fr">Photoprotection</synonym>
<synonym xml:lang="zh">光保护作用</synonym>
<synonym>Photoprotective</synonym>
<synonym>Photoprotector</synonym>
</entry>
<entry description="class of pharmaceuticals that decrease platelet aggregation and inhibit thrombus formation" name="platelet aggregation inhibitors" term="platelet aggregation inhibitors" wikidataURL="http://www.wikidata.org/entity/Q721432" wikidataID="Q721432" wikipediaPage="https://en wikipedia.org/wiki/Antiplatelet_drug">
<synonym xml:lang="de">Thrombozytenaggregationshemmer</synonym>
<synonym xml:lang="fr">antiagrégant</synonym>
<synonym xml:lang="es">antiagregante plaquetario</synonym>
<synonym xml:lang="zh">抗凝血藥</synonym>
<synonym>Antiaggregants</synonym>
<synonym>Platelet</synonym>
<synonym>antiplatelet agent</synonym>
<synonym>Blood Platelet Aggregation Inhibitors</synonym>
<synonym>Blood Platelet Antiaggregants</synonym>
<synonym>platelet aggregation inhibitor</synonym>
<synonym>Platelet Antiaggregants</synonym>
</entry>
<entry description="category of pharmaceutical drugs" name="Mast cell stabilizer" term="Mast cell stabilizer" wikidataURL="http://www.wikidata.org/entity/Q745130" wikidataID="Q745130" wikipediaPage="https://en wikipedia.org/wiki/Mast_cell_stabilizer">
<description xml:lang="de">Klasse von Arzneistoffen</description>
<synonym xml:lang="de">Mastzellstabilisator</synonym>
<synonym xml:lang="zh">肥大細胞安定劑</synonym>
</entry>
<entry description="class of medications" name="antiviral drug" term="antiviral drug" wikidataURL="http://www.wikidata.org/entity/Q846227" wikidataID="Q846227" wikipediaPage="https://en wikipedia.org/wiki/Antiviral_drug">
<description xml:lang="es">tipo de medicamento usado para el tratamiento de infecciones producidas por virus</description>
<description xml:lang="de">Klasse von Arzneimitteln</description>
<description xml:lang="fr">classe de médicaments</description>
<synonym xml:lang="hi">एण्टीवायरल</synonym>
<synonym xml:lang="de">Virostatikum</synonym>
<synonym xml:lang="fr">antiviral</synonym>
<synonym xml:lang="es">antiviral</synonym>
<synonym xml:lang="zh">抗病毒药物</synonym>
<synonym>antiviral</synonym>
</entry>
<entry description="Sedative" name="sedative" term="sedative" wikidataURL="http://www.wikidata.org/entity/Q847705" wikidataID="Q847705" wikipediaPage="https://en wikipedia.org/wiki/Sedative">
<description xml:lang="fr">substance ayant une action dépressive sur le système nerveux central</description>
<synonym xml:lang="de">Tranquillanzien</synonym>
<synonym xml:lang="fr">sédatif</synonym>
<synonym xml:lang="es">sedante</synonym>
<synonym xml:lang="zh">鎮靜劑</synonym>
</entry>
<entry description="Hemotoxins, haemotoxins or hematotoxins are toxins that destroy red blood cells, disrupt blood clotting, and/or cause organ degeneration and generalized tissue damage" name="Hemotoxin" term="Hemotoxin" wikidataURL="http://www.wikidata.org/entity/Q886593" wikidataID="Q886593" wikipediaPage="https://en wikipedia.org/wiki/Hemotoxin">
<synonym xml:lang="de">Blutgift</synonym>
<synonym xml:lang="fr">Hémotoxine</synonym>
<synonym xml:lang="es">Hemotoxina</synonym>
<synonym xml:lang="ta">குருதி நச்சு</synonym>
<synonym xml:lang="zh">血毒素</synonym>
<synonym>haemotoxins</synonym>
<synonym>hematotoxins</synonym>
<synonym>Hemotoxins</synonym>
</entry>
<entry description="class of psychoactive drugs" name="Deliriant" term="Deliriant" wikidataURL="http://www.wikidata.org/entity/Q901434" wikidataID="Q901434" wikipediaPage="https://en wikipedia.org/wiki/Deliriant">
<description xml:lang="es">delirante</description>
<synonym xml:lang="de">Delirantium</synonym>
<synonym xml:lang="es">Delirante</synonym>
<synonym xml:lang="zh">致谵妄药</synonym>
</entry>
<entry description="pesticide against molluscs, which are usually used in agriculture or gardening, in order to control gastropod pests specifically slugs and snails which damage crops or other valued plants by feeding on them" name="molluscicide" term="molluscicide" wikidataURL="http://www.wikidata.org/entity/Q901537" wikidataID="Q901537" wikipediaPage="https://en wikipedia.org/wiki/Molluscicide">
<synonym xml:lang="de">Molluskizid</synonym>
<synonym xml:lang="fr">Molluscicide</synonym>
<synonym xml:lang="es">Molusquicida</synonym>
<synonym xml:lang="zh">殺螺劑</synonym>
<synonym>slug pellets</synonym>
<synonym>snail baits</synonym>
<synonym>snail pellets</synonym>
</entry>
<entry description="A substance that augments, stimulates, activates, potentiates, or modulates the immune response at either the cellular or humoral level." name="immunostimulant" term="immunostimulant" wikidataURL="http://www.wikidata.org/entity/Q901656" wikidataID="Q901656" wikipediaPage="https://en wikipedia.org/wiki/Immunostimulant">
<synonym xml:lang="de">Immunstimulans</synonym>
<synonym xml:lang="fr">immunostimulant</synonym>
<synonym xml:lang="es">Inmunoestimulador</synonym>
<synonym xml:lang="zh">免疫增強劑</synonym>
<synonym>immunostimulator</synonym>
</entry>
<entry description="substance that increase the volume of secretion of bile from the liver" name="Choleretic" term="Choleretic" wikidataURL="http://www.wikidata.org/entity/Q905101" wikidataID="Q905101" wikipediaPage="https://en wikipedia.org/wiki/Choleretic">
<description xml:lang="de">organische Verbindungen, Arzneistoffe</description>
<synonym xml:lang="de">Choleretikum</synonym>
<synonym xml:lang="fr">Cholérétique</synonym>
<synonym xml:lang="es">Colerético</synonym>
</entry>
<entry description="A food preservative that acts by chelating with metal cations (particularly those of copper, iron and nickel) that catalyse the oxidation of fats in food." name="sequestrant" term="sequestrant" wikidataURL="http://www.wikidata.org/entity/Q905648" wikidataID="Q905648" wikipediaPage="https://en wikipedia.org/wiki/Sequestrant">
<synonym xml:lang="de">Komplexbildner</synonym>
<synonym xml:lang="fr">Séquestrant</synonym>
<synonym xml:lang="es">Secuestrante</synonym>
<synonym xml:lang="zh">螯合剂</synonym>
</entry>
<entry description="pesticide used to kill plant-parasitic nematodes" name="nematicide" term="nematicide" wikidataURL="http://www.wikidata.org/entity/Q910391" wikidataID="Q910391" wikipediaPage="https://en wikipedia.org/wiki/Nematicide">
<description xml:lang="fr">produit phytosanitaire</description>
<synonym xml:lang="de">Nematizid</synonym>
<synonym xml:lang="fr">nématicide</synonym>
<synonym xml:lang="es">Nematicida</synonym>
<synonym xml:lang="zh">線蟲殺蟲劑</synonym>
</entry>
<entry description="hygroscopic substance used to keep things moist. A humectant that is used as a food additive to prevent foodstuffs from drying out." name="humectant" term="humectant" wikidataURL="http://www.wikidata.org/entity/Q911854" wikidataID="Q911854" wikipediaPage="https://en wikipedia.org/wiki/Humectant">
<description xml:lang="es">sustancia química que humedece y suaviza</description>
<synonym xml:lang="de">Feuchthaltemittel</synonym>
<synonym xml:lang="es">humectante</synonym>
<synonym xml:lang="zh">保湿剂</synonym>
</entry>
<entry description="substance used to impart colour to another substance or object" name="colourant" term="colourant" wikidataURL="http://www.wikidata.org/entity/Q911922" wikidataID="Q911922" wikipediaPage="https://en wikipedia.org/wiki/Colourant">
<description xml:lang="es">sustancia química capaz de teñir fibras vegetales y animales</description>
<description xml:lang="de">Sammelbezeichnung für alle farbgebenden Stoffe</description>
<description xml:lang="fr">terme générique pour toutes les matières décolorer les autres matières</description>
<synonym xml:lang="de">Farbmittel</synonym>
<synonym xml:lang="fr">colorant</synonym>
<synonym xml:lang="es">colorante</synonym>
<synonym xml:lang="zh">着色剂</synonym>
<synonym>coloring agent</synonym>
<synonym>coloring agents</synonym>
<synonym>colouring agent</synonym>
<synonym>colouring agents</synonym>
<synonym>ouring matter</synonym>
</entry>
<entry description="substance that dilates the bronchi and bronchioles, decreasing resistance in the respiratory airway and increasing airflow to the lungs" name="bronchodilator" term="bronchodilator" wikidataURL="http://www.wikidata.org/entity/Q927234" wikidataID="Q927234" wikipediaPage="https://en wikipedia.org/wiki/Bronchodilator">
<description xml:lang="es">sustancia que causa que los bronquios y bronquiolos se dilaten, provocando una disminución en la resistencia aérea y permitiendo así el flujo de aire</description>
<synonym xml:lang="de">Bronchospasmolytikum</synonym>
<synonym xml:lang="fr">bronchodilatateur</synonym>
<synonym xml:lang="es">broncodilatador</synonym>
<synonym xml:lang="zh">支气管扩张药</synonym>
<synonym>Bronchial-Dilating Agent</synonym>
<synonym>Bronchodilator Agent</synonym>
<synonym>Bronchodilator Agents</synonym>
</entry>
<entry description="pharmaceuticals used in the treatment of high levels of fats in the blood" name="hypolipidemic" term="hypolipidemic" wikidataURL="http://www.wikidata.org/entity/Q955332" wikidataID="Q955332" wikipediaPage="https://en wikipedia.org/wiki/Lipid-lowering_agent">
<description xml:lang="es">sustancia farmacológicamente activa que tenga la propiedad de disminuir los niveles de lípidos en sangre</description>
<description xml:lang="fr">médicament dont l'action thérapeutique vise à diminuer les lipides circulant dans le sang</description>
<synonym xml:lang="de">hypolipidämische Medikamente</synonym>
<synonym xml:lang="fr">hypolipémiant</synonym>
<synonym xml:lang="es">hipolipemiante</synonym>
<synonym xml:lang="zh">降血脂药</synonym>
<synonym>LLD</synonym>
<synonym>antihyperlipemic</synonym>
<synonym>Antihyperlipemics</synonym>
<synonym>antihyperlipidemic</synonym>
<synonym>antihyperlipidemic agent</synonym>
<synonym>Antihyperlipidemics</synonym>
<synonym>antilipemic</synonym>
<synonym>Antilipemic Agents</synonym>
<synonym>antilipemic drug</synonym>
<synonym>Antilipemic Drugs</synonym>
<synonym>Antilipemics</synonym>
<synonym>hypocholesterolemic</synonym>
<synonym>hypolipidemic agent</synonym>
<synonym>Hypolipidemic Drugs</synonym>
<synonym>lipid-lowering agent</synonym>
<synonym>lipid-lowering drug</synonym>
<synonym>hypolipidemic agents</synonym>
</entry>
<entry description="use of chemical compounds to prevent the development of a specific disease" name="chemoprophylaxis" term="chemoprophylaxis" wikidataURL="http://www.wikidata.org/entity/Q1069606" wikidataID="Q1069606" wikipediaPage="https://en wikipedia.org/wiki/Chemoprophylaxis">
<synonym xml:lang="de">Chemoprophylaxe</synonym>
<synonym xml:lang="fr">Chimioprévention</synonym>
<synonym xml:lang="es">Quimioprevención</synonym>
<synonym>Chemoprevention</synonym>
</entry>
<entry description="substance which repels insects" name="insect repellent" term="insect repellent" wikidataURL="http://www.wikidata.org/entity/Q1340459" wikidataID="Q1340459" wikipediaPage="https://en wikipedia.org/wiki/Insect_repellent">
<synonym xml:lang="de">Repellent</synonym>
<synonym xml:lang="fr">Répulsif</synonym>
<synonym xml:lang="es">Repelente de insectos</synonym>
<synonym xml:lang="zh">防蚊液</synonym>
<synonym>bug spray</synonym>
<synonym>insectifuge</synonym>
<synonym>repellent</synonym>
<synonym>Insect Repellents</synonym>
</entry>
<entry description="A compound or agent that combines with the Hyaluronidase enzyme in such a manner as to prevent the normal substrate-enzyme combination and the catalytic reaction. Hyaluronidases are a family of enzymes that catalyse the degradation of hyaluronic acid" name="hyaluronidase inhibitor" term="hyaluronidase inhibitor" wikidataURL="http://www.wikidata.org/entity/Q85002068" wikidataID="Q85002068">
<synonym>antihyaluronidase</synonym>
</entry>
<entry description="medication or other intervention that inhibits anxiety" name="anxiolytic" term="anxiolytic" wikidataURL="http://www.wikidata.org/entity/Q62903" wikidataID="Q62903" wikipediaPage="https://en wikipedia.org/wiki/Anxiolytic">
<description xml:lang="zh">药物或其他干扰用于抑制焦虑症状</description>
<description xml:lang="es">fármaco psicotrópico, destinado a disminuir o eliminar los síntomas de la ansiedad</description>
<description xml:lang="de">Angstlöser, heterogene Gruppe von Arzneistoffen</description>
<description xml:lang="fr">Famille de médicaments, luttant contre l'anxiété</description>
<synonym xml:lang="de">Anxiolytikum</synonym>
<synonym xml:lang="fr">anxiolytique</synonym>
<synonym xml:lang="es">ansiolítico</synonym>
<synonym xml:lang="zh">抗焦虑药</synonym>
<synonym>Anti-Anxiety Drugs</synonym>
<synonym>antianxiety agent</synonym>
<synonym>antipanic</synonym>
<synonym>minor tranquilizer</synonym>
<synonym>Tranquilizing Agents</synonym>
<synonym>Minor</synonym>
<synonym>Tranquillizing Agents</synonym>
<synonym>Minor</synonym>
<synonym>Anti-Anxiety Agent</synonym>
<synonym>Anti-Anxiety Agents</synonym>
</entry>
<entry description="class of psychoactive drugs whose primary function is to induce sleep and to be used in the treatment of insomnia (sleeplessness), or for surgical anesthesia." name="hypnotic" term="hypnotic" wikidataURL="http://www.wikidata.org/entity/Q62962" wikidataID="Q62962" wikipediaPage="https://en wikipedia.org/wiki/Hypnotic">
<description xml:lang="de">Arzneimittel, das den Schlafvorgang fördert</description>
<synonym xml:lang="hi">स्वापक</synonym>
<synonym xml:lang="de">Schlafmittel</synonym>
<synonym xml:lang="fr">hypnotique</synonym>
<synonym xml:lang="es">Hipnótico</synonym>
<synonym xml:lang="ta">தூக்கமருந்து</synonym>
<synonym xml:lang="zh">安眠药</synonym>
<synonym>hypnotics</synonym>
<synonym>sleeping pill</synonym>
<synonym>soporific drug</synonym>
</entry>
<entry description="substance used to destroy pests" name="pesticide" term="pesticide" wikidataURL="http://www.wikidata.org/entity/Q131656" wikidataID="Q131656" wikipediaPage="https://en wikipedia.org/wiki/Pesticide">
<description xml:lang="es">sustancia diseñada para eliminar una peste</description>
<description xml:lang="de">Substanz, die zur Vernichtung von Schädlingen eingesetzt wird</description>
<description xml:lang="fr">substance chimique utilisée pour tuer les organismes "nuisibles"</description>
<synonym xml:lang="hi">कीटनाशक</synonym>
<synonym xml:lang="de">Pestizid</synonym>
<synonym xml:lang="fr">pesticide</synonym>
<synonym xml:lang="es">pesticida</synonym>
<synonym xml:lang="ur">کیڑے مار دوائیاں</synonym>
<synonym xml:lang="ta">உயிர்கொல்லி மருந்து</synonym>
<synonym xml:lang="zh">农药</synonym>
<synonym>pesticides</synonym>
</entry>
<entry description="class of medications" name="antispasmodic" term="antispasmodic" wikidataURL="http://www.wikidata.org/entity/Q93978" wikidataID="Q93978" wikipediaPage="https://en wikipedia.org/wiki/Antispasmodic">
<description xml:lang="de">Klasse von Arzneimitteln</description>
<synonym xml:lang="de">Spasmolytikum</synonym>
<synonym xml:lang="fr">antispasmodique</synonym>
<synonym xml:lang="es">antiespasmódico</synonym>
<synonym xml:lang="zh">解痙藥</synonym>
<synonym>antispasmodic agent</synonym>
<synonym>antispasmodic drug</synonym>
<synonym>antispasmotic agent</synonym>
<synonym>spasmolytics</synonym>
</entry>
<entry description="biological or chemical agent that stops bacteria from reproducing, while not necessarily killing them otherwise" name="bacteriostatic agent" term="bacteriostatic agent" wikidataURL="http://www.wikidata.org/entity/Q223417" wikidataID="Q223417" wikipediaPage="https://en wikipedia.org/wiki/Bacteriostatic_agent">
<description xml:lang="zh">抑制细菌繁殖药效的抗菌药物</description>
<description xml:lang="es">agente biológico o químico que detiene la reproducción de bacterias</description>
<description xml:lang="de">Substanz, die das Wachstum von Bakterien hemmt</description>
<description xml:lang="fr">propriété d'un antibiotique</description>
<synonym xml:lang="de">Bakteriostatikum</synonym>
<synonym xml:lang="fr">bactériostatique</synonym>
<synonym xml:lang="es">bacteriostático</synonym>
<synonym xml:lang="zh">抑菌劑</synonym>
<synonym>Bacteriostacitc agent</synonym>
<synonym>bacteriostat</synonym>
<synonym>Bacteriostatic</synonym>
<synonym>bacteriostatic antibiotics</synonym>
<synonym>Bstatic</synonym>
</entry>
<entry description="The quality of being toxic to cells" name="cytotoxicity" term="cytotoxicity" wikidataURL="http://www.wikidata.org/entity/Q246181" wikidataID="Q246181" wikipediaPage="https://en wikipedia.org/wiki/Cytotoxicity">
<synonym xml:lang="de">Zytotoxizität</synonym>
<synonym xml:lang="fr">cytotoxicité</synonym>
<synonym xml:lang="es">citotoxicidad</synonym>
<synonym xml:lang="ur">سمیت خلیہ</synonym>
<synonym xml:lang="zh">細胞毒性</synonym>
</entry>
<entry description="agent that suppresses immune function by one of several mechanisms of action (e.g. inhibiting DNA synthesis, inhibiting activation of T-cells, or inhibiting the activation of helper cells)" name="immunosuppressive drug" term="immunosuppressive drug" wikidataURL="http://www.wikidata.org/entity/Q249619" wikidataID="Q249619" wikipediaPage="https://en wikipedia.org/wiki/Immunosuppressive_drug">
<description xml:lang="zh">药物</description>
<description xml:lang="de">Substanzen, welche die Funktionen des Immunsystems vermindern</description>
<synonym xml:lang="de">Immunsuppressivum</synonym>
<synonym xml:lang="fr">immunosuppresseur</synonym>
<synonym xml:lang="es">inmunosupresor</synonym>
<synonym xml:lang="zh">免疫抑制药</synonym>
<synonym>Immunosuppressants</synonym>
<synonym>Immunosuppressant drugs</synonym>
<synonym>Immunosuppressive Agent</synonym>
<synonym>Immunosuppressive Agents</synonym>
</entry>
<entry description="substance used in herbal medicine to promote homeostasis" name="adaptogen" term="adaptogen" wikidataURL="http://www.wikidata.org/entity/Q352551" wikidataID="Q352551" wikipediaPage="https://en wikipedia.org/wiki/Adaptogen">
<description xml:lang="de">Sammelbegriff für biologisch aktive Pflanzenstoffe</description>
<synonym xml:lang="de">Adaptogen</synonym>
<synonym xml:lang="fr">Adaptogène</synonym>
<synonym xml:lang="es">Adaptógeno</synonym>
<synonym xml:lang="zh">補品</synonym>
<synonym>adaptogenic substance</synonym>
</entry>
<entry description="Any pharmacological or immunological agent that modifies or enhances the effect of other agents such as drugs or vaccines while having few if any direct effects when given by itself." name="adjuvant" term="adjuvant" wikidataURL="http://www.wikidata.org/entity/Q357896" wikidataID="Q357896" wikipediaPage="https://en wikipedia.org/wiki/Adjuvant">
<description xml:lang="es">sustancia que se añade a una vacuna para potenciar o dirigir la respuesta inmunológica frente a un antígeno</description>
<description xml:lang="de">Hilfsstoff, der die Wirkung eines Reagenz oder eines Arzneistoffes verstärkt</description>
<synonym xml:lang="de">Adjuvans</synonym>
<synonym xml:lang="es">adyuvante</synonym>
<synonym xml:lang="ta">துணையூக்கி</synonym>
<synonym xml:lang="zh">佐劑</synonym>
</entry>
<entry description="Nonsteroidal anti-inflammatory drugs (NSAID)" name="COX-2 inhibitor" term="COX-2 inhibitor" wikidataURL="http://www.wikidata.org/entity/Q377458" wikidataID="Q377458" wikipediaPage="https://en wikipedia.org/wiki/COX-2_inhibitor">
<synonym xml:lang="de">COX-2-Hemmer</synonym>
<synonym xml:lang="fr">Coxib</synonym>
<synonym xml:lang="es">Inhibidores selectivos de la COX-2</synonym>
<synonym xml:lang="zh">COX-2抑制劑</synonym>
<synonym>COX-2 Inhibitors</synonym>
<synonym>COX2 inhibitor</synonym>
<synonym>COX2 Inhibitors</synonym>
<synonym>Coxibs</synonym>
<synonym>cyclooxygenase 2 inhibitors</synonym>
<synonym>Cyclooxygenase-2 Inhibitors</synonym>
</entry>
<entry description="chemical compound that tends to shrink or constrict body tissues" name="astringent" term="astringent" wikidataURL="http://www.wikidata.org/entity/Q378705" wikidataID="Q378705" wikipediaPage="https://en wikipedia.org/wiki/Astringent">
<description xml:lang="fr">Substance provoquant la crispation des muqueuses</description>
<synonym xml:lang="de">Adstringens</synonym>
<synonym xml:lang="fr">Astringence</synonym>
<synonym xml:lang="es">Astringente</synonym>
<synonym xml:lang="ta">துவர்ப்பு</synonym>
<synonym xml:lang="zh">收斂劑</synonym>
<synonym>Astringent</synonym>
</entry>
<entry description="substance poisonous or destructive to nerve tissue" name="neurotoxin" term="neurotoxin" wikidataURL="http://www.wikidata.org/entity/Q407752" wikidataID="Q407752" wikipediaPage="https://en wikipedia.org/wiki/Neurotoxin">
<description xml:lang="es">clase extensa de sustancias químicas exógenas</description>
<description xml:lang="de">Naturstoffe oder organische Phosphor-Verbindungen, chemische Kampfstoffe</description>
<synonym xml:lang="hi">तंत्रिका परिधीय जहर</synonym>
<synonym xml:lang="de">Nervengift</synonym>
<synonym xml:lang="fr">neurotoxine</synonym>
<synonym xml:lang="es">neurotoxina</synonym>
<synonym xml:lang="zh">神經毒素</synonym>
<synonym>neurotoxicity</synonym>
<synonym>neurotoxins</synonym>
</entry>
<entry description="group of physiologically active lipid compounds" name="prostaglandins" term="prostaglandins" wikidataURL="http://www.wikidata.org/entity/Q209717" wikidataID="Q209717" wikipediaPage="https://en wikipedia.org/wiki/Prostaglandin">
<description xml:lang="de">Arzneistoffe, körpereigene Vasodilatatoren</description>
<synonym xml:lang="de">Prostaglandine</synonym>
<synonym xml:lang="fr">prostaglandine</synonym>
<synonym xml:lang="es">prostaglandina</synonym>
<synonym xml:lang="zh">前列腺素</synonym>
<synonym>prostaglandin</synonym>
</entry>
<entry description="overarching term covers many drugs that increase activity of the central nervous system" name="stimulant" term="stimulant" wikidataURL="http://www.wikidata.org/entity/Q211036" wikidataID="Q211036" wikipediaPage="https://en wikipedia.org/wiki/Stimulant">
<description xml:lang="zh">精神药物</description>
<description xml:lang="es">droga que acelera y altera los procesos de actividad motriz y cognitiva, refuerza la vigilia, el estado de alerta y la atención perjudicando a los sentidos y los órganos vitales del cuerpo humano.</description>
<description xml:lang="de">Psychoaktive Substanz, die die Aktivität der Nerven erhöht, beschleunigt oder verbessert</description>
<synonym xml:lang="hi">उद्दीपक</synonym>
<synonym xml:lang="de">Stimulans</synonym>
<synonym xml:lang="fr">stimulant</synonym>
<synonym xml:lang="es">estimulante</synonym>
<synonym xml:lang="zh">兴奋剂</synonym>
<synonym>Central Nervous System Stimulants</synonym>
<synonym>Central Stimulants</synonym>
<synonym>psychostimulants</synonym>
</entry>
<entry description="chemical substances that prevent or reduce coagulation of blood, prolonging the clotting time." name="anticoagulant" term="anticoagulant" wikidataURL="http://www.wikidata.org/entity/Q215118" wikidataID="Q215118" wikipediaPage="https://en wikipedia.org/wiki/Anticoagulant">
<description xml:lang="de">Medikamentöse Hemmung der Blutgerinnung</description>
<description xml:lang="fr">substance chimique inhibant la coagulation du sang</description>
<synonym xml:lang="de">Antikoagulans</synonym>
<synonym xml:lang="fr">anticoagulant</synonym>
<synonym xml:lang="es">anticoagulante</synonym>
<synonym xml:lang="zh">抗凝剂</synonym>
<synonym>anticoagulant drug</synonym>
<synonym>anticoagulant agent</synonym>
<synonym>anticoagulants</synonym>
</entry>
<entry description="Agents that produce a soft formed stool, and relax and loosen the bowels, typically used over a protracted period, to relieve constipation" name="laxative" term="laxative" wikidataURL="http://www.wikidata.org/entity/Q217972" wikidataID="Q217972" wikipediaPage="https://en wikipedia.org/wiki/Laxative">
<description xml:lang="es">preparación usada para provocar la defecación o la eliminación de heces</description>
<description xml:lang="de">Arzneistoffe, verschiedene Wirkmechanismen</description>
<synonym xml:lang="hi">विरेचक</synonym>
<synonym xml:lang="de">Abführmittel</synonym>
<synonym xml:lang="fr">laxatif</synonym>
<synonym xml:lang="es">laxante</synonym>
<synonym xml:lang="ta">மலமிளக்கி</synonym>
<synonym xml:lang="zh">泻药</synonym>
</entry>
<entry description="A photocarcinogen is a substance which causes cancer when an organism is exposed to it, then illuminated" name="Photocarcinogen" term="Photocarcinogen" wikidataURL="http://www.wikidata.org/entity/Q7187720" wikidataID="Q7187720" wikipediaPage="https://en wikipedia.org/wiki/Photocarcinogen">
</entry>
<entry description="compound that inhibits the action of prostaglandins" name="prostaglandin antagonist" term="prostaglandin antagonist" wikidataURL="http://www.wikidata.org/entity/Q7250944" wikidataID="Q7250944" wikipediaPage="https://en wikipedia.org/wiki/Prostaglandin_antagonist">
<synonym xml:lang="es">antagonista prostaglandino</synonym>
<synonym>Antagonists</synonym>
<synonym>Prostaglandin</synonym>
<synonym>Inhibitors</synonym>
<synonym>Prostaglandin</synonym>
<synonym>Prostaglandin Antagonist</synonym>
<synonym>prostaglandin inhibitor</synonym>
<synonym>Prostaglandin Inhibitors</synonym>
</entry>
<entry description="EC 2.7.* (P-containing group transferase) inhibitor that interferes with the action of protein kinases" name="protein kinase inhibitors" term="protein kinase inhibitors" wikidataURL="http://www.wikidata.org/entity/Q7251487" wikidataID="Q7251487" wikipediaPage="https://en wikipedia.org/wiki/Protein_kinase_inhibitor">
<synonym xml:lang="de">Proteinkinaseinhibitor</synonym>
<synonym xml:lang="fr">inhibiteur de kinase</synonym>
<synonym xml:lang="zh">蛋白激酶特異性抑製劑</synonym>
<synonym>protein kinase inhibitor</synonym>
</entry>
<entry description="Schistosomiasis, also known as snail fever and bilharzia,[9] is a disease caused by parasitic flatworms called schistosomes." name="Schistosomicide" term="Schistosomicide" wikidataURL="http://www.wikidata.org/entity/Q7431537" wikidataID="Q7431537" wikipediaPage="https://en wikipedia.org/wiki/List_of_drugs_used_to_treat_schistosomiasis">
<description xml:lang="ta">விக்கிப்பீடியா:பட்டியலிடல்</description>
<description xml:lang="zh">维基媒体列表条目</description>
<description xml:lang="es">artículo de lista de Wikimedia</description>
<description xml:lang="de">Wikimedia-Liste</description>
<description xml:lang="fr">liste d'un projet Wikimedia</description>
</entry>
<entry description="substance that induces labor and stimulates childbirth and delivery" name="Uterotonic" term="Uterotonic" wikidataURL="http://www.wikidata.org/entity/Q7902662" wikidataID="Q7902662" wikipediaPage="https://en wikipedia.org/wiki/Uterotonic">
<synonym xml:lang="fr">utérotonique</synonym>
<synonym>ecbolic</synonym>
</entry>
<entry description="agent that reduce the frequency or rate of spontaneous or induced mutations independently of the mechanism involved" name="Antimutagen" term="Antimutagen" wikidataURL="http://www.wikidata.org/entity/Q12529398" wikidataID="Q12529398" wikipediaPage="https://en wikipedia.org/wiki/Antimutagen">
<synonym xml:lang="fr">Antimutagène</synonym>
<synonym xml:lang="zh">抑制基因突變</synonym>
<synonym>anti-mutagenic agents</synonym>
<synonym>antimutagen</synonym>
<synonym>antimutagenic agent</synonym>
<synonym>antimutagenic agents</synonym>
<synonym>antimutagens</synonym>
</entry>
<entry description="Histaminergic means "working on the histamine system", and histaminic means "related to histamine". A histaminergic agent (or drug) is a chemical which functions to directly modulate the histamine system in the body or brain." name="histaminergic" term="histaminergic" wikidataURL="http://www.wikidata.org/entity/Q18349602" wikidataID="Q18349602" wikipediaPage="https://en wikipedia.org/wiki/Histaminergic">
<description xml:lang="de">Arzneimittelklasse</description>
<synonym xml:lang="de">Histaminerg</synonym>
<synonym xml:lang="fr">histaminergique</synonym>
<synonym xml:lang="es">histaminérgico</synonym>
<synonym>H1 receptor antagonists</synonym>
<synonym>H2 receptor antagonists</synonym>
<synonym>H3 receptor antagonists</synonym>
<synonym>Histamine Drugs</synonym>
<synonym>Histaminergic Agents</synonym>
<synonym>histaminergic drug</synonym>
<synonym>Histaminergic Drugs</synonym>
</entry>
<entry description="Affecting GABA systems" name="GABAergic" term="GABAergic" wikidataURL="http://www.wikidata.org/entity/Q18356742" wikidataID="Q18356742" wikipediaPage="https://en wikipedia.org/wiki/GABAergic">
<synonym xml:lang="es">GABAérgico</synonym>
<synonym xml:lang="zh">丙胺基丁酸神經元</synonym>
</entry>
<entry description="molecule that produces a chemical change in another molecule in a photochemical process" name="photosensitizer" term="photosensitizer" wikidataURL="http://www.wikidata.org/entity/Q18388377" wikidataID="Q18388377" wikipediaPage="https://en wikipedia.org/wiki/Photosensitizer">
<description xml:lang="es">molécula que produce un cambio químico en otra molécula en un proceso fotoquímico.</description>
<synonym xml:lang="de">Photosensibilisator</synonym>
<synonym xml:lang="fr">photosensibilisant</synonym>
<synonym xml:lang="es">Fotosensibilizador</synonym>
<synonym xml:lang="zh">光敏試劑</synonym>
<synonym>Photosensitizing Agents</synonym>
<synonym>Photosensitizers</synonym>
<synonym>Photosensitizing Agent</synonym>
</entry>
<entry description="organic compound" name="Antifeedant" term="Antifeedant" wikidataURL="http://www.wikidata.org/entity/Q56062995" wikidataID="Q56062995" wikipediaPage="https://en wikipedia.org/wiki/Antifeedant">
</entry>
<entry description="substance that kills or slows the growth of microorganisms, including bacteria, viruses, fungi and protozoans" name="antimicrobial agent" term="antimicrobial agent" wikidataURL="http://www.wikidata.org/entity/Q68541106" wikidataID="Q68541106" wikipediaPage="https://en wikipedia.org/wiki/Antimicrobial">
<description xml:lang="es">Sustancia que mata o ralentiza el crecimiento de microorganismos, incluidas bacterias, virus, hongos y protozoos.</description>
<synonym xml:lang="hi">सूक्ष्मजीवरोधी</synonym>
<synonym xml:lang="de">Antimikrobielle Substanzen</synonym>
<synonym xml:lang="fr">Antimicrobien</synonym>
<synonym xml:lang="es">antimicrobiano</synonym>
<synonym xml:lang="zh">抗微生物</synonym>
<synonym>antimicrobial</synonym>
</entry>
<entry description="substance which neutralizes stomach acidity, used to relieve heartburn, indigestion or an upset stomach" name="antacid" term="antacid" wikidataURL="http://www.wikidata.org/entity/Q274083" wikidataID="Q274083" wikipediaPage="https://en wikipedia.org/wiki/Antacid">
<description xml:lang="ta">காடியை நடுநிலையாக்கும் பொருள்</description>
<description xml:lang="de">Arzneimittel</description>
<synonym xml:lang="hi">एंटासिड</synonym>
<synonym xml:lang="de">Antazidum</synonym>
<synonym xml:lang="fr">antiacide</synonym>
<synonym xml:lang="es">antiácido</synonym>
<synonym xml:lang="ta">அமிலநீக்கி</synonym>
<synonym xml:lang="zh">抗酸药</synonym>
<synonym>Antacids</synonym>
<synonym>Alkalinizing Agents</synonym>
</entry>
<entry description="antimicrobial substance" name="antiseptic" term="antiseptic" wikidataURL="http://www.wikidata.org/entity/Q274493" wikidataID="Q274493" wikipediaPage="https://en wikipedia.org/wiki/Antiseptic">
<description xml:lang="ta">உயிர்த்திசுக்களில் நுண்ணுயிர்கள் வளர்வதைத் தடுக்கும் பொருள்கள்</description>
<description xml:lang="zh">抗菌物质</description>
<description xml:lang="es">sustancia antimicrobiana</description>
<description xml:lang="de">chemischer Stoff zur Verhinderung einer Wundinfektion</description>
<description xml:lang="fr">désinfectant à usage corporel</description>
<synonym xml:lang="hi">पूतिरोधी</synonym>
<synonym xml:lang="de">Antiseptikum</synonym>
<synonym xml:lang="fr">antiseptique</synonym>
<synonym xml:lang="es">antiséptico</synonym>
<synonym xml:lang="ta">புரைய எதிர்ப்பிகள்</synonym>
<synonym xml:lang="zh">消毒藥水</synonym>
<synonym>Antibacterials</synonym>
<synonym>Antiseptics</synonym>
</entry>
<entry description="pharmaceutical drug used primarily for the treatment of hypertension (elevated blood pressure) and congestive heart failure" name="ACE inhibitor" term="ACE inhibitor" wikidataURL="http://www.wikidata.org/entity/Q288280" wikidataID="Q288280" wikipediaPage="https://en wikipedia.org/wiki/ACE_inhibitor">
<description xml:lang="es">medicamento utilizado principalmente para el tratamiento de la hipertensión (presión arterial elevada) y la insuficiencia cardíaca congestiva</description>
<description xml:lang="de">kardiologische Arzneistoffe</description>
<synonym xml:lang="de">ACE-Hemmer</synonym>
<synonym xml:lang="fr">Inhibiteur de l'enzyme de conversion</synonym>
<synonym xml:lang="es">Inhibidor de la enzima convertidora de angiotensina</synonym>
<synonym xml:lang="zh">血管紧张肽I转化酶抑制剂</synonym>
<synonym>Angiotensin converting enzyme inhibitors</synonym>
<synonym>Angiotensin-converting enzyme inhibitors</synonym>
<synonym>ACE inhibitors</synonym>
<synonym>Ace inhibitor</synonym>
<synonym>ACE Inhibitor</synonym>
<synonym>ACE-I</synonym>
<synonym>ACE-inhibitor</synonym>
<synonym>Acei</synonym>
<synonym>ACEI</synonym>
<synonym>Angiotensin converting enzyme inhibitor</synonym>
<synonym>Angiotensin I-Converting Enzyme Inhibitors</synonym>
<synonym>Angiotensin-converting enzyme (ACE) inhibitors</synonym>
<synonym>Angiotensin-Converting Enzyme Antagonists</synonym>
<synonym>Angiotensin-converting enzyme inhibitor</synonym>
<synonym>Antagonists</synonym>
<synonym>Angiotensin-Converting Enzyme</synonym>
<synonym>Antagonists</synonym>
<synonym>Kininase II</synonym>
<synonym>Inhibitors</synonym>
<synonym>ACE</synonym>
<synonym>Inhibitors</synonym>
<synonym>Angiotensin-Converting Enzyme</synonym>
<synonym>Inhibitors</synonym>
<synonym>Kininase II</synonym>
<synonym>Kininase II Antagonists</synonym>
<synonym>Kininase II Inhibitors</synonym>
<synonym>Angiotensin-Converting Enzyme Inhibitors</synonym>
<synonym>ACEi</synonym>
</entry>
<entry description="substance exerted in the groin or armpits to lessen the smell of body odour" name="deodorant" term="deodorant" wikidataURL="http://www.wikidata.org/entity/Q309035" wikidataID="Q309035" wikipediaPage="https://en wikipedia.org/wiki/Deodorant">
<description xml:lang="de">Körperpflegemittel</description>
<synonym xml:lang="de">Deodorant</synonym>
<synonym xml:lang="fr">déodorant</synonym>
<synonym xml:lang="es">desodorante</synonym>
<synonym xml:lang="zh">體香劑</synonym>
<synonym>Deodorants</synonym>
</entry>
<entry description="drug that binds to but does not activate histamine receptors, thereby blocking the actions of histamine or histamine agonists" name="histamine antagonist" term="histamine antagonist" wikidataURL="http://www.wikidata.org/entity/Q324089" wikidataID="Q324089" wikipediaPage="https://en wikipedia.org/wiki/Antihistamine">
<description xml:lang="de">Gruppe von Arzneiwirkstoffen</description>
<description xml:lang="fr">Medicament</description>
<synonym xml:lang="de">Antihistaminikum</synonym>
<synonym xml:lang="fr">antihistaminique</synonym>
<synonym xml:lang="es">antihistamínico</synonym>
<synonym xml:lang="ur">اینٹی ہسٹامائین</synonym>
<synonym xml:lang="zh">抗組織胺藥</synonym>
<synonym>antihistamine</synonym>
<synonym>histamine inhibitor</synonym>
</entry>
<entry description="medical condition" name="hepatotoxicity" term="hepatotoxicity" wikidataURL="http://www.wikidata.org/entity/Q1349821" wikidataID="Q1349821" wikipediaPage="https://en wikipedia.org/wiki/Hepatotoxicity">
<description xml:lang="es">condición médica</description>
<description xml:lang="de">Giftigkeit fuer Leberzellen</description>
<synonym xml:lang="de">Hepatotoxizität</synonym>
<synonym xml:lang="fr">hépatotoxicité</synonym>
<synonym xml:lang="es">hepatotoxicidad</synonym>
<synonym xml:lang="zh">肝臟毒性</synonym>
<synonym>chemical or drug-induced liver injury</synonym>
<synonym>liver damage</synonym>
<synonym>toxic hepatitis</synonym>
<synonym>Chemical and Drug Induced Liver Injury</synonym>
</entry>
<entry description="An agent that aids in the clearance of mucus from the airways, lungs, bronchi, and trachea." name="Mucokinetic" term="Mucokinetic" wikidataURL="http://www.wikidata.org/entity/Q1384342" wikidataID="Q1384342" wikipediaPage="https://en wikipedia.org/wiki/Mucoactive_agent">
<description xml:lang="de">Klasse von Arzneimitteln</description>
<synonym xml:lang="de">Expektorans</synonym>
<synonym xml:lang="fr">Expectorant</synonym>
<synonym xml:lang="es">Expectorante</synonym>
<synonym xml:lang="zh">化痰藥</synonym>
<synonym>Expectorants</synonym>
</entry>
<entry description="toxic effect on the kidneys" name="nephrotoxicity" term="nephrotoxicity" wikidataURL="http://www.wikidata.org/entity/Q1468324" wikidataID="Q1468324" wikipediaPage="https://en wikipedia.org/wiki/Nephrotoxicity">
<description xml:lang="de">Giftige Substanzen, die die Niere schädigen</description>
<synonym xml:lang="de">Nephrotoxizität</synonym>
<synonym xml:lang="fr">nephrotoxicité</synonym>
<synonym xml:lang="es">nefrotoxicidad</synonym>
<synonym xml:lang="zh">中毒性腎損害</synonym>
<synonym>drug-induced kidney injury</synonym>
</entry>
<entry description="Pungency is the condition of having a strong, sharp smell or flavor that is often so strong that it is unpleasant" name="pungency" term="pungency" wikidataURL="http://www.wikidata.org/entity/Q1517948" wikidataID="Q1517948" wikipediaPage="https://en wikipedia.org/wiki/Pungency">
<description xml:lang="es">sensación de ardor agudo producido por productos hortícolas</description>
<description xml:lang="de">gustatorische Wahrnehmung</description>
<description xml:lang="fr">goût</description>
<synonym xml:lang="de">geschmackliche Schärfe</synonym>
<synonym xml:lang="fr">pseudo-chaleur</synonym>
<synonym xml:lang="es">pungencia</synonym>
<synonym xml:lang="ta">கார்ப்பு</synonym>
<synonym xml:lang="zh">辣</synonym>
<synonym>hotness</synonym>
<synonym>spiciness</synonym>
</entry>
<entry description="a pharmaceutical drug that suppresses the physiologic response to tumor necrosis factor (TNF)" name="TNF inhibitor" term="TNF inhibitor" wikidataURL="http://www.wikidata.org/entity/Q1536078" wikidataID="Q1536078" wikipediaPage="https://en wikipedia.org/wiki/TNF_inhibitor">
<synonym xml:lang="de">TNF-Blocker</synonym>
<synonym xml:lang="fr">Inhibiteur du TNF</synonym>
<synonym xml:lang="es">Anti-TNF</synonym>
<synonym xml:lang="zh">TNF抑制劑</synonym>
<synonym>anti-TNF</synonym>
</entry>
<entry description="substance that promotes hemostasis" name="antihemorrhagic" term="antihemorrhagic" wikidataURL="http://www.wikidata.org/entity/Q1642182" wikidataID="Q1642182" wikipediaPage="https://en wikipedia.org/wiki/Antihemorrhagic">
<description xml:lang="es">medicamento para detener las hemorragias</description>
<description xml:lang="de">Substanz, die zur Blutstillung angewendet wird</description>
<description xml:lang="fr">médicament pour arrêter les hémorragies</description>
<synonym xml:lang="de">Hämostatikum</synonym>
<synonym xml:lang="fr">hémostatique</synonym>
<synonym xml:lang="es">antihemorrágico</synonym>
<synonym xml:lang="zh">抗出血药</synonym>
<synonym>antihæmorrhagic</synonym>
<synonym>hæmostatic</synonym>
<synonym>hemostatic</synonym>
</entry>
<entry description="Immunomodulators are the active agents of immunotherapy. They are a diverse array of recombinant, synthetic, and natural preparations." name="immunomodulator" term="immunomodulator" wikidataURL="http://www.wikidata.org/entity/Q1660194" wikidataID="Q1660194" wikipediaPage="https://en wikipedia.org/wiki/Immunomodulator">
<synonym xml:lang="de">Immunmodulation</synonym>
<synonym xml:lang="zh">免疫調節製劑</synonym>
</entry>
<entry description="herb or preparation intended to either prevent formation of gas in the gastrointestinal tract or facilitate the expulsion of said gas, thereby combatting flatulence" name="carminative" term="carminative" wikidataURL="http://www.wikidata.org/entity/Q1734091" wikidataID="Q1734091" wikipediaPage="https://en wikipedia.org/wiki/Carminative">
<description xml:lang="es">sustancia, medicamento</description>
<description xml:lang="de">Arznei gegen Flatulenz</description>
<synonym xml:lang="de">Karminativum</synonym>
<synonym xml:lang="fr">Carminatif</synonym>
<synonym xml:lang="es">carminativo</synonym>
<synonym>carminativum</synonym>
</entry>
<entry description="A chemical substance that encourages a cell to commence cell division, triggering mitosis." name="mitogen" term="mitogen" wikidataURL="http://www.wikidata.org/entity/Q1926141" wikidataID="Q1926141" wikipediaPage="https://en wikipedia.org/wiki/Mitogen">
<synonym xml:lang="de">Mitogen</synonym>
<synonym xml:lang="fr">Mitogène</synonym>
<synonym xml:lang="es">mitógeno</synonym>
<synonym xml:lang="ur">انقسامیہ</synonym>
<synonym xml:lang="zh">丝裂原</synonym>
<synonym>mitogens</synonym>
</entry>
<entry description="drug that induces tranquility in an individual" name="tranquilizer" term="tranquilizer" wikidataURL="http://www.wikidata.org/entity/Q1941660" wikidataID="Q1941660" wikipediaPage="https://en wikipedia.org/wiki/Tranquilizer">
<description xml:lang="es">tipo de fármaco</description>
<description xml:lang="de">Klasse von Arzneimittel</description>
<synonym xml:lang="hi">प्रशान्तक</synonym>
<synonym xml:lang="de">Tranquiliser</synonym>
<synonym xml:lang="fr">tranquillisant</synonym>
<synonym xml:lang="es">tranquilizante</synonym>
<synonym xml:lang="zh">镇静剂</synonym>
<synonym>Ataractics</synonym>
<synonym>tranquilizing drug</synonym>
<synonym>Tranquilizing Drugs</synonym>
<synonym>Tranquillizing Agents</synonym>
<synonym>Tranquillizing Drugs</synonym>
</entry>
<entry description="drug or endogenous compound that lowers neurotransmission levels" name="depressant" term="depressant" wikidataURL="http://www.wikidata.org/entity/Q1976211" wikidataID="Q1976211" wikipediaPage="https://en wikipedia.org/wiki/Depressant">
<description xml:lang="es">sustancia química que ralentiza la actividad del sistema nervioso central</description>
<description xml:lang="fr">substance qui ralentit l'activité du système nerveux central</description>
<synonym xml:lang="hi">अवसादक</synonym>
<synonym xml:lang="de">Beruhigungsmittel</synonym>
<synonym xml:lang="fr">dépresseur</synonym>
<synonym xml:lang="es">depresor</synonym>
<synonym xml:lang="zh">鎮靜劑</synonym>
<synonym>central depressant</synonym>
<synonym>central nervous system depressant</synonym>
<synonym>Central Nervous System Depressants</synonym>
<synonym>CNS depressant</synonym>
<synonym>Depressants</synonym>
<synonym>nerve depressant</synonym>
</entry>
<entry description="relative preservation of neuronal structure and function" name="neuroprotection" term="neuroprotection" wikidataURL="http://www.wikidata.org/entity/Q1981368" wikidataID="Q1981368" wikipediaPage="https://en wikipedia.org/wiki/Neuroprotection">
<description xml:lang="es">efecto de cualquier sustancia o molécula química o biológica, con efectos protectores en el sistema nervioso</description>
<description xml:lang="de">Schutz von Nervenzellen vor dem Absterben</description>
<synonym xml:lang="de">Neuroprotektion</synonym>
<synonym xml:lang="fr">neuroprotection</synonym>
<synonym xml:lang="es">neuroprotección</synonym>
<synonym xml:lang="zh">神經保護</synonym>
</entry>
<entry description="An agent that renders the skin susceptible to damage (as sunburn or blisters) upon exposure to light and especially ultraviolet light." name="Phototoxicity" term="Phototoxicity" wikidataURL="http://www.wikidata.org/entity/Q2088972" wikidataID="Q2088972" wikipediaPage="https://en wikipedia.org/wiki/Phototoxicity">
<description xml:lang="de">Krankheit</description>
<synonym xml:lang="de">Phototoxie</synonym>
<synonym xml:lang="fr">dermatite phototoxique</synonym>
<synonym xml:lang="es">Fototoxicidad</synonym>
<synonym xml:lang="zh">光毒性</synonym>
<synonym>phototoxic</synonym>
</entry>
<entry description="molecule that inhibits the oxidation of other molecules" name="antioxidant" term="antioxidant" wikidataURL="http://www.wikidata.org/entity/Q133948" wikidataID="Q133948" wikipediaPage="https://en wikipedia.org/wiki/Antioxidant">
<description xml:lang="es">molécula capaz de retardar o prevenir la oxidación de otras moléculas</description>
<description xml:lang="de">Chemische Verbindung, die eine Oxidation anderer Stoffe verlangsamt oder gänzlich verhindert</description>
<synonym xml:lang="hi">प्रतिऑक्सीकारक</synonym>
<synonym xml:lang="de">Antioxidans</synonym>
<synonym xml:lang="fr">antioxydant</synonym>
<synonym xml:lang="es">antioxidante</synonym>
<synonym xml:lang="ta">உயிர் வளியேற்ற எதிர்ப்பொருள்</synonym>
<synonym xml:lang="zh">抗氧化剂</synonym>
<synonym>Antioxidants</synonym>