-
Notifications
You must be signed in to change notification settings - Fork 0
/
crawler_drugbank_targets.js
4645 lines (4630 loc) · 344 KB
/
crawler_drugbank_targets.js
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
//load JQuery
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js";
var urls = ["http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/191",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4915",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/865",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/634",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5255",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3965",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4792",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3286",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2586",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5896",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4914",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2731",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3324",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/192",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5109",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/864",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5254",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/635",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/636",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4320",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3287",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4791",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3966",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2732",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4913",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1129",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4710",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3323",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5897",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2585",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1406",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5108",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2508",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5253",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4912",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3963",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1128",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2439",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3284",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/868",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5894",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3179",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4790",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/637",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3322",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2584",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4711",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5107",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5252",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/866",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2509",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/867",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3285",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2438",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3964",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2730",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4911",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3321",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5895",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/638",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2583",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/190",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4712",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1994",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2506",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4919",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/7",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/195",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5106",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5259",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5401",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3328",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5490",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4713",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/639",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4323",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3282",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2039",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4796",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3961",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2505",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2437",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4918",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2507",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5258",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/6",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5105",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/196",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5400",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3327",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4324",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5491",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4714",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2589",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5893",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4795",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2436",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3962",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2038",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3283",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/869",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5257",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5104",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1992",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4917",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3280",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/193",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4177",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4715",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3326",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5492",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2503",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4794",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2588",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2435",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4321",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5103",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5256",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2649",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3281",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4916",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/194",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4717",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5493",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3325",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4716",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3960",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3550",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1630",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4793",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2504",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2587",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2434",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4322",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2648",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4432",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2433",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4898",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3067",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3173",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2867",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4687",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3219",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4604",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1885",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5102",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/199",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4899",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2432",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4433",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3174",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4686",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3066",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2866",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3218",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4605",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5740",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5101",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/244",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4809",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4685",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3069",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4430",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2431",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1056",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4606",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3217",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3440",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/197",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4607",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/243",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5100",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4808",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3171",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4684",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3068",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3172",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/9",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4431",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3216",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1787",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2430",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3441",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3329",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2868",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2869",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/242",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4608",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/198",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1882",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4807",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4600",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1050",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3215",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4894",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3177",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3063",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/526",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1782",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4683",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5048",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4806",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/249",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/974",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/525",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1881",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/471",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4601",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4895",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3214",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/527",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3178",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3062",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4682",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4804",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1277",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4805",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5049",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/248",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3213",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4602",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1052",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1278",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3175",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4803",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3288",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/528",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4681",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1124",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4896",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1912",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3065",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/247",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/976",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5046",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1053",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4603",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1783",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1279",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4802",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3064",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4680",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3212",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4897",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1123",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3176",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3289",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/529",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/246",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5559",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5047",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2935",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/462",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4246",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5330",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1629",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3070",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5557",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/522",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5748",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5057",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/86",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4812",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3447",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2315",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/318",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2870",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3210",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2202",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2394",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2281",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2934",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3498",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2650",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4891",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2280",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3071",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5056",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4247",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5558",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/463",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/521",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5747",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2316",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/87",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3499",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3446",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4813",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2203",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3211",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/319",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3559",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2871",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3772",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4890",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2651",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2933",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2393",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5555",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4021",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5332",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/460",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/524",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5055",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5746",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/315",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3072",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2313",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4810",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3449",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/88",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2932",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2283",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1569",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1275",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4439",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4893",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2872",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2396",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4020",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5331",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4245",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3380",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/461",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5054",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/316",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5745",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5556",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/523",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4811",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3448",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2314",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3073",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/317",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4438",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/89",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1274",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2282",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2931",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2395",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2873",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4892",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5744",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/313",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5053",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3806",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/466",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3182",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4023",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/252",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5553",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4437",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2874",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1563",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2398",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1777",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3494",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2930",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3381",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3443",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/467",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3805",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/314",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5743",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3181",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/253",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5554",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4022",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3382",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2397",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2875",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4436",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3495",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3442",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1058",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/83",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5052",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3180",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/520",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/311",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/464",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3804",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/250",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5742",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4025",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5551",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1341",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3496",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4688",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2876",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3773",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3383",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4435",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5051",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/84",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3803",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2317",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3668",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3445",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/312",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2319",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/465",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4249",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1875",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5552",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5741",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/251",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4024",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2877",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3497",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4689",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1566",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4434",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3384",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2399",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5050",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3802",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3444",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/85",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2318",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3669",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3779",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2514",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2658",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2289",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3385",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3552",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4799",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4328",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5483",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3490",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4707",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2729",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5338",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4027",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5404",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3291",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2513",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2659",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3491",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4705",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4327",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2288",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4183",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3551",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3386",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4026",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5550",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4706",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5482",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1986",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2728",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5337",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5405",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3809",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/310",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3290",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1561",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2512",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2656",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3777",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3554",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3387",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4797",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4326",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3492",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4709",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5485",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5402",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3808",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4029",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/468",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2727",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/80",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2657",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2725",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/81",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2511",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3778",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4798",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3388",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3553",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4325",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3493",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5484",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4708",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4028",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5339",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1984",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5403",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/469",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2726",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3807",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1410",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2285",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4180",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2581",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2654",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3556",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3389",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2206",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2311",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2724",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4921",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2510",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3959",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/860",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5408",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/631",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5262",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5487",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5334",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2390",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2939",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2582",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2284",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3555",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4922",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2655",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2207",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3957",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3320",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2312",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2723",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5409",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/861",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3958",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5263",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/630",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5333",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2938",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5486",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2392",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2287",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2722",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1349",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3956",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3558",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5260",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2652",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5336",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5406",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/862",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/633",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2937",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5489",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4240",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2033",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4329",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2391",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2580",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2286",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2310",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4920",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3955",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2721",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2653",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3557",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5261",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/863",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5749",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/632",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5407",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2936",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5488",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5335",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/624",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/102",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5265",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/6010",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3334",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2596",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3272",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5195",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1792",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4924",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3975",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3167",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/625",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/101",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5264",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5196",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5119",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2595",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4700",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/879",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3273",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4330",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4923",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/626",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3333",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3976",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3168",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/104",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/877",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5197",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4927",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/622",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5267",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1498",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3169",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3336",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3977",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4780",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2598",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4331",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/878",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3274",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5198",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4926",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/876",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5266",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/103",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/623",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/180",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3335",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4332",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2597",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3978",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3275",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4925",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2720",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/181",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4165",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5116",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5269",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4929",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5199",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2447",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4782",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/629",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4333",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5480",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4703",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3338",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3971",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/182",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5115",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5268",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4928",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3972",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2446",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4781",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2599",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4334",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3337",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5481",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4704",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5118",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/183",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3270",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1982",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/100",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5329",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/627",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4784",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3973",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2449",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4701",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3059",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4335",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/184",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5117",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1419",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1495",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/628",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4783",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3974",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3271",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2448",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3058",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3339",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4702",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4336",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3229",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3057",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4673",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2443",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4442",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/255",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5112",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5038",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/598",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/399",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/185",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1799",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2442",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5838",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3228",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4672",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3056",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4443",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4819",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3160",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/597",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5111",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5039",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5750",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/186",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2879",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/518",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4444",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2445",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2389",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3161",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3055",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4675",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5114",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/187",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5751",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2878",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3970",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4445",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2950",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2444",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3054",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5190",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/519",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4674",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3162",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5113",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/599",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/256",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5752",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1709",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4815",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/989",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3163",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5191",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3053",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1136",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/516",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3276",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3225",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1064",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/594",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5034",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5548",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/189",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4816",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/259",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/106",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3164",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5192",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4814",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3277",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/517",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3052",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3224",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/593",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/480",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5547",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/105",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5035",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/258",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3051",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4671",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1926",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3278",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3165",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4440",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3820",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/109",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5193",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/79",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2441",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3227",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/483",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5110",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4818",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/596",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5036",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/513",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/515",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4441",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3166",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4670",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/108",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3821",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5194",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/78",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1063",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3279",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3226",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2440",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/482",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5549",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/595",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5037",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/107",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4817",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3050",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/514",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5758",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5605",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3060",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5043",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/512",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/327",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3391",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5543",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5320",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/472",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2660",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2271",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3894",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2944",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2884",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2384",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3220",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/328",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3811",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2301",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4822",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3437",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/903",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/76",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/984",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5604",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5757",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/511",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3061",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5042",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1867",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4233",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5544",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/473",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1286",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2661",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1350",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2943",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2383",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2270",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3392",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2885",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3549",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3221",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2302",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/77",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3810",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1928",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3436",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4823",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3895",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/902",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5045",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5545",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5607",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/510",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5479",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/474",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2947",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/260",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4234",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2382",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2662",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5690",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3896",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4824",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/74",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3435",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5608",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2303",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3548",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2882",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/905",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3813",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3222",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5546",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/982",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5044",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/475",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5606",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2946",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5691",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5478",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4235",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/261",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3390",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2883",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3760",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2381",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2945",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1284",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3897",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4825",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3434",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2304",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/75",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2663",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3223",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/904",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3547",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3812",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/262",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5692",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4013",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/476",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/323",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2719",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5754",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4236",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3816",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/72",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2388",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1200",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3433",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2305",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1353",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2888",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4676",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3395",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4447",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3890",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2940",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/263",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5753",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4012",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5693",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5540",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/477",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2718",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3815",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/324",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4237",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3814",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/73",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1354",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5609",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2306",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4677",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3396",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3891",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2889",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3432",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4446",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2387",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5694",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4011",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5541",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/264",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/325",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4238",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/478",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3818",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5756",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1864",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3170",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2308",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2307",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/901",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1202",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5041",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/70",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4820",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3763",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2886",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2386",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1281",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1789",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3393",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3892",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2942",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4678",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4449",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5542",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4010",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5695",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3817",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/326",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/479",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/265",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5755",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/900",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4821",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/5040",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2941",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2385",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4448",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/1130",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3394",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3893",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2887",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3430",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4679",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3542",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3399",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/4338",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2500",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/3765",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2668",
"http://wifo5-04.informatik.uni-mannheim.de/drugbank/resource/targets/2714",