-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbto.json
4617 lines (4617 loc) · 495 KB
/
bto.json
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
{
"created": "2023-12-07T09:12:48.895234",
"messages": [],
"results": {
"http://purl.obolibrary.org/obo/bto.json": {
"graph_id": "http://purl.obolibrary.org/obo/bto.json",
"prov_pack": {
"invalid_luids": {
"http://purl.obolibrary.org/obo/BTO_0000046": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000111": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000179": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000295": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000304": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000429": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000461": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000587": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000607": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000633": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000675": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000678": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000788": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000791": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000798": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000812": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000813": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000815": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000834": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000871": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000881": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0000994": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001030": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001092": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001093": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001118": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001198": [
"ISSN:0302-766X_(printed_version)_ISSN_1432-0878_(electronic_version)"
],
"http://purl.obolibrary.org/obo/BTO_0001205": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001210": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001248": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001464": [
"Flybase:http://flybase.bio.indiana.edu/allied-data/lk/interactive-fly/lewheld/preface.htm"
],
"http://purl.obolibrary.org/obo/BTO_0001466": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001482": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001483": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001517": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001553": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001609": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001620": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001861": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001864": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001865": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001870": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001875": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001879": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001881": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001884": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001889": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001915": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001920": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001944": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001945": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001947": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001948": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001951": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0001962": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002028": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002032": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002035": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002036": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002065": [
"Fishbase:http://www.fishbase.org/Glossary/Glossary.cfm?TermEnglish=venom+apparatus"
],
"http://purl.obolibrary.org/obo/BTO_0002104": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002126": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002127": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002131": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002132": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002133": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002134": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002175": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002208": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002405": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002418": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002419": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002575": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002827": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002832": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002884": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002885": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002887": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002898": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002918": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002938": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0002940": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003022": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003035": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003039": [
"WormBase:http://www.wormbase.org/"
],
"http://purl.obolibrary.org/obo/BTO_0003086": [
"NASC:The_European_Arabidopsis_Stock_Centre"
],
"http://purl.obolibrary.org/obo/BTO_0003093": [
"MGI:http://www.mousedb.net/searches/GO.cgi?id=GO:0060935"
],
"http://purl.obolibrary.org/obo/BTO_0003109": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003297": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003301": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003460": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003541": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003579": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003719": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0003724": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0004308": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0004783": [
"PMID:_17179233"
],
"http://purl.obolibrary.org/obo/BTO_0004841": [
"Patent:CA_Patent_2469027"
],
"http://purl.obolibrary.org/obo/BTO_0004859": [
"HyperCLDB:http://www.biotech.ist.unige.it/"
],
"http://purl.obolibrary.org/obo/BTO_0004952": [
"Patent:CA_Patent_2469027"
],
"http://purl.obolibrary.org/obo/BTO_0005030": [
"HyperCLDB:http://bioinformatics.istge.it/"
],
"http://purl.obolibrary.org/obo/BTO_0005035": [
"MedlinePlus:A_service_of_the_U.S._National_Library_of_Medicine_From_the_National_Institutes_of_Health"
],
"http://purl.obolibrary.org/obo/BTO_0005332": [
"PMID:_8635507"
],
"http://purl.obolibrary.org/obo/BTO_0005353": [
"PMID:_21552385"
],
"http://purl.obolibrary.org/obo/BTO_0005386": [
"PMID:_6178358"
],
"http://purl.obolibrary.org/obo/BTO_0005492": [
"HyperCLDB:http://bioinformatics.istge.it/"
],
"http://purl.obolibrary.org/obo/BTO_0005634": [
"PMID::8305734"
],
"http://purl.obolibrary.org/obo/BTO_0006077": [
"Lonza:www.lonza.com/"
],
"http://purl.obolibrary.org/obo/BTO_0006342": [
"Wormbase:https://wormbase.org//species/all/anatomy_term/"
],
"http://purl.obolibrary.org/obo/BTO_0006394": [
"PMID: 29991048"
],
"http://purl.obolibrary.org/obo/BTO_0006406": [
"ECACC:European_Collection_of_Cell_Cultures"
],
"http://purl.obolibrary.org/obo/BTO_0006473": [
"PMID: 9522462"
]
},
"label": "Provenance Xrefs",
"malformed_curies": {},
"noncanonical_prefixes": {
"Fishbase": {
"http://purl.obolibrary.org/obo/BTO_0002065": "Fishbase:http://www.fishbase.org/Glossary/Glossary.cfm?TermEnglish=venom+apparatus"
},
"HyperCLDB": {
"http://purl.obolibrary.org/obo/BTO_0000046": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000111": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000179": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000295": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000304": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000429": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000461": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000587": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000607": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000633": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000675": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000678": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000788": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000791": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000798": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000812": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000813": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000815": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000834": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000871": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000881": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0000994": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001030": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001092": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001093": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001118": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001205": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001210": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001248": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001466": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001482": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001483": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001517": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001553": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001609": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001620": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001861": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001864": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001865": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001870": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001875": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001879": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001881": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001884": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001889": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001915": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001920": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001944": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001945": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001947": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001948": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001951": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0001962": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002028": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002032": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002035": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002036": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002104": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002126": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002127": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002131": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002132": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002133": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002134": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002175": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002208": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002405": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002418": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002419": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002575": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002827": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002832": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002884": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002885": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002887": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002898": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002918": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002938": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0002940": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003022": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003035": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003109": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003297": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003301": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003460": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003541": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003579": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003719": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0003724": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0004308": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0004859": "HyperCLDB:http://www.biotech.ist.unige.it/",
"http://purl.obolibrary.org/obo/BTO_0005030": "HyperCLDB:http://bioinformatics.istge.it/",
"http://purl.obolibrary.org/obo/BTO_0005492": "HyperCLDB:http://bioinformatics.istge.it/"
},
"Patent": {
"http://purl.obolibrary.org/obo/BTO_0004841": "Patent:CA_Patent_2469027",
"http://purl.obolibrary.org/obo/BTO_0004952": "Patent:CA_Patent_2469027"
},
"Sigma-Aldrich": {
"http://purl.obolibrary.org/obo/BTO_0002399": "Sigma-Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0003553": "Sigma-Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0005416": "Sigma-Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0005860": "Sigma-Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0005915": "Sigma-Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0006210": "Sigma-Aldrich:http://www.sigmaaldrich.com/"
},
"Sigma_Aldrich": {
"http://purl.obolibrary.org/obo/BTO_0005821": "Sigma_Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0005903": "Sigma_Aldrich:http://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0006457": "Sigma_Aldrich:http\\://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0006466": "Sigma_Aldrich:http\\://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0006508": "Sigma_Aldrich:http\\://www.sigmaaldrich.com/",
"http://purl.obolibrary.org/obo/BTO_0006540": "Sigma_Aldrich:http\\://www.sigmaaldrich.com/"
}
},
"unknown_prefixes": {
"ACP_American_College_of_Physicians_Internal_Medicine": {
"http://purl.obolibrary.org/obo/BTO_0001513": "ACP_American_College_of_Physicians_Internal_Medicine:http://www.acponline.org/journals/annals/01mar94/hepa.htm"
},
"ATCC_American_Cell_Type_Culture_Collection": {
"http://purl.obolibrary.org/obo/BTO_0000011": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000016": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000019": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000069": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000154": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000165": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000181": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000218": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000225": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000296": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000318": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000354": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000358": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000396": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000454": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000458": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000529": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000581": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000588": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000591": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000736": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000760": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000806": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000814": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000820": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000836": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000837": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000946": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000948": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000950": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000951": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000976": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0000984": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001007": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001014": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001077": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001089": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001109": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001118": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001193": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001197": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001199": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001229": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001341": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001342": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001406": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001444": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001523": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001524": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001525": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001529": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001535": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001536": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001569": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001570": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001582": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001583": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001584": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001589": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001590": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001591": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001595": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001596": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001599": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001890": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001891": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001892": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001904": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001909": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001910": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001928": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001935": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001949": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001970": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001976": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0001998": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002003": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002004": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002005": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002014": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002034": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002176": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002180": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002201": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002209": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002235": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002260": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002268": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002279": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002282": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002283": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002335": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002537": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002548": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002552": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002572": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002576": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002577": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002582": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002584": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002586": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002587": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002588": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002594": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002598": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002602": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002607": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002638": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002640": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002641": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002644": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002645": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002646": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002647": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002649": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002685": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002696": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002750": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002806": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002809": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002810": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002826": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002835": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002874": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002883": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002894": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002897": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002907": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002909": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002910": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002911": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002914": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002923": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002960": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002975": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0002995": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003016": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003038": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003053": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003066": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003075": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003108": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003171": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003206": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003238": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003239": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003240": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003241": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003242": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003243": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003244": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003261": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003262": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003266": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003277": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003292": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003293": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003294": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003295": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003299": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003300": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003314": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003316": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003320": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003323": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003355": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003356": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003432": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003442": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003443": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003444": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003470": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003471": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003492": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003536": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003558": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003585": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003680": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003704": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003708": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003709": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003725": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003726": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003743": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003762": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003766": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003767": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003768": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003777": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003781": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003807": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003808": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003853": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003862": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003863": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003864": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003885": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003886": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003903": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003904": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003912": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003913": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003922": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003923": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003924": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003933": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0003941": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004059": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004061": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004062": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004121": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004123": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004124": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004125": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004161": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004162": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004180": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004216": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004217": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004218": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004230": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004231": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004316": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004390": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004391": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004426": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004427": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004428": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004433": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004445": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004446": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004447": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004491": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004495": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004500": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004545": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004572": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004573": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004606": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004607": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004611": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004737": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004738": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004754": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004755": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004777": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004784": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004790": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004795": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004813": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004823": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004824": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004825": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004852": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004915": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004920": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004921": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004986": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0004987": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005011": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005022": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005050": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005065": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005102": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005112": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005113": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005114": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005133": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005156": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005178": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005182": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005183": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005184": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005193": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005224": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005243": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005290": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005292": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005293": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005294": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005295": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005301": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005366": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005367": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005370": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005372": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005416": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005425": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005452": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005461": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005472": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005473": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005474": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005490": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005495": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005624": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005625": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005667": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005668": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005779": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005786": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005788": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005815": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005820": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005826": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005836": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005837": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005840": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005855": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005861": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005870": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005930": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005931": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005956": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005963": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005966": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005967": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005974": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005975": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005976": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005977": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005978": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005979": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0005994": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006000": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006016": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006018": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006019": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006021": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006022": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006023": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006024": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006037": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006039": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006041": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006042": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006063": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006088": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006089": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006090": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006092": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006095": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006097": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006142": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006144": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006145": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006201": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006203": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006204": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006220": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006253": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006254": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006304": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006307": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006321": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006327": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006328": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006355": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006362": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006364": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006376": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006377": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006378": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006386": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006390": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006392": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006395": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006398": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006407": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006413": "ATCC_American_Cell_Type_Culture_Collection:http://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006438": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006441": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006444": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006446": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006463": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006500": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006507": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006524": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006525": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006526": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006549": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/",
"http://purl.obolibrary.org/obo/BTO_0006566": "ATCC_American_Cell_Type_Culture_Collection:http\\://www.lgcstandards-atcc.org/"
},
"A_Dictionary_of_Plant_Sciences": {
"http://purl.obolibrary.org/obo/BTO_0004502": "A_Dictionary_of_Plant_Sciences:http://www.encyclopedia.com/"
},
"A_Digital_Atlas_of_Neurochemical_Anatomy_in_the_Hippocampus": {
"http://purl.obolibrary.org/obo/BTO_0000601": "A_Digital_Atlas_of_Neurochemical_Anatomy_in_the_Hippocampus:http://www.isbe.man.ac.uk/research/Hippocampus/dp.html"
},
"A_Guide_to_Brain_Anatomy": {
"http://purl.obolibrary.org/obo/BTO_0000484": "A_Guide_to_Brain_Anatomy:http://www.waiting.com/brainanatomy.html",
"http://purl.obolibrary.org/obo/BTO_0001355": "A_Guide_to_Brain_Anatomy:http://www.waiting.com/brainanatomy.html"
},
"A_View_of_the_Octopus_Brain": {
"http://purl.obolibrary.org/obo/BTO_0006005": "A_View_of_the_Octopus_Brain:http://cephalove.blogspot.de/2010/06/view-of-octopus-brain.html"
},
"A_maternal_link_to_Alzheimer's_disease": {
"http://purl.obolibrary.org/obo/BTO_0004250": "A_maternal_link_to_Alzheimer's_disease:http://www.bio-medicine.org/medicine-news-1/A-maternal-link-to-Alzheimers-disease-5633-1/"
},
"Abcam_Products": {
"http://purl.obolibrary.org/obo/BTO_0001412": "Abcam_Products:http://www.abcam.com/u937-human-leukemic-monocyte-lymphoma-cell-line-cytoplasmic-lysate-ab14904.html"
},
"Access_Med_Health_Information_Library": {
"http://purl.obolibrary.org/obo/BTO_0000579": "Access_Med_Health_Information_Library:http://www.hendrickhealth.org/healthy/002065.htm"
},
"Aetna_InteliHealth": {
"http://purl.obolibrary.org/obo/BTO_0000580": "Aetna_InteliHealth:http://www.intelihealth.com/IH/ihtIH/WSIHW000/8096/8514.html"
},
"Alberta_Heritage_Foundation_of_Medical_Research": {
"http://purl.obolibrary.org/obo/BTO_0001177": "Alberta_Heritage_Foundation_of_Medical_Research:http://www.ahfmr.ab.ca/hta/hta-publications/reports/intraocular99/intraocular.shtml",
"http://purl.obolibrary.org/obo/BTO_0004910": "Alberta_Heritage_Foundation_of_Medical_Research:http://www.ahfmr.ab.ca/hta/hta-publications/reports/intraocular99/intraocular.shtml"
},
"An_Introduction_to_Plant_Biology,_Botany,_Third_Edition": {
"http://purl.obolibrary.org/obo/BTO_0000112": "An_Introduction_to_Plant_Biology,_Botany,_Third_Edition:http://biology.jbpub.com/Botany/interactive_glossary_showterm.cfm?term=sieve"
},
"Anatomy_of_Olfactory_System": {
"http://purl.obolibrary.org/obo/BTO_0001317": "Anatomy_of_Olfactory_System:http://www.emedicine.com/",
"http://purl.obolibrary.org/obo/BTO_0001319": "Anatomy_of_Olfactory_System:http://www.emedicine.com/",
"http://purl.obolibrary.org/obo/BTO_0001327": "Anatomy_of_Olfactory_System:http://www.emedicine.com/",
"http://purl.obolibrary.org/obo/BTO_0003796": "Anatomy_of_Olfactory_System:http://www.emedicine.com/"
},
"Anatomy_of_the_Brain": {
"http://purl.obolibrary.org/obo/BTO_0000143": "Anatomy_of_the_Brain:http://biology.about.com/library/organs/brain/blsubstantianigra.htm"
},
"Answers.com": {
"http://purl.obolibrary.org/obo/BTO_0004692": "Answers.com:http://www.answers.com/",
"http://purl.obolibrary.org/obo/BTO_0004721": "Answers.com:http://www.answers.com/",
"http://purl.obolibrary.org/obo/BTO_0004791": "Answers.com:http://www.answers.com/",
"http://purl.obolibrary.org/obo/BTO_0004904": "Answers.com:http://www.answers.com/"
},
"Applied_Biosystems": {
"http://purl.obolibrary.org/obo/BTO_0003741": "Applied_Biosystems:http://www.ambion.com/"
},
"Aquaculture_Curriculum_Guide": {
"http://purl.obolibrary.org/obo/BTO_0000307": "Aquaculture_Curriculum_Guide:http://aquanic.org/publicat/govagen/ncae/bcccult.pdf"
},
"Aristoteles_University_of_Thessaloniki_Dictionary_of_Medical_Terms": {
"http://purl.obolibrary.org/obo/BTO_0001023": "Aristoteles_University_of_Thessaloniki_Dictionary_of_Medical_Terms:http://www.med.auth.gr/db/dictionary1/gr/",
"http://purl.obolibrary.org/obo/BTO_0001167": "Aristoteles_University_of_Thessaloniki_Dictionary_of_Medical_Terms:http://www.med.auth.gr/db/dictionary1/gr/",
"http://purl.obolibrary.org/obo/BTO_0001846": "Aristoteles_University_of_Thessaloniki_Dictionary_of_Medical_Terms:http://www.med.auth.gr/db/dictionary1/gr/"
},
"Armed_Forces_Institute_of_Pathology_Washington_D.C.": {
"http://purl.obolibrary.org/obo/BTO_0001848": "Armed_Forces_Institute_of_Pathology_Washington_D.C.:Deseases_of_fish"
},
"Arthur_McIntosh,_Carlo_Ignoffo": {
"http://purl.obolibrary.org/obo/BTO_0006423": "Arthur_McIntosh,_Carlo_Ignoffo:Characterization_of_five_cell_lines_established_from_species_of_heliothis",
"http://purl.obolibrary.org/obo/BTO_0006424": "Arthur_McIntosh,_Carlo_Ignoffo:Characterization_of_five_cell_lines_established_from_species_of_heliothis",
"http://purl.obolibrary.org/obo/BTO_0006425": "Arthur_McIntosh,_Carlo_Ignoffo:Characterization_of_five_cell_lines_established_from_species_of_heliothis",
"http://purl.obolibrary.org/obo/BTO_0006426": "Arthur_McIntosh,_Carlo_Ignoffo:Characterization_of_five_cell_lines_established_from_species_of_heliothis",
"http://purl.obolibrary.org/obo/BTO_0006427": "Arthur_McIntosh,_Carlo_Ignoffo:Characterization_of_five_cell_lines_established_from_species_of_heliothis"
},
"Asterand_Bioscience": {
"http://purl.obolibrary.org/obo/BTO_0004928": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005387": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005389": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005390": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005475": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005476": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005477": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005478": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005479": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005932": "Asterand_Bioscience:http://solutions.asterand.com/",
"http://purl.obolibrary.org/obo/BTO_0005933": "Asterand_Bioscience:http://solutions.asterand.com/"
},
"Atlas_of_Gastroenterological_Endoscopy": {
"http://purl.obolibrary.org/obo/BTO_0000193": "Atlas_of_Gastroenterological_Endoscopy:http://www.endoskopischer-atlas.de/lexe.htm"
},
"Atlas_of_Genetics_and_Cytogenetics_in_Oncology_and_Haematology": {
"http://purl.obolibrary.org/obo/BTO_0003505": "Atlas_of_Genetics_and_Cytogenetics_in_Oncology_and_Haematology:http://atlasgeneticsoncology.org/"
},
"Australian_Government": {
"http://purl.obolibrary.org/obo/BTO_0005789": "Australian_Government:The_Biology_and_Ecology_of_Sugarcane_in_Australia"
},
"BIOCHEMICA_1999": {
"http://purl.obolibrary.org/obo/BTO_0003935": "BIOCHEMICA_1999:The_Efficient_and_Reproducible_Transfection_of_Insect_Cell_Lines_by_FuGENE_6_Transfection_Reagent"
},
"BSSH_The_British_Society_for_Surgery_of_the_Hand": {
"http://purl.obolibrary.org/obo/BTO_0005806": "BSSH_The_British_Society_for_Surgery_of_the_Hand:http://www.bssh.ac.uk/patients/commonhandconditions/flexortendoninjury"
},
"Bee_Venom_Products": {
"http://purl.obolibrary.org/obo/BTO_0002066": "Bee_Venom_Products:http://www.beevenom.com/beevenomproducts2.htm"
},
"Biochimica_Clinica": {
"http://purl.obolibrary.org/obo/BTO_0001128": "Biochimica_Clinica:Prostasomes_are_Pluripotent_and_Well_Organized_Organelles_in_Human_Semen"
},
"Biocompare": {
"http://purl.obolibrary.org/obo/BTO_0005267": "Biocompare:http://www.biocompare.com/",
"http://purl.obolibrary.org/obo/BTO_0005480": "Biocompare:http://www.biocompare.com/",
"http://purl.obolibrary.org/obo/BTO_0006075": "Biocompare:http://www.biocompare.com/"
},
"Biology-Online_Dictionary": {
"http://purl.obolibrary.org/obo/BTO_0000316": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0000679": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0001247": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0001484": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0002345": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0002432": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0002513": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0002731": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0002819": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0003143": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0003256": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0003360": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0003926": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0003938": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004046": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004055": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004201": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004209": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004510": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004511": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004512": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004672": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004675": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004679": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004698": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004849": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0004911": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0005065": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0005170": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/",
"http://purl.obolibrary.org/obo/BTO_0005528": "Biology-Online_Dictionary:http://www.biology-online.org/dictionary/"
},
"Biology_Dictionary,_Hyperdictionary": {
"http://purl.obolibrary.org/obo/BTO_0001176": "Biology_Dictionary,_Hyperdictionary:http://www.hyperdictionary.com/dictionary/endothelial+cell"
},
"Biology_Dictionary_Hyperdictionary": {
"http://purl.obolibrary.org/obo/BTO_0001899": "Biology_Dictionary_Hyperdictionary:http://www.hyperdictionary.com/dictionary/Stationary+phase",
"http://purl.obolibrary.org/obo/BTO_0001900": "Biology_Dictionary_Hyperdictionary:http://www.hyperdictionary.com/dictionary/Growth+phase",